esp32c6: add esp_system support

This commit is contained in:
wuzhenghui
2022-07-12 20:42:28 +08:00
committed by morris
parent c5d8e94898
commit ab09c07fdd
22 changed files with 1306 additions and 25 deletions

View File

@@ -61,7 +61,11 @@
bool g_panic_abort = false;
static char *s_panic_abort_details = NULL;
#if CONFIG_IDF_TARGET_ESP32C6 // TODO: IDF-5653
static wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &LP_WDT};
#else
static wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL};
#endif
#if !CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT