wlan_cmd.h 563 字节
Newer Older
B
bernard 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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