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
I've had everything working using the basic examples you showed, but I get an error when using the serial and web examples.
When I complie using a DUO everything is fine, when I use the NodeMCU it reports an error...
section type conflict with __c
in looking into this it appears the apply() function is the issue and some definitions need to move to global and out of the function. esp8266/Arduino#2078
Is it worth addressing the problem if you are able to identify the cause?
The text was updated successfully, but these errors were encountered:
I saw this problem as well. A workaround is presented in issue #3369 regarding using PROGMEM. For the esp8266_webinterface sketch, make the following changes:
Rename index.html.h to index.html.cpp and make this change at the top of the file:
I've had everything working using the basic examples you showed, but I get an error when using the serial and web examples.
When I complie using a DUO everything is fine, when I use the NodeMCU it reports an error...
section type conflict with __c
in looking into this it appears the apply() function is the issue and some definitions need to move to global and out of the function. esp8266/Arduino#2078
Is it worth addressing the problem if you are able to identify the cause?
The text was updated successfully, but these errors were encountered: