From 72696a67fa559c4d68ab1bad4946964aa4c34167 Mon Sep 17 00:00:00 2001 From: Kyle Fleming Date: Sun, 18 Feb 2018 21:24:36 -0800 Subject: [PATCH] Move cont_init from ram to flash --- 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 8c36d8926e..15be292eb7 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);