mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-13 13:01:55 +03:00
remove lwip-v1.4 specific code (#7436)
* remove lwip-v1.4 specific code * ditto * ditto * fix ip4_addr definition * CI: change debug builds to use IPv6, remove regular IPv6 builds * ditto * split pio CI in four (because they last twice the time of the other builds) * remove option from pio * remove lwIP-1.4 from doc * restore pio CI splitting * fix CI debug6 script * ditto
This commit is contained in:
@ -1,18 +1,4 @@
|
||||
|
||||
#include <lwip/init.h>
|
||||
|
||||
#if LWIP_VERSION_MAJOR == 1
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
Serial.println("wifi_softap_add_dhcps_lease() is not implemented with lwIP-v1");
|
||||
}
|
||||
|
||||
void loop() {
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
/* Create a WiFi access point and provide static lease */
|
||||
|
||||
#include <ESP8266WiFi.h>
|
||||
@ -104,5 +90,3 @@ void setup() {
|
||||
void loop() {
|
||||
server.handleClient();
|
||||
}
|
||||
|
||||
#endif // lwIP-v2
|
||||
|
Reference in New Issue
Block a user