Skip to content

Commit

Permalink
main: Delay aborting when asicmodel is not correct
Browse files Browse the repository at this point in the history
  • Loading branch information
johnny9 committed Sep 21, 2023
1 parent 753d0c2 commit 6e65bce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ void app_main(void)

GLOBAL_STATE.ASIC_functions = ASIC_functions;
} else {
ESP_LOGE(TAG, "Unable to determine ASIC model. Please make sure the model has been written into NVS.");
ESP_LOGE(TAG, "Unable to determine ASIC model. Please make sure the model has been written into NVS at main/asicmodel.");
vTaskDelay(10000 / portTICK_PERIOD_MS);
exit(EXIT_FAILURE);
}

Expand Down

0 comments on commit 6e65bce

Please sign in to comment.