From af54e33d6fe8a44b8602e01d0ad5c93b0ac2753c Mon Sep 17 00:00:00 2001 From: MurphyZhao Date: Mon, 28 May 2018 17:55:35 +0800 Subject: [PATCH] [components/drivers/wlan] remove duplicate configuration in wlan_cmd.c, this configuration is included in the dhcp_server.c Signed-off-by: MurphyZhao --- components/drivers/wlan/wlan_cmd.c | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/components/drivers/wlan/wlan_cmd.c b/components/drivers/wlan/wlan_cmd.c index 1ff4c5d5f..5c0173232 100644 --- a/components/drivers/wlan/wlan_cmd.c +++ b/components/drivers/wlan/wlan_cmd.c @@ -256,37 +256,11 @@ int wifi_softap_setup_netif(struct netif *netif) { if (netif) { - ip_addr_t *ip; - ip_addr_t addr; - #ifdef RT_LWIP_DHCP /* Stop DHCP Client */ dhcp_stop(netif); #endif - /* set ipaddr, gw, netmask */ - ip = (ip_addr_t *)&addr; - - /* set ip address */ - if (ipaddr_aton("192.168.169.1", &addr)) - { - netif_set_ipaddr(netif, ip); - } - - /* set gateway address */ - if ( ipaddr_aton("192.168.169.1", &addr)) - { - netif_set_gw(netif, ip); - } - - /* set netmask address */ - if ( ipaddr_aton("255.255.255.0", &addr)) - { - netif_set_netmask(netif, ip); - } - - netif_set_up(netif); - #ifdef LWIP_USING_DHCPD { char name[8]; -- GitLab