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:
parent
ab125162bf
commit
0dd6549c36
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user