Skip to content

Commit

Permalink
ISR code must be in ICACHE_RAM - the check was commited in ab12516 (e…
Browse files Browse the repository at this point in the history
  • Loading branch information
dok-net authored and d-a-v committed Apr 20, 2019
1 parent ab12516 commit 0dd6549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cores/esp8266/FunctionalInterrupt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0dd6549

Please sign in to comment.