1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

ISR code must be in ICACHE_RAM - the check was commited in ab125162bf (#6002)

This commit is contained in:
Dirk O. Kaar 2019-04-20 15:35:56 +02:00 committed by david gauchard
parent ab125162bf
commit 0dd6549c36

View File

@ -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)