File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
libraries/lwIpWrapper/src Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 6
6
// TODO hostname should be defined at network stack level and shared among ifaces
7
7
// TODO buffer management (allocation/deallocation/trim/etc.) should be properly handled by a wrapper class and be transparent wrt the user
8
8
// TODO the device could be moving and as a consequence it may be nice to rescan APs to get one with the best rssi
9
- // TODO implement setLowPowerMode and resetLowPowerMode in WIFI driver
10
9
// TODO implement stop softAP and include it in the destructor of the class
11
10
// TODO split netif definition in different files
12
11
// TODO implement WIFINetworkDriver that is then being used by both Wifi station and softAP. This will allow to use both at the same time
@@ -412,9 +411,9 @@ void CNetIf::dhcpNotUsed() {
412
411
}
413
412
414
413
bool CNetIf::isDhcpAcquired () {
415
- if (dhcp_acquired) {
416
- Serial.println (ip_2_ip4 (ni.ip_addr ).addr , HEX);
417
- }
414
+ // if(dhcp_acquired) {
415
+ // Serial.println(ip_2_ip4(ni.ip_addr).addr, HEX);
416
+ // }
418
417
return dhcp_acquired;
419
418
}
420
419
You can’t perform that action at this time.
0 commit comments