- use fancy short pulse heartbeat led flashing

- bootloader now checks BSEL

git-svn-id: http://moon:8086/svn/projects/HendiControl@153 fda53097-d464-4ada-af97-ba876c37ca34
This commit is contained in:
2019-03-29 22:04:02 +00:00
parent a7a46940b5
commit 7be8b7f51d
2 changed files with 135 additions and 116 deletions
+8 -1
View File
@@ -206,8 +206,15 @@ int main(void)
{
case TIMER_GENERAL:
{
timer_start(timer_id, TIMER_SW_DELAY_MS(500));
hb_state = !hb_state;
if (hb_state)
{
timer_start(timer_id, TIMER_SW_DELAY_MS(50));
}
else
{
timer_start(timer_id, TIMER_SW_DELAY_MS(950));
}
portSet(Led_HB, hb_state);
}
break;