Where is esp_panic_handler turns into _panic_handler?
Posted: Sat Aug 24, 2024 9:34 am
Hi!
My interrupts table contains some default _panic_handler. I run into this _panic_handler for unknown reason which I want to investingate.
But this handler contains first (or just one?) instruction unimp:
0x40380102 _panic_handler+0 unimp
Also I see in my binary what esp_panic_handler(panic_info_t *) is also provided. But no matter what options I use in my `sdkconfig` panic handler mentioned in interrupt vector contains only unimp
So my question is, what is responsible for esp_panic_handler should be used as panic handler instead of unimp? Grep over all `esp-idf` sources gave me absolutely no results.
My interrupts table contains some default _panic_handler. I run into this _panic_handler for unknown reason which I want to investingate.
But this handler contains first (or just one?) instruction unimp:
0x40380102 _panic_handler+0 unimp
Also I see in my binary what esp_panic_handler(panic_info_t *) is also provided. But no matter what options I use in my `sdkconfig` panic handler mentioned in interrupt vector contains only unimp
So my question is, what is responsible for esp_panic_handler should be used as panic handler instead of unimp? Grep over all `esp-idf` sources gave me absolutely no results.