mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix(espcoredump): fix gcc 13.1.0 warnings
This commit is contained in:
parent
6a94453a18
commit
8bbcc224dd
@ -290,9 +290,10 @@ void esp_core_dump_reset_fake_stacks(void)
|
||||
/* Get the top of the ISR stack.
|
||||
* Check core dump port interface for more information about this function.
|
||||
*/
|
||||
uint8_t* esp_core_dump_get_isr_stack_top(void) {
|
||||
extern uint8_t port_IntStack;
|
||||
return &port_IntStack;
|
||||
uint8_t* esp_core_dump_get_isr_stack_top(void)
|
||||
{
|
||||
extern uint8_t port_IntStack[];
|
||||
return port_IntStack;
|
||||
}
|
||||
|
||||
uint32_t esp_core_dump_get_isr_stack_end(void)
|
||||
|
Loading…
Reference in New Issue
Block a user