CC3200 WiFi只能连接一个
时间:10-02
整理:3721RD
点击:
起AP,如果有别的设备抢了我的WiFi,我想连连不上,请问怎么办,在程序里有没有好办法解决
CC3200做AP只能支持一个client,. 新的CC3220可以支持1带4.
如果将CC3200启动为AP模式,建议开启加密,通过密码的方式加入到CC3200的AP模式中,
//
// Values for below macros shall be modified as per access-point(AP) properties
// SimpleLink device will connect to following AP when application is executed
//
#define SSID_NAME "AP" /*cc3200demo AP SSID */
#define SECURITY_TYPE SL_SEC_TYPE_WPA_WPA2 /* SL_SEC_TYPE_OPEN Security type (OPEN or WEP or WPA*/
//#define SECURITY_TYPE SL_SEC_TYPE_OPEN
//#define SECURITY_KEY "" /* Password of the secured AP */
#define SECURITY_KEY "123456789"
#define SSID_LEN_MAX 32
#define BSSID_LEN_MAX 6