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.

CCS/CC3200MOD: wlan station shows an error [GENERAL EVENT] - ID=[-102] Sender=[5]

Part Number: CC3200MOD
Other Parts Discussed in Thread: CC3200SDK, CC3200

Tool/software: Code Composer Studio

Hi,

i had a custom board having cc3200Mod ,when i run wlan station code it shows an error [GENERAL EVENT] - ID=[-102] Sender=[5].how to avoid it ,is there anyone to solve it????

i already posted a thread ,which shown below .please go through it.

  • Hi Aju,

    General Event Error -102 is SL_GENERAL_ERROR_CON_MGMT_STATUS_UNSPECIFIED, which seems to point towards a connection issue. Does this issue occur every time you run the application and have you tried using a different AP in a different environment?

    See the following prior posts for some debug ideas:

    e2e.ti.com/.../504358
    e2e.ti.com/.../2066459

    Best,
    Kevin
  • Hi Kevin,
    Thanks for your support.
    Yes this issue occurring every time when i try the application(also check different access points which shows same error).
    The same error occurring when i try any application which related to wifi.

    Aju
  • Hi Aju,

    Can you confirm that you have accurately changed the following parameters within common.h?

    Location: C:\ti\CC3200SDK_1.3.0\cc3200-sdk\example\common\common.h

    //
    // 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           "simplelinkapps1"       /* AP SSID */
    #define SECURITY_TYPE       SL_SEC_TYPE_WPA_WPA2    /* Security type (OPEN or WEP or WPA) */
    #define SECURITY_KEY        "ecsapps1"              /* Password of the secured AP */

    If this doesn't fix your issue can you try the suggestion from one of the linked posts:

    "Can you try and scan the air from the CC3200 before you connect and report what RSSI do you see for the APs around? You can do it via sl_WlanGetNetworkList(). Look at scan_policy example on the SDK"

    See if the CC3200 can see your AP's network.

    Hope this helps,

    Kevin