Search found 2 matches
- Wed Nov 01, 2023 12:22 pm
- Forum: ESP-IDF 中文讨论版
- Topic: esp32 0x8 (TG1WDT_SYS_RESET)问题
- Replies: 1
- Views: 1005
Re: esp32 0x8 (TG1WDT_SYS_RESET)问题
好像知道了,是test task造成的,他一直在while,没有vtaskdelay来释放,一直进不到idle去喂狗,所以被重启了,解决方法是吧这个任务放到core 1,然后把core 1的看门狗关掉,就正常了。
- Mon Oct 30, 2023 1:17 pm
- Forum: ESP-IDF 中文讨论版
- Topic: esp32 0x8 (TG1WDT_SYS_RESET)问题
- Replies: 1
- Views: 1005
esp32 0x8 (TG1WDT_SYS_RESET)问题
硬件:ESP32-WROOM-32 idf:4.5. 使用freertos历程配置 会重启,报错 0x8 (TG1WDT_SYS_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT) 代码如下 /* FreeRTOS Example */ #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "freertos/semphr.h" #include "freertos/event_groups.h" #include "freertos/queue.h" #include "esp_task...