redirect app trace into sd card
Posted: Fri Jan 05, 2018 4:27 pm
Hi ESP-IDF,
Is there some implementation on this topic?
Many linux boxes are using their SD Card as their trace file bucket. How should I do the trick on ESP32?
I did invest time on brewing my own solution. Till now I figured out, there are offically only two possible way for the logging stuff:
(esp_app_trace.h)
And the description on how this works in app_trace.c is huge. I'm hanging on it.
Any suggestion for me?
Cheers
Gfast2
Is there some implementation on this topic?
Many linux boxes are using their SD Card as their trace file bucket. How should I do the trick on ESP32?
I did invest time on brewing my own solution. Till now I figured out, there are offically only two possible way for the logging stuff:
(esp_app_trace.h)
Code: Select all
typedef enum {
ESP_APPTRACE_DEST_TRAX = 0x1, ///< JTAG destination
ESP_APPTRACE_DEST_UART0 = 0x2, ///< UART destination
} esp_apptrace_dest_t;
Any suggestion for me?
Cheers
Gfast2