Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 706c507

Browse files
committedApr 20, 2019
ISR code must be in ICACHE_RAM - the check was commited in ab12516
1 parent ab12516 commit 706c507

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎cores/esp8266/FunctionalInterrupt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ typedef void (*voidFuncPtrArg)(void*);
1111
extern "C" void ICACHE_RAM_ATTR __attachInterruptArg(uint8_t pin, voidFuncPtr userFunc, void*fp , int mode);
1212

1313

14-
void interruptFunctional(void* arg)
14+
void ICACHE_RAM_ATTR interruptFunctional(void* arg)
1515
{
1616
ArgStructure* localArg = (ArgStructure*)arg;
1717
if (localArg->functionInfo->reqScheduledFunction)

0 commit comments

Comments
 (0)
Please sign in to comment.