Issue with New Watchdog reset in core 0 with Core esp_intr_noniram_disable

narendok
Posts: 2
Joined: Thu Apr 23, 2020 5:33 am

Issue with New Watchdog reset in core 0 with Core esp_intr_noniram_disable

Postby narendok » Thu May 18, 2023 4:37 am

Hi, guys.
can someone please help me to identify the issue of esp32 wroom-D4 with FreeRTOS & QueueList I'm using,

I got the below error :

Backtrace: 0x40083a41:0x3ffbea7c |<-CORRUPTED:
esp_intr_noniram_disable at /Users/ficeto/Desktop/ESP32/ESP32S2/esp-idf-public/components/hal/esp32/include/hal/cpu_ll.h line 35

& here our FreeRTOS task declaration :

Code: Select all

 
 
 xTaskCreatePinnedToCore(
    task1,   /* Task function. */
    "Task1",     /* name of task. */
    50000,       /* Stack size of task */
    NULL,        /* parameter of the task */
    3,           /* priority of the task */
    &Task1,      /* Task handle to keep track of created task */
    1);          /* pin task to core 1 */
  delay(500);
  xTaskCreatePinnedToCore(
    task2,   /* Task function. */
    "Task2",     /* name of task. */
    50000,       /* Stack size of task */
    NULL,        /* parameter of the task */
    3,           /* priority of the task */
    &Task2,      /* Task handle to keep track of created task */
    0);          /* pin task to core 0 */
  delay(500);
  xTaskCreatePinnedToCore(
    HarshMovementDetect,   /* Task function. */
    "Task3",     /* name of task. */
    5000,       /* Stack size of task */
    NULL,        /* parameter of the task */
    1,           /* priority of the task */
    &Task3,      /* Task handle to keep track of created task */
    1);          /* pin task to core 1 */
    
   

Who is online

Users browsing this forum: No registered users and 35 guests