8000 tell user not to post stack dumps, but to decode them by d-a-v · Pull Request #9037 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion cores/esp8266/core_esp8266_postmortem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ static void ets_printf_P(const char *str, ...) {
}

static void cut_here() {
ets_putc('\n');
// https://tinyurl.com/8266dcdr => https://arduino-esp8266.readthedocs.io/en/latest/faq/a02-my-esp-crashes.html#exception
ets_printf_P(PSTR("\nTo make this dump useful, DECODE IT - https://tinyurl.com/8266dcdr\n"));

for (auto i = 0; i < 15; i++ ) {
ets_putc('-');
}
Expand Down
0