Fix rebase artifacts
This commit is contained in:
parent
363e595c60
commit
3b07fcebb6
3 changed files with 3 additions and 4 deletions
|
@ -16,9 +16,9 @@ LIBS += net80211 pp wpa smartconfig coexist wps wpa2
|
|||
endif
|
||||
|
||||
ifeq ("$(CONFIG_SPIRAM_CACHE_WORKAROUND)","y")
|
||||
LINKER_SCRIPTS += esp32.common.ld esp32.rom.ld esp32.peripherals.ld
|
||||
else
|
||||
LINKER_SCRIPTS += esp32.common.ld esp32.rom.psram_workaround.ld esp32.peripherals.ld
|
||||
else
|
||||
LINKER_SCRIPTS += esp32.common.ld esp32.rom.ld esp32.peripherals.ld
|
||||
endif
|
||||
|
||||
ifeq ("$(CONFIG_NEWLIB_NANO_FORMAT)","y")
|
||||
|
|
|
@ -327,9 +327,7 @@ PROVIDE ( memccpy = 0x4000c220 );
|
|||
PROVIDE ( memchr = 0x4000c244 );
|
||||
PROVIDE ( memcmp = 0x4000c260 );
|
||||
PROVIDE ( memcpy = 0x4000c2c8 );
|
||||
/*
|
||||
PROVIDE ( memmove = 0x4000c3c0 );
|
||||
*/
|
||||
PROVIDE ( memrchr = 0x4000c400 );
|
||||
PROVIDE ( memset = 0x4000c44c );
|
||||
PROVIDE ( mktime = 0x4005a5e8 );
|
||||
|
|
|
@ -242,6 +242,7 @@ void panicHandler(XtExcFrame *frame)
|
|||
void xt_unhandled_exception(XtExcFrame *frame)
|
||||
{
|
||||
//Disable all interrupts, so a backtrace isn't interrupted by needless stuff
|
||||
int x=0;
|
||||
asm volatile("wsr %0,INTENABLE\nesync\n"::"r"(x));
|
||||
|
||||
haltOtherCore();
|
||||
|
|
Loading…
Reference in a new issue