mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-07-29 10:17:15 +02:00
Add WDT API for Core 0 and disable it while SPIFFS is formatting
This commit is contained in:
@ -78,8 +78,11 @@ void enableLoopWDT();
|
||||
void disableLoopWDT();
|
||||
#endif
|
||||
|
||||
#ifndef CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1
|
||||
//enable/disable WDT for the IDLE task on Core 1
|
||||
//enable/disable WDT for the IDLE task on Core 0 (SYSTEM)
|
||||
void enableCore0WDT();
|
||||
void disableCore0WDT();
|
||||
#ifndef CONFIG_FREERTOS_UNICORE
|
||||
//enable/disable WDT for the IDLE task on Core 1 (Arduino)
|
||||
void enableCore1WDT();
|
||||
void disableCore1WDT();
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user