From 706c507f802cab45c41e8679fac8bb9ddf5288a9 Mon Sep 17 00:00:00 2001 From: "Dirk O. Kaar" Date: Sat, 20 Apr 2019 13:16:26 +0200 Subject: [PATCH] ISR code must be in ICACHE_RAM - the check was commited in ab125162bf --- cores/esp8266/FunctionalInterrupt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/esp8266/FunctionalInterrupt.cpp b/cores/esp8266/FunctionalInterrupt.cpp index 2b16fb899f..2633c63182 100644 --- a/cores/esp8266/FunctionalInterrupt.cpp +++ b/cores/esp8266/FunctionalInterrupt.cpp @@ -11,7 +11,7 @@ typedef void (*voidFuncPtrArg)(void*); extern "C" void ICACHE_RAM_ATTR __attachInterruptArg(uint8_t pin, voidFuncPtr userFunc, void*fp , int mode); -void interruptFunctional(void* arg) +void ICACHE_RAM_ATTR interruptFunctional(void* arg) { ArgStructure* localArg = (ArgStructure*)arg; if (localArg->functionInfo->reqScheduledFunction)