• Join
  • Sign In with my.TI Login
Texas Instruments
  • Products
  • Applications
  • Tools & Software
  • Support & Community
  • Sample & Buy
  • About TI
Sample & Purchase Cart Sample & Purchase Cart
  • Search
  • Advanced
TI E2E™ Community
  • Support Forums
  • Blogs
  • Groups
  • Videos
  • 简体中文
  • More ...
TI Home » TI E2E Community » Support Forums » Low Power RF & Wireless Connectivity » SimpleLink™ Wi-Fi® » CC3000 Security demo available?
Share
Low Power RF & Wireless Connectivity
  • Forums
  • Announcements
  • Files
  • E2E Wiki
Options
  • Subscribe via RSS

Forums

CC3000 Security demo available?

This question is answered
Takeo Sekiguchi
Posted by Takeo Sekiguchi
on Jan 04 2012 23:14 PM
Intellectual1335 points

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

Report Abuse
  • Reply
You have posted to a forum that requires a moderator to approve posts before they are publicly available.
All Replies
  • Igor56492
    Posted by Igor56492
    on Jan 09 2012 10:29 AM
    Intellectual1735 points

    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

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Gregory Garcia
    Posted by Gregory Garcia
    on Jul 13 2012 12:13 PM
    Prodigy20 points

    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

    cc3000 wifi WEP
    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Alon Srednizki
    Posted by Alon Srednizki
    on Jul 23 2012 07:58 AM
    Expert3285 points

    Hi Gregory,

    For WEP we support only HEX key format.
    Please let me know if it solved your problem.

    Thanks,
    Alon.S

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Gregory Garcia
    Posted by Gregory Garcia
    on Aug 02 2012 08:12 AM
    Prodigy20 points

    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

    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],"1");                                         //security

    strcpy(WifiVar[7],"b693bee79f");                        //password

    strcpy(WifiVar[8],"");                                           //listen

    strcpy(WifiVar[9],"");                                           //press enter

    }

     

     

    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. 

     

     

     

     

    cc3000
    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Leo Marín
    Posted by Leo Marín
    on Aug 16 2012 22:17 PM
    Intellectual920 points
    basic_wifi_application.c

    This is a follow up post for : http://e2e.ti.com/support/low_power_rf/f/851/t/156190.aspx

    Gregory Garcia wrote:

    I'm trying to implement WEP security with the BasicWifiApplication, but dosent work.

    Would you tell me what is the correct format for key?

     

    Alon Srednizki  wrote:

    Hi Gregory,

    For WEP we support only HEX key format.
    Please let me know if it solved your problem.

    Gregory Garcia wrote:

    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

    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],"1");                                         //security

    strcpy(WifiVar[7],"b693bee79f");                        //password

    strcpy(WifiVar[8],"");                                           //listen

    strcpy(WifiVar[9],"");                                           //press enter

    }

     

     

    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. 

     

    Please provide a response for Gregory Garcia

     

    _______________________
    Regards,
    Leo Marín
    Embedded Proccesing MCU FAE
    cc3000 wifi WEP
    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Pedro5084
    Posted by Pedro5084
    on Aug 21 2012 10:40 AM
    Verified Answer
    Verified by Aaron L
    Intellectual2390 points

    Hi Gregory, 

    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

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
TI E2E™ Community
  • Support Forums
  • Blogs
  • Videos
  • Groups
  • Site Support & Feedback
  • Settings
TI E2E™ Community Groups
  • TI University Program
  • Make the Switch
  • Microcontroller Projects
  • Motor Drive & Control
Other Communities
  • Deyisupport
  • Designsomething.org
  • beagleboard.org
  • TI on Element 14
  • TI on TechXchangeSM
Other Technical & Support Resources
  • WEBENCH® Design Center
  • Product Information Centers
  • Technical Documents
  • TI Design Network
  • TI Technical Articles
  • TI Training

All content and materials on this site are provided "as is". TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with regard to these materials, including but not limited to all implied warranties and conditions of merchantability, fitness for a particular purpose, title and non-infringement of any third party intellectual property right. TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with respect to these materials. No license, either express or implied, by estoppel or otherwise, is granted by TI. Use of the information on this site may require a license from a third party, or a license from TI.

Content on this site may contain or be subject to specific guidelines or limitations on use. All postings and use of the content on this site are subject to the Terms of Use of the site; third parties using this content agree to abide by any limitations or guidelines and to comply with the Terms of Use of this site. TI, its suppliers and providers of content reserve the right to make corrections, deletions, modifications, enhancements, improvements and other changes to the content and materials, its products, programs and services at any time or to move or discontinue any content, products, programs, or services without notice.

Follow Us Texas Instruments on Facebook Texas Instruments on Twitter Texas Instruments on LinkedIn Texas Instruments on Google+
TI Worldwide | Contact Us | my.TI Login | Site Map | Corporate Citizenship | mobile m.ti.com (Mobile Version)

TI is a global semiconductor design and manufacturing company. Innovate with 100,000+ analog ICs and
embedded processors, along with software, tools and the industry’s largest sales/support staff.

© Copyright 1995-2013 Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy Policy | Terms of Use