1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

ask user not to post stack dumps, but to decode them (#9037)

* ask user not to post stack dumps, but to decode them
This commit is contained in:
david gauchard 2023-11-24 09:32:29 +01:00 committed by GitHub
parent 0301465a3c
commit 32c858df6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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('-');
}