This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC3200 wlan station example- not getting connected

Other Parts Discussed in Thread: CC3200

Hello

I observed many similar posts already exist on this, but nothing seemed to help so I am posting again.

I am executing wlan_example on cc3200 using CCS. The Red led keeps on blinking and it doesnt get connected to the AP. I followed manual instructions and checked common.h too.  Kindly help me proceed.

Thank you

  • Hi Aditi,

    When you first got your CC3200 LP did you try the out of box demo with your smart phone? Did the out of box demo work?

    If you followed the CC3200 Getting Started Guide and wlan_station did not work, I suggest you try at another wifi router. Post your Tera Term output here.

    - kel
  • Sorry for replying late.
    The out of box demo works fine. I have tried with different wifi router also, but my question is nowhere have I provided its details in the code. The file common.h has ssid 'cc3200demo'. How exactly is it working then?
    Also, following is the Tera Term output:

    *************************************************
    CC3200 WLAN STATION Application
    *************************************************

    Host Driver Version: 1.0.1.6
    Build Version 2.2.0.1.31.1.2.0.2.1.0.3.23
    Device is configured in default state
    Device started as STATION


    And then red led keeps on blinking.
  • Hi,

    You need to change common.h defines below to be your WiFi Router details. This is mentioned at the CC3200 Getting Started Guide.

    #define SSID_NAME "Your WiFi Router SSID" /* AP SSID */
    #define SECURITY_TYPE SL_SEC_TYPE_WPA/* Security type (OPEN or WEP or WPA*/
    #define SECURITY_KEY "Your Wifi Router Password" /* Password of the secured AP */

    - kel