esp8266-framework icon indicating copy to clipboard operation
esp8266-framework copied to clipboard

Compile error

Open a-schyja opened this issue 1 year ago • 4 comments

I get the following compiler error:

pio\libdeps\d1_mini\esp8266-framework\src\EwingsEspStack.cpp:121:7: error: 'dhcpSoftAP' was not declared in this scope

My config:

[env:d1_mini]
platform = espressif8266
board = d1_mini
lib_deps = suraj151/esp8266-framework@^1.1.5

Using the simple EWS stack example:


#include <EwingsEspStack.h>

void setup() {
 EwStack.initialize();
}

void loop() {
 EwStack.serve();
}

a-schyja avatar Jan 11 '24 13:01 a-schyja

Which version of esp8266 arduino library you are using ? I think this library supports 3.0.2 version

Suraj151 avatar Jan 11 '24 15:01 Suraj151

I am using the latest, 3.1.2

a-schyja avatar Jan 11 '24 19:01 a-schyja

Hi @a-schyja

Library is not updated with 3.1.2 changes. So i would recommend to try with 3.0.2 esp8266 library version

Whenever i will get time i will update source with new version to align the latest arduino esp8266 version

Till then this library can support upto 3.0.2 only

Suraj151 avatar Jan 12 '24 04:01 Suraj151

Good to hear, thank you for the quick response.

a-schyja avatar Jan 12 '24 07:01 a-schyja