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
The use of PROGMEM for some global variables in parser.h caused GCC to report a section type conflict when building for ESP8266 as a result of the ESP8266 core's simulation of PROGMEM (which is in fact AVR specific). See esp8266/Arduino#2078. Fixed by disabling these uses of PROGMEM when building for ESP8266. As ESP8266 has more RAM than AVR chips (80K vs. 2K for the ATMega328p) the resulting increase in RAM use is not a major concern.
0 commit comments