1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

WiFi: ARP gratuitous API for wifi station mode (#6889)

* wifi: ARP gratuitous API for wifi station mode

* fix with lwip1

* update comment

* update API to allow changing interval on the fly

* update API

* remove debug lines

* mock lwIP's etharp_request()

* unsigned interval

* use scheduled ticker

* ticker: +attach_ms_scheduled_accurate
ticker: +comment
gratuitous: use attach_ms_scheduled_accurate

* move to experimental namespace

* fix for lwIP-v1.4

* attempt to make pio happy

* use directly ETSTimer instead of Ticker
This commit is contained in:
david gauchard
2020-04-09 16:19:15 +02:00
committed by GitHub
parent d600cc7fa6
commit bc170e6d63
7 changed files with 181 additions and 3 deletions

View File

@ -89,7 +89,7 @@ static bool sta_config_equal(const station_config& lhs, const station_config& rh
return false;
}
}
if(lhs.threshold.rssi != rhs.threshold.rssi) {
return false;
}