[DeviceDrivers] Add wifi device/cmd.

This commit is contained in:
bernard
2017-10-25 07:37:26 +08:00
parent d9592457fb
commit 4b2a3d02f3
5 changed files with 990 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#ifndef WLAN_CMD_H__
#define WLAN_CMD_H__
struct netif;
int wifi_get_mode(void);
int wifi_set_mode(int mode);
/* do the wifi default action: read wifi setting and then join or start soft-AP */
int wifi_default(void);
/* setup netif for soft-ap */
int wifi_softap_setup_netif(struct netif *netif);
int wifi_set_setting(const char* ssid, const char* pwd);
int wifi_read_cfg(const char* filename);
int wifi_save_cfg(const char* filename);
/* save wifi setting with default storage file */
int wifi_save_setting(void);
extern struct rt_wlan_info info;
#endif