Skip to content

Commit

Permalink
fix self test removal
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Wilson committed Nov 2, 2024
1 parent 8c06f1d commit 80ead68
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ void app_main(void)
}

//should we run the self test?
// if (should_test(&GLOBAL_STATE)) {
// self_test((void *) &GLOBAL_STATE);
// vTaskDelay(60 * 60 * 1000 / portTICK_PERIOD_MS);
// }
if (should_test(&GLOBAL_STATE)) {
self_test((void *) &GLOBAL_STATE);
vTaskDelay(60 * 60 * 1000 / portTICK_PERIOD_MS);
}

SYSTEM_init_system(&GLOBAL_STATE);

Expand Down

0 comments on commit 80ead68

Please sign in to comment.