Thanks for the link.
I think that when abort(), assert(), panic()... UDP messages happen, they are no longer received. And I especially need messages when an error occurs, not the usual log messages
Search found 25 matches
- Tue Nov 25, 2025 6:34 pm
- Forum: ESP-IDF
- Topic: Redirect LOG messages over WiFi (UDP)
- Replies: 4
- Views: 1776
- Fri Nov 21, 2025 5:41 pm
- Forum: ESP-IDF
- Topic: Redirect LOG messages over WiFi (UDP)
- Replies: 4
- Views: 1776
Redirect LOG messages over WiFi (UDP)
Hello everyone
Can LOG messages, which are printed when the assert(), abort, panic()... functions are called, messages printed on JTAG, be redirected and sent somewhere else, e.g. via UDP?
Tnx
Can LOG messages, which are printed when the assert(), abort, panic()... functions are called, messages printed on JTAG, be redirected and sent somewhere else, e.g. via UDP?
Tnx
- Fri Sep 19, 2025 8:01 am
- Forum: ESP-IDF
- Topic: Reconfigure USB/JTAG module
- Replies: 1
- Views: 499
Reconfigure USB/JTAG module
Hi all.
Due to the lack of IO pins, I am forced to use the USB_N (IO_18) pin in the code. In the code, I configure that pin to be a GPIO output pin. USB/JTAG is no longer available, and the device is not seen as a COM port.
Question:
How can I reconfigure the GPIO pin during operation, so that ...
Due to the lack of IO pins, I am forced to use the USB_N (IO_18) pin in the code. In the code, I configure that pin to be a GPIO output pin. USB/JTAG is no longer available, and the device is not seen as a COM port.
Question:
How can I reconfigure the GPIO pin during operation, so that ...
- Sun Jan 19, 2025 9:36 pm
- Forum: ESP-IDF
- Topic: Flash encryption to ESP32-C3 and JTAG flashing
- Replies: 1
- Views: 1215
Re: Flash encryption to ESP32-C3 and JTAG flashing
Does anyone have a proven mechanism for programming the ESP, which eFuse bits to burn, so that we have the possibility of later programming the ESP via the built-in JTAG interface?
- Tue Jan 14, 2025 6:24 am
- Forum: ESP-IDF
- Topic: Flash encryption to ESP32-C3 and JTAG flashing
- Replies: 1
- Views: 1215
Flash encryption to ESP32-C3 and JTAG flashing
Hello,
I am interested in Flash encryption, and possibly subsequent JTAG programming.
How Flash encryption and JTAG programming are related?
I have a device made with ESP32_C3 MCU, I have no UART pins available, I use JTAG for programming/debug and for printing log messages. I need to somehow ...
I am interested in Flash encryption, and possibly subsequent JTAG programming.
How Flash encryption and JTAG programming are related?
I have a device made with ESP32_C3 MCU, I have no UART pins available, I use JTAG for programming/debug and for printing log messages. I need to somehow ...
- Sat Nov 09, 2024 8:42 pm
- Forum: ESP-IDF
- Topic: Create custom *.bin file name
- Replies: 2
- Views: 1387
Create custom *.bin file name
Hello everyone.
How to use Cmake commands (or some other way) to create your own custom named *.bin file.
I defined the variables inside CmakeList.tx:
set(application_name "Device_Test")
set(application_version "1.0")
set(MY_PROJECT_VER "${application_version}")
set(MY_PROJECT_NAME ...
How to use Cmake commands (or some other way) to create your own custom named *.bin file.
I defined the variables inside CmakeList.tx:
set(application_name "Device_Test")
set(application_version "1.0")
set(MY_PROJECT_VER "${application_version}")
set(MY_PROJECT_NAME ...
- Sat Oct 12, 2024 8:35 pm
- Forum: ESP-IDF
- Topic: Wrap around ESP function
- Replies: 4
- Views: 3268
Re: Wrap around ESP function
When an abort occurs, what function prints
"0x4200e011: HelpBtn_EventCb at E:/Program/Screen/TestScreen.c:294"
I need to override that function, because I want to save that data in NVS in the call point of the abort() function.
This is the result of printing log messages when abort() occurs ...
"0x4200e011: HelpBtn_EventCb at E:/Program/Screen/TestScreen.c:294"
I need to override that function, because I want to save that data in NVS in the call point of the abort() function.
This is the result of printing log messages when abort() occurs ...
- Thu Oct 10, 2024 7:17 pm
- Forum: ESP-IDF
- Topic: Wrap around ESP function
- Replies: 4
- Views: 3268
Re: Wrap around ESP function
It's exactly what I need. Linking is a problem.
Error: C:/Espressif/frameworks/esp-idf-v5.0/components/esp_system/port/panic_handler.c:189: undefined reference to `__wrap_esp_panic_handler'
Please can someone check with esp-idf v5.0.7? Tnx
Error: C:/Espressif/frameworks/esp-idf-v5.0/components/esp_system/port/panic_handler.c:189: undefined reference to `__wrap_esp_panic_handler'
Please can someone check with esp-idf v5.0.7? Tnx
- Thu Oct 10, 2024 7:28 am
- Forum: ESP-IDF
- Topic: Wrap around ESP function
- Replies: 4
- Views: 3268
Wrap around ESP function
Hello everyone.
I want to build a wrapper around some ESP function. Inside the function wrapper, I will execute my own code and call the original function. For example i want to wrap esp_panic_handler function.
Inside the main CMakeLists.txt I have the following commands:
cmake_minimum_required ...
I want to build a wrapper around some ESP function. Inside the function wrapper, I will execute my own code and call the original function. For example i want to wrap esp_panic_handler function.
Inside the main CMakeLists.txt I have the following commands:
cmake_minimum_required ...
- Wed Oct 09, 2024 10:31 am
- Forum: ESP-IDF
- Topic: Function assert, panic, abort, IWDT... question
- Replies: 1
- Views: 1735
Function assert, panic, abort, IWDT... question
Hello everyone.
I am working on a commercial project with ESP32C3.
I would like to avoid unpleasant situations, if the "application" freezes, I would like to properly configure the ESP internal functions assert, panic, abort, reset, IWDT...
Which of the above functions can cause freezing, i.e ...
I am working on a commercial project with ESP32C3.
I would like to avoid unpleasant situations, if the "application" freezes, I would like to properly configure the ESP internal functions assert, panic, abort, reset, IWDT...
Which of the above functions can cause freezing, i.e ...