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