From 212a829942067e5c7619235f131b1b492c288411 Mon Sep 17 00:00:00 2001 From: Kyle Fleming Date: Sat, 31 Mar 2018 15:32:34 -0700 Subject: [PATCH] Move cont_init from ram to flash (#4384) --- cores/esp8266/cont_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/esp8266/cont_util.c b/cores/esp8266/cont_util.c index 8c36d8926..15be292eb 100644 --- a/cores/esp8266/cont_util.c +++ b/cores/esp8266/cont_util.c @@ -25,7 +25,7 @@ #define CONT_STACKGUARD 0xfeefeffe -void ICACHE_RAM_ATTR cont_init(cont_t* cont) { +void cont_init(cont_t* cont) { cont->stack_guard1 = CONT_STACKGUARD; cont->stack_guard2 = CONT_STACKGUARD; cont->stack_end = cont->stack + (sizeof(cont->stack) / 4);