8000 Increase free IRAM by earlephilhower · Pull Request #5499 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Increase free IRAM #5499

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Dec 15, 2018
Prev Previous commit
Next Next commit
Make C++ uncaught exceptions explicit
Use the term "Unhandled C++ exception" instead of just "Unhandled
exception" to make it clear such crashes are caused by a C++ throw
and now a system exception.
  • Loading branch information
earlephilhower committed Dec 14, 2018
commit f4db0fd6a3cff60f7de7452898566b227303d6d2
2 changes: 1 addition & 1 deletion cores/esp8266/core_esp8266_postmortem.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void __wrap_system_restart_local() {
ets_putc('\n');
}
else if (s_unhandled_exception) {
ets_printf_P(PSTR("\nUnhandled exception: %S\n"), s_unhandled_exception);
ets_printf_P(PSTR("\nUnhandled C++ exception: %S\n"), s_unhandled_exception);
}
else if (s_abort_called) {
ets_printf_P(PSTR("\nAbort called\n"));
Expand Down
0