mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-03 04:34:31 +02:00
Merge branch 'bugfix/fix_context_switch_ra' into 'master'
freerots: fix rtos_int_exit writing outside ISR stack See merge request espressif/esp-idf!12161
This commit is contained in:
@@ -90,9 +90,9 @@ isr_skip_decrement:
|
||||
|
||||
/* preserve return address and schedule next task */
|
||||
addi sp,sp,-4
|
||||
sw ra, 0x04(sp)
|
||||
sw ra, 0(sp)
|
||||
call vTaskSwitchContext
|
||||
lw ra, 0x04(sp)
|
||||
lw ra, 0(sp)
|
||||
addi sp, sp, 4
|
||||
|
||||
/* Clears the switch pending flag */
|
||||
|
Reference in New Issue
Block a user