mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
Fix WiFi interface for static IP
This commit is contained in:
@ -68,26 +68,17 @@ public:
|
|||||||
/* Change Ip configuration settings disabling the dhcp client
|
/* Change Ip configuration settings disabling the dhcp client
|
||||||
*
|
*
|
||||||
* param local_ip: Static ip configuration
|
* param local_ip: Static ip configuration
|
||||||
* param dns_server: Static DNS server configuration
|
* param gateway : Static gateway configuration
|
||||||
*/
|
*/
|
||||||
void config(IPAddress local_ip, IPAddress dns_server);
|
void config(IPAddress local_ip, IPAddress gateway);
|
||||||
|
|
||||||
/* Change Ip configuration settings disabling the dhcp client
|
/* Change Ip configuration settings disabling the dhcp client
|
||||||
*
|
*
|
||||||
* param local_ip: Static ip configuration
|
* param local_ip: Static ip configuration
|
||||||
* param dns_server: Static DNS server configuration
|
|
||||||
* param gateway: Static gateway configuration
|
* param gateway: Static gateway configuration
|
||||||
|
* param subnet: Static Subnet mask
|
||||||
*/
|
*/
|
||||||
void config(IPAddress local_ip, IPAddress dns_server, IPAddress gateway);
|
void config(IPAddress local_ip, IPAddress gateway, IPAddress subnet);
|
||||||
|
|
||||||
/* Change Ip configuration settings disabling the dhcp client
|
|
||||||
*
|
|
||||||
* param local_ip: Static ip configuration
|
|
||||||
* param dns_server: Static DNS server configuration
|
|
||||||
* param gateway: Static gateway configuration
|
|
||||||
* param subnet: Static subnet mask configuration
|
|
||||||
*/
|
|
||||||
void config(IPAddress local_ip, IPAddress dns_server, IPAddress gateway, IPAddress subnet);
|
|
||||||
|
|
||||||
/* Change DNS Ip configuration
|
/* Change DNS Ip configuration
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user