forked from espressif/esp-idf
WDT: implement interrupt wdt and task wdt for ESP32-C2
ESP32-C2 has a single group timer, thus it will use it for the interrupt watchdog, which is more critical than the task watchdog. The latter is implement in software thanks to the `esp_timer`component.
This commit is contained in:
@@ -22,8 +22,6 @@
|
||||
#include "test_utils.h"
|
||||
|
||||
|
||||
#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2)
|
||||
//IDF-4035
|
||||
static const char* TAG = "test_event";
|
||||
|
||||
#define TEST_CONFIG_ITEMS_TO_REGISTER 5
|
||||
@@ -2021,4 +2019,3 @@ TEST_CASE("can post events from interrupt handler", "[event]")
|
||||
}
|
||||
|
||||
#endif // CONFIG_ESP_EVENT_POST_FROM_ISR
|
||||
#endif //!TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2)
|
||||
|
||||
Reference in New Issue
Block a user