From 35d9ac9042ce91f39fbf8c4af541752ce4f9d071 Mon Sep 17 00:00:00 2001 From: Stephan Hadinger Date: Tue, 12 Jan 2021 19:48:28 +0100 Subject: [PATCH] Removed crash logger from BearSSL It is generally not useful since ESP8266 crashed before we reach this point --- tasmota/StackThunk_light.cpp | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/tasmota/StackThunk_light.cpp b/tasmota/StackThunk_light.cpp index aea7ae438..8f8b9a23a 100644 --- a/tasmota/StackThunk_light.cpp +++ b/tasmota/StackThunk_light.cpp @@ -121,26 +121,26 @@ uint32_t stack_thunk_light_get_max_usage() } /* Print the stack from the first used 16-byte chunk to the top, decodable by the exception decoder */ -void stack_thunk_light_dump_stack() -{ - uint32_t *pos = stack_thunk_light_top; - while (pos < stack_thunk_light_ptr) { - if ((pos[0] != _stackPaint) || (pos[1] != _stackPaint) || (pos[2] != _stackPaint) || (pos[3] != _stackPaint)) - break; - pos += 4; - } - ets_printf(">>>stack>>>\n"); - while (pos < stack_thunk_light_ptr) { - ets_printf("%08x: %08x %08x %08x %08x\n", (int32_t)pos, pos[0], pos[1], pos[2], pos[3]); - pos += 4; - } - ets_printf("<<>>stack>>>\n"); +// while (pos < stack_thunk_light_ptr) { +// ets_printf("%08x: %08x %08x %08x %08x\n", (int32_t)pos, pos[0], pos[1], pos[2], pos[3]); +// pos += 4; +// } +// ets_printf("<<