Skip to content

Commit

Permalink
Missed the returns on core1
Browse files Browse the repository at this point in the history
  • Loading branch information
lbernstone committed Jan 23, 2025
1 parent 997dedc commit 15ed5a3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cores/esp32/esp32-hal-misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,9 @@ bool disableCore1WDT() {
TaskHandle_t idle_1 = xTaskGetIdleTaskHandleForCore(1);
if (idle_1 == NULL || esp_task_wdt_status(idle_1) || esp_task_wdt_delete(idle_1) != ESP_OK) {
log_e("Failed to remove Core 1 IDLE task from WDT");
return false;
}
return true;
}
#endif

Expand Down

0 comments on commit 15ed5a3

Please sign in to comment.