8000 ask user not to post stack dumps, but to decode them (#9037) · mcauser/esp8266-Arduino@32c858d · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 32c858d

Browse files
authored
ask user not to post stack dumps, but to decode them (esp8266#9037)
* ask user not to post stack dumps, but to decode them
1 parent 0301465 commit 32c858d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cores/esp8266/core_esp8266_postmortem.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ static void ets_printf_P(const char *str, ...) {
9999
}
100100

101101
static void cut_here() {
102-
ets_putc('\n');
102+
// https://tinyurl.com/8266dcdr => https://arduino-esp8266.readthedocs.io/en/latest/faq/a02-my-esp-crashes.html#exception
103+
ets_printf_P(PSTR("\nTo make this dump useful, DECODE IT - https://tinyurl.com/8266dcdr\n"));
104+
103105
for (auto i = 0; i < 15; i++ ) {
104106
ets_putc('-');
105107
}

0 commit comments

Comments
 (0)
0