From e76a98d335bdd06da7a5869d0f41f0b2665ca1e8 Mon Sep 17 00:00:00 2001 From: M Hightower <27247790+mhightower83@users.noreply.github.com> Date: Fri, 11 Dec 2020 09:24:03 -0800 Subject: [PATCH] Removed obsolete debug code (#7757) --- cores/esp8266/core_esp8266_main.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/cores/esp8266/core_esp8266_main.cpp b/cores/esp8266/core_esp8266_main.cpp index 5f3a5d96b..417c3f26e 100644 --- a/cores/esp8266/core_esp8266_main.cpp +++ b/cores/esp8266/core_esp8266_main.cpp @@ -317,14 +317,6 @@ extern "C" void app_entry_redefinable(void) cont_t s_cont __attribute__((aligned(16))); g_pcont = &s_cont; -#ifdef DEV_DEBUG_MMU_IRAM - DBG_MMU_PRINT_STATUS(); - - DBG_MMU_PRINT_IRAM_BANK_REG(0, ""); - - DBG_MMU_PRINTF("\nCall call_user_start()\n"); -#endif - /* Call the entry point of the SDK code. */ call_user_start(); }