Hi,
I am using CC3000 together with MSP430FG4618. I have to connect to an AP which is part of an ESS. So in the wlan_connect function I also need to specify the BSSID (i.e. MAC address) of the particular AP I want to connect to.
The code is the following:
//Direct connection to an AP
//reset policy
wlan_ioctl_set_connection_policy(0,0,0);
value = wlan_connect(WLAN_SEC_UNSEC,"APname",APname_length, bssid,NULL,0);
while(ulCC3000Connected==0);
SmartConfigLedOn(TRUE);
while(1);
The wlan_connect function returns correcly the value 0, but the CONNECT unsolicited event never arrives.
I read on the new errata of CC3000 that the device is not able to connect to a specific AP with a given BSSID, so maybe the problem can be this. Do you have any suggestion?
Thank you and Best Regards,
Mario Demaria