esp_backtrace_print_from_frame() is only used within ESP-IDF.
 
Symbols
loading...
Files
loading...
SummarySyntaxArgumentsReferencesCall TreeData Use

Return value

- ESP_OK Backtrace successfully printed to completion or to depth limit - ESP_FAIL Backtrace is corrupted

Notes

On the ESP32, users must call esp_backtrace_get_start() first to flush the stack. If a esp_backtrace_frame_t* frame is obtained though a call to esp_backtrace_get_start() from some example function func_a(), then frame is only valid within the frame/scope of func_a(). Users should not attempt to pass/use frame other frames within the same stack of different stacks.

References