From 3b0b9f5b5b540dabc052d1313e2604e9acf70133 Mon Sep 17 00:00:00 2001 From: jonny_ji7 Date: Sat, 18 Jun 2022 11:36:26 +0200 Subject: [PATCH] Add static ip for wifi client (10.0.0.66) When connecting to wifi (currently BKA-network only) a static ip 10.0.0.66 is used. TODO: define static ip for access-point mode --- main/wifi.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/main/wifi.c b/main/wifi.c index 2579c36..3c8a215 100644 --- a/main/wifi.c +++ b/main/wifi.c @@ -183,6 +183,21 @@ void wifi_init_client(void) s_wifi_event_group = xEventGroupCreate(); sta = esp_netif_create_default_wifi_sta(); + + + //set static ip + esp_netif_dhcpc_stop(sta); + + esp_netif_ip_info_t ip_info; + IP4_ADDR(&ip_info.ip, 10, 0, 0, 66); + IP4_ADDR(&ip_info.gw, 10, 0, 0, 1); + IP4_ADDR(&ip_info.netmask, 255, 255, 0, 0); + + esp_netif_set_ip_info(sta, &ip_info); + + + + wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); ESP_ERROR_CHECK(esp_wifi_init(&cfg));