除了显示驱动,其余全部测试通过

This commit is contained in:
guo
2026-08-30 14:13:24 +08:00
commit c0ace98dff
146 changed files with 9476 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#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