ESP-Marius

Results 24 comments of ESP-Marius

@gojimmypi Interesting issue, and a very detailed write up! Could it be simply that your flag is overwritten by https://github.com/espressif/esp-idf/blob/release/v4.2/tools/cmake/toolchain-esp32.cmake? On the second run the cache entry is already set,...

> My current phenomenon is that I am able to enter the interrupt to execute the corresponding program, but still experience restart behavior. Yes this is correct, the callback registered...

> Now that my goal is to perform a loop action in a watchdog interrupt I understand, but I would like to know why you want to do this, and...

1. I see. In this case you will have to be careful with what is happening in `send_message`, it should not have any blocking behavior, etc. 2. Yes, the second...

2. This is possible, but it depends on the implemention of `send_message`, it should not do anything you cannot do in interrupts. E.g. it should not rely on freertos tasks,...

> but if there is a watchdog timeout entry interrupt, can my receive task continue to run If you use `CONFIG_ESP_TASK_WDT_PANIC` then no, the chip will immediately restart. If you...

> Why do I feel like there is always only one piece of logic executed in void esp_task_wdt_isr_user_handler(void), and is there a task in the watchdog design mechanism that interrupts...

I think we can consider the initial question/issue resolved/responded to. Feel free to reopen if there is anything that we still need to resolve on the IDF side of things

Yes, the callback is called from a task with `ESP_TASK_TIMER_PRIO`, so there could be tasks with a higher priority (e.g. BT) > 会停止运行一段时间 How long is 一段时间? Is the callback...

Closing this issue due to lack of activity. Feel free to re-open if there is any new information