mirror of
https://github.com/espressif/esp-idf.git
synced 2025-09-30 19:19:21 +00:00
[esp_rom]: fixed S3 longjmp patch
* On S3, the placement of ROM functions is ECO-dependent. Hence, we don't jump into the middle of the longjmp function in ROM on S3 anymore. Instead, the whole longjump function is used in the patch. * Also properly excluded the patch from bootloader build with Makefiles Closes IDF-3391
This commit is contained in:
4
tools/test_apps/system/longjmp_test/main/component.mk
Normal file
4
tools/test_apps/system/longjmp_test/main/component.mk
Normal file
@@ -0,0 +1,4 @@
|
||||
#
|
||||
# "main" pseudo-component makefile.
|
||||
#
|
||||
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
|
@@ -110,7 +110,7 @@ void app_main(void)
|
||||
}
|
||||
|
||||
vTaskDelay(10000);
|
||||
printf("stopping timers...\n");
|
||||
printf("stopping timer...\n");
|
||||
esp_timer_stop(crash_timer);
|
||||
esp_timer_delete(crash_timer);
|
||||
|
||||
|
Reference in New Issue
Block a user