You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ISR in ESP8266 based controllers have to be located in RAM area to avoid crashes during execution.
Therefore, I propose to conditionally add the flag ICACHE_RAM_ATTR in the source code.
My addition in RFControl.cpp
287c287
< void ICACHE_RAM_ATTR handleInterrupt() {
void handleInterrupt() {
fixed the issue.
The text was updated successfully, but these errors were encountered:
ISR in ESP8266 based controllers have to be located in RAM area to avoid crashes during execution.
Therefore, I propose to conditionally add the flag ICACHE_RAM_ATTR in the source code.
My addition in RFControl.cpp
287c287
< void ICACHE_RAM_ATTR handleInterrupt() {
The text was updated successfully, but these errors were encountered: