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

tell user not to post stack dumps, but to decode them #9037

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 2 commits into from
Nov 24, 2023
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