123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /*
- * RT-Thread Wi-Fi Device
- *
- * COPYRIGHT (C) 2014 - 2018, Shanghai Real-Thread Technology Co., Ltd
- *
- * This file is part of RT-Thread (http://www.rt-thread.org)
- *
- * All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Change Logs:
- * Date Author Notes
- * 2018-02-27 EvalZero the first verion
- */
- #include <rtthread.h>
- #include <rtdevice.h>
- #include <lwip/netifapi.h>
- #include "wlan_dev.h"
- #include "wlan_cmd.h"
- #define WLAN_MGNT_DEBUG 1
- #if WLAN_MGNT_DEBUG
- #define WLAN_MGNT_DBG(...) rt_kprintf("[WLAN_MGNT]"),rt_kprintf(__VA_ARGS__)
- #else
- #define WLAN_MGNT_DBG(...)
- #endif
- #ifndef WIFI_DEVICE_STA_NAME
- #define WIFI_DEVICE_STA_NAME "w0"
- #endif
- #ifndef WIFI_DEVICE_AP_NAME
- #define WIFI_DEVICE_AP_NAME "ap"
- #endif
- static void wlan_mgnt_init_done_event(struct rt_wlan_device *device, rt_wlan_event_t event, void *user_data)
- {
- WLAN_MGNT_DBG("wlan init done event callback \n");
- }
- static void wlan_mgnt_link_up_event(struct rt_wlan_device *device, rt_wlan_event_t event, void *user_data)
- {
- WLAN_MGNT_DBG("wlan link up event callback \n");
- }
- static void wlan_mgnt_link_down_event(struct rt_wlan_device *device, rt_wlan_event_t event, void *user_data)
- {
- WLAN_MGNT_DBG("wlan link down event callback \n");
- }
- static void wlan_mgnt_sta_connect_event(struct rt_wlan_device *device, rt_wlan_event_t event, void *user_data)
- {
- WLAN_MGNT_DBG("wlan sta connect event callback \n");
- struct netif *netif = device->parent.netif;
- netifapi_netif_set_up(netif);
- netifapi_netif_set_link_up(netif);
- #ifdef RT_LWIP_DHCP
- /* start DHCP */
- dhcp_start(netif);
- #endif
- }
- static void wlan_mgnt_sta_disconnect_event(struct rt_wlan_device *device, rt_wlan_event_t event, void *user_data)
- {
- WLAN_MGNT_DBG("wlan sta disconnect event callback \n");
- netifapi_netif_set_down(device->parent.netif);
- netifapi_netif_set_link_down(device->parent.netif);
- rt_memset(&device->parent.netif->ip_addr, 0, sizeof(ip_addr_t));
- rt_memset(&device->parent.netif->netmask, 0, sizeof(ip_addr_t));
- rt_memset(&device->parent.netif->gw, 0, sizeof(ip_addr_t));
- #ifdef RT_LWIP_DHCP
- dhcp_stop(device->parent.netif);
- #endif
- }
- static void wlan_mgnt_ap_start_event(struct rt_wlan_device *device, rt_wlan_event_t event, void *user_data)
- {
- WLAN_MGNT_DBG("wlan ap start event callback \n");
- netifapi_netif_set_up(device->parent.netif);
- netifapi_netif_set_link_up(device->parent.netif);
- wifi_softap_setup_netif(device->parent.netif);
- }
- static void wlan_mgnt_ap_stop_event(struct rt_wlan_device *device, rt_wlan_event_t event, void *user_data)
- {
- WLAN_MGNT_DBG("wlan ap stop event callback \n");
- netifapi_netif_set_down(device->parent.netif);
- netifapi_netif_set_link_down(device->parent.netif);
- }
- static void wlan_mgnt_ap_associate_event(struct rt_wlan_device *device, rt_wlan_event_t event, void *user_data)
- {
- WLAN_MGNT_DBG("wlan ap associate event callback \n");
- }
- static void wlan_mgnt_ap_disassociate_event(struct rt_wlan_device *device, rt_wlan_event_t event, void *user_data)
- {
- WLAN_MGNT_DBG("wlan ap disassociate event callback \n");
- }
- static void wlan_mgnt_scan_done_event(struct rt_wlan_device *device, rt_wlan_event_t event, void *user_data)
- {
- WLAN_MGNT_DBG("wlan scan done event callback \n");
- }
- int rt_wlan_mgnt_attach(struct rt_wlan_device *device, void *user_data)
- {
- RT_ASSERT(device != RT_NULL);
- rt_wlan_register_event_handler(device, WIFI_EVT_INIT_DONE, wlan_mgnt_init_done_event);
- rt_wlan_register_event_handler(device, WIFI_EVT_LINK_DOWN, wlan_mgnt_link_up_event);
- rt_wlan_register_event_handler(device, WIFI_EVT_LINK_UP, wlan_mgnt_link_down_event);
- rt_wlan_register_event_handler(device, WIFI_EVT_CONNECT, wlan_mgnt_sta_connect_event);
- rt_wlan_register_event_handler(device, WIFI_EVT_DISCONNECT, wlan_mgnt_sta_disconnect_event);
- rt_wlan_register_event_handler(device, WIFI_EVT_AP_START, wlan_mgnt_ap_start_event);
- rt_wlan_register_event_handler(device, WIFI_EVT_AP_STOP, wlan_mgnt_ap_stop_event);
- rt_wlan_register_event_handler(device, WIFI_EVENT_STA_ASSOC, wlan_mgnt_ap_associate_event);
- rt_wlan_register_event_handler(device, WIFI_EVENT_STA_DISASSOC, wlan_mgnt_ap_disassociate_event);
- rt_wlan_register_event_handler(device, WIFI_EVT_SCAN_DONE, wlan_mgnt_scan_done_event);
- return RT_EOK;
- }
|