Skip to content

Commit

Permalink
Reduce heartbeat beeper false positives (#2104)
Browse files Browse the repository at this point in the history
  • Loading branch information
adeebshihadeh authored Dec 12, 2024
1 parent c60941c commit 9272d4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion board/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ static void tick_handler(void) {
}

if (controls_allowed || heartbeat_engaged) {
controls_allowed_countdown = 30U;
controls_allowed_countdown = 5U;
} else if (controls_allowed_countdown > 0U) {
controls_allowed_countdown -= 1U;
} else {
Expand Down

0 comments on commit 9272d4b

Please sign in to comment.