Re: ESP8266 interrupt and ISR not in IRAM!

Please close. Solution is to add
void ICACHE_RAM_ATTR handleInterrupt();
instead of
#define ICACHE_RAM_ATTR
to the top. It is working fine with this change. There will be this issue with guidelines written for board library 2.5.0.
Thank you
void ICACHE_RAM_ATTR handleInterrupt();
instead of
#define ICACHE_RAM_ATTR
to the top. It is working fine with this change. There will be this issue with guidelines written for board library 2.5.0.
Thank you