Hello,
Is there any security demo (WEP/WPA/WPA2) and sample code on MSP430FR5739 + CC3000 platform?
The current demos on the wiki looks none security demo only.
Regards,Takeo
Hello Takeo,
Currently we are having demos only with Open Security AP's.
You can easily change a Basic WiFi application for example by adding a required functionality with the help of the programming guide:
http://processors.wiki.ti.com/index.php/CC3000_Host_Programming_Guide
and using doxygen:
http://processors.wiki.ti.com/index.php/CC3000_Wi-Fi_for_MCU#CC3000_Host_Programing_Guide
Best Regards,
Igor
Hi Igor...
I'm trying to implement WEP security with the BasicWifiApplication, but dosent work.
Would you tell me what is the correct format for key?
Thansk & best regards
3162.basic_wifi_application.c
Hi Gregory,
For WEP we support only HEX key format.Please let me know if it solved your problem.
Thanks,Alon.S
Hi Alon,
when I work without security I have not problem
void Init_Var(void)
{
strcpy(WifiVar[0],""); //headlines
strcpy(WifiVar[1],"INGENIERIA"); //ssid
strcpy(WifiVar[2],"192.168.100.90"); //ip
strcpy(WifiVar[3],"255.255.0.0"); //mask
strcpy(WifiVar[4],"192.168.100.21"); //bssid
strcpy(WifiVar[5],"23"); //remote port
strcpy(WifiVar[6],"0"); //security
strcpy(WifiVar[7],""); //password
strcpy(WifiVar[8],""); //listen
strcpy(WifiVar[9],""); //press enter
}
But when I configure it to work with WEP, that module dosent work
strcpy(WifiVar[6],"1"); //security
strcpy(WifiVar[7],"b693bee79f"); //password
I have using the same command but I dont know if its needs another thing
//SSID
wlan_connect(WifiVar[6][0]-0x30, //security
&WifiVar[1][0], //ssid
strlen(WifiVar[1]), //len ssid
NULL, //bssid
(unsigned char *)&WifiVar[7][0], //password
strlen(WifiVar[7])); //length password
I hope you can help,
thanks & best regards.
This is a follow up post for : http://e2e.ti.com/support/low_power_rf/f/851/t/156190.aspx
Gregory Garcia wrote:
Alon Srednizki wrote:
Please provide a response for Gregory Garcia
Are you getting connection failure messages? Do you know if we are sending the connecting messages to AP? Have you tried using first time config to see if it helps?
Could you share the screenshot of your security setting of your AP?
Pedro