Search found 5 matches
- Mon Jan 22, 2024 3:37 pm
- Forum: ESP-IDF
- Topic: Help in Decoding Wifi W (223029) wifi:[ADDBA]rx delba, code:37, delete tid:0
- Replies: 3
- Views: 3107
Help in Decoding Wifi W (223029) wifi:[ADDBA]rx delba, code:37, delete tid:0
Dear community, I am currently using the ESP-32 as a socket server, sending around 500 bytes every 500ms for each client that connects on the network. Sometimes I receive the following warning repeatdly: W (223029) wifi:[ADDBA]rx delba, code:37, delete tid:0 However, my network continues to work fin...
- Fri Dec 29, 2023 11:48 am
- Forum: ESP-IDF
- Topic: (StoreProhibited) - timer_process_alarm - ESP32-S3 Mini
- Replies: 0
- Views: 6241
(StoreProhibited) - timer_process_alarm - ESP32-S3 Mini
Dear Suppor Team, I currently have an application running on ESP32-S3 mini, it has 7 tasks and 3 gpio pin interrupts. After running for long time (last test it ran for 20 hours), the following error occured: Guru Meditation Error: Core 0 panic'ed (StoreProhibited). Exception was unhandled. Core 0 re...
- Fri Dec 29, 2023 11:30 am
- Forum: ESP-IDF
- Topic: ESP32-S3 IllegalInstruction [Core 0 was running in ISR context] when using xEventGroupClearBitsFromISR
- Replies: 4
- Views: 2842
Re: ESP32-S3 IllegalInstruction [Core 0 was running in ISR context] when using xEventGroupClearBitsFromISR
Thank you very much, this solved my problem!
- Thu Dec 28, 2023 12:12 pm
- Forum: ESP-IDF
- Topic: ESP32-S3 IllegalInstruction [Core 0 was running in ISR context] when using xEventGroupClearBitsFromISR
- Replies: 4
- Views: 2842
Re: ESP32-S3 IllegalInstruction [Core 0 was running in ISR context] when using xEventGroupClearBitsFromISR
Dear Sprite, Thank you for your reply. My interrupt is in fact declared IRAM: void IRAM_ATTR TimePulse_isr_handler(void* input_pin){ if(REG_GET_BIT(GPIO_IN1_REG, 256)){ // GPIO_IN1_REG is a 32 bits register. Bit 0 references to pin 32 --> Bit 8 references to PIN 40 which is the Timepulse pin. 2^8=25...
- Wed Dec 27, 2023 6:44 pm
- Forum: ESP-IDF
- Topic: ESP32-S3 IllegalInstruction [Core 0 was running in ISR context] when using xEventGroupClearBitsFromISR
- Replies: 4
- Views: 2842
ESP32-S3 IllegalInstruction [Core 0 was running in ISR context] when using xEventGroupClearBitsFromISR
Dear support community, Currently, I have a program for ESP32-S3 Mini configured to run on a single Core [all tasks pinned to core 0; Run FreeRTOS only on first core setted in menuconfig]. I have 7 tasks running and 3 GPIO pin interrupts. After running my code for about 1 hour, I receive the followi...