Skip to content

Commit

Permalink
change time value
Browse files Browse the repository at this point in the history
  • Loading branch information
bradjc committed Dec 20, 2024
1 parent bee9697 commit 7dfbb7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/tests/alarms/multi_alarm_test/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static void start_cb(__attribute__ ((unused)) uint32_t now,
if (td->led == 1) {
timer_data* td_new = (timer_data*)malloc(sizeof(timer_data));
td_new->led = 2;
libtock_alarm_in_ms(1000 * (2 + 1), start_cb, td_new, &td_new->timer);
libtock_alarm_in_ms(2929, start_cb, td_new, &td_new->timer);
}
toggle(td->led);
}
Expand Down

0 comments on commit 7dfbb7e

Please sign in to comment.