Add fix for emulation conditional build.

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos
2023-03-30 01:04:11 +02:00
parent 94f9f2fdac
commit 3947b59881

View File

@@ -309,6 +309,7 @@ int main(void) {
execute_tasks(); execute_tasks();
neug_task(); neug_task();
do_flash(); do_flash();
#ifndef ENABLE_EMULATION
if (board_millis() > 1000) { // wait 1 second to boot up if (board_millis() > 1000) { // wait 1 second to boot up
bool current_button_state = board_button_read(); bool current_button_state = board_button_read();
if (current_button_state != button_pressed_state) { if (current_button_state != button_pressed_state) {
@@ -327,6 +328,7 @@ int main(void) {
button_pressed_time = button_press = 0; button_pressed_time = button_press = 0;
} }
} }
#endif
} }
return 0; return 0;