The following compiles but interrupts are not actioned
volatile bool mpuInterrupt = false; // indicates whether MPU interrupt pin has gone high
void dmpDataReady() {
mpuInterrupt = true;
}
void ICACHE_RAM_ATTR dmpDataReady();
The ICACHE_RAM_ATTR is highlighted with a double underline and gives this message
Argument to 'section' attribute is not valid for this target: mach-o section specifier requires a segment and section separated by a commaclang(attribute_section_invalid_for_target)
Note same code runs perfectly on 1.8.1.1. Board is an ESP32 DevKit V4
Any suggestions