Searched refs:netif_ap (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-3.6.0/examples/mesh/ip_internal_network/main/ |
D | mesh_netif.c | 51 static esp_netif_t *netif_ap = NULL; variable 98 if (netif_ap) { in receive_task() 100 esp_netif_receive(netif_ap, data.data, data.size, NULL); in receive_task() 293 esp_netif_set_mac(netif_ap, mac); in start_mesh_link_ap() 294 esp_netif_action_start(netif_ap, NULL, 0, NULL); in start_mesh_link_ap() 375 if (netif_ap) { in mesh_netif_start_root_ap() 376 esp_netif_action_disconnected(netif_ap, NULL, 0, NULL); in mesh_netif_start_root_ap() 377 mesh_delete_if_driver(esp_netif_get_io_driver(netif_ap)); in mesh_netif_start_root_ap() 378 esp_netif_destroy(netif_ap); in mesh_netif_start_root_ap() 379 netif_ap = NULL; in mesh_netif_start_root_ap() [all …]
|
/hal_espressif-3.6.0/components/esp_wifi/src/ |
D | wifi_default.c | 389 esp_netif_t *netif_ap = esp_netif_new(&cfg_ap); in esp_netif_create_default_wifi_mesh_netifs() local 390 assert(netif_ap); in esp_netif_create_default_wifi_mesh_netifs() 391 ESP_ERROR_CHECK(esp_netif_attach_wifi_ap(netif_ap)); in esp_netif_create_default_wifi_mesh_netifs() 395 ESP_ERROR_CHECK(esp_netif_dhcps_stop(netif_ap)); in esp_netif_create_default_wifi_mesh_netifs() 416 *p_netif_ap = netif_ap; in esp_netif_create_default_wifi_mesh_netifs()
|
/hal_espressif-3.6.0/examples/wifi/iperf/main/ |
D | cmd_wifi.c | 55 static esp_netif_t *netif_ap = NULL; variable 123 netif_ap = esp_netif_create_default_wifi_ap(); in initialise_wifi() 124 assert(netif_ap); in initialise_wifi() 306 esp_netif_t *netif = netif_ap; in wifi_get_local_ip()
|