Search found 6 matches

by FrancoB
Tue Sep 17, 2024 5:34 pm
Forum: ESP-IDF
Topic: ESP-IDF V4.4.6 - Print crash report via JTAG
Replies: 0
Views: 556

ESP-IDF V4.4.6 - Print crash report via JTAG

Greetings. I'm currently trying the "Application Level Tracing" functionalities, with the goal of printing log info via JTAG interface instead of UART interface. I've tried with printing "ESP_LOG" statements and seems to work fine. However, it would be really helpful if I could print crash reports v...
by FrancoB
Mon Apr 08, 2024 2:13 pm
Forum: ESP-IDF
Topic: ESP-IDF V4.4.6 - Can't use core dump
Replies: 2
Views: 2135

Re: ESP-IDF V4.4.6 - Can't use core dump

Greetings ESP_Roland. That's correct, that is the other post that I made about the same topic, basically to increment the possibilities of getting an answer. But, as I said, it is me who made that post on GitHub.
by FrancoB
Fri Apr 05, 2024 7:35 pm
Forum: ESP-IDF
Topic: ESP-IDF V4.4.6 - Can't use core dump
Replies: 2
Views: 2135

ESP-IDF V4.4.6 - Can't use core dump

Greetings. I'm trying to use the debug functionality of core dump in an ESP32 development board. I enabled the core dump "save in flash" option in the menuconfig, made a simple code that just run a while loop in main without blocking the task, so a reset will trigger, and then tried to read the core...
by FrancoB
Fri Mar 22, 2024 2:11 pm
Forum: ESP-IDF
Topic: Power Management: problems when combining GPIO wakeup with GPIO interrupt in light sleep mode
Replies: 3
Views: 1151

Re: Power Management: problems when combining GPIO wakeup with GPIO interrupt in light sleep mode

Greetings Sprite. Thanks for your answer. 1) if you disable the automatic light sleep functions, does it still crash in this way? Yes, it seems that is not a problem of the PM or sleep functionalities. 2) Also, can you try moving the gpio_config line to after the gpio_isr_handler_add one? So, I trie...
by FrancoB
Thu Mar 21, 2024 3:39 pm
Forum: ESP-IDF
Topic: Power Management: problems when combining GPIO wakeup with GPIO interrupt in light sleep mode
Replies: 3
Views: 1151

Power Management: problems when combining GPIO wakeup with GPIO interrupt in light sleep mode

Greetings. I'm trying to combine the use of a GPIO interrupt with the use of the Power Management mode that ESP-IDF provides. So, what I did was to enable the PM via the menuconfig, configure and enable the light sleep mode with the "esp_pm_configure()" function, configure a GPIO interrupt of "GPIO_...