15 lines
320 B
C
15 lines
320 B
C
#ifndef WIFI_STA_H
|
|
#define WIFI_STA_H
|
|
|
|
/* 配置 STA */
|
|
int wifi_sta_configure(void);
|
|
|
|
|
|
/*ssid: 1~32 字节 password: 0~63 字节
|
|
* return:
|
|
* 0 已成功提交连接请求,不代表已经联网成功
|
|
* <0 参数错误或 SDK 调用失败
|
|
*/
|
|
int wifi_sta_connect(const char *ssid, const char *password);
|
|
|
|
#endif |