Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 144 Bytes

esp8266-tips.md

File metadata and controls

12 lines (9 loc) · 144 Bytes

esp8266 tips

ISR not in IRAM!

to solve prepend ICACHE_RAM_ATTR to the isr function:

void ICACHE_RAM_ATTR ISR_my()
{
  //
}