NOTICE: The Processors Wiki will End-of-Life on January 15, 2021. It is recommended to download any files or other content you may need that are hosted on processors.wiki.ti.com. The site is now set to read only.
CC3200 Getting Started with WLAN Station
Contents
Overview[edit]
A CC3200 device has the capability to behave as a station in a typical networking system (Infrastructure setup). It can connect to access point (with or without security) and can use the internet services via the same access point, if available.
Application details[edit]
This application aims to exhibit the CC3200 device as a station in a simple network. Developers/users can refer the function or re-use them while writing new application. The application will be used without the UART terminal. The device connects to an AP (access point), with AP configurations stored in the form of macros in the application. If the connection is successful, it will try to get the IP address of “www.ti.com” and then ping to the ip address. Zero is the expected return value. A different return code would mean that the internet connection is not available or that the ping to the link is not successful.
Macros for Security <syntaxhighlight lang='c'>
- define SSID_NAME "cc3200demo"
- define SECURITY_TYPE SL_SEC_TYPE_OPEN
- define SECURITY_KEY ""
- define WEP_KEY_ID 1
</syntaxhighlight>
This example can be used either on TI-RTOS or FreeRTOS.
For the application to work with TI-RTOS, ti_rtos project and ti_rtos_config project need to be imported into the application workspace. These projects can be found in CC3200-SDK under ti_rtos folder. Please follow this link for CC3200 TI-RTOS.
Source Files briefly explained[edit]
- main.c – main file creates the simplelink task which does most of the network related operations, a WlanStationMode task makes calls to the network related APIs of simplelink library.
- startup_ewarm.c – IAR workbench specific vector table implementation for interrupts.
- startup_ccs.c – IAR workbench specific vector table implementation for interrupts.
- gpio_if.c - GPIO interface file for LED APIs
- pinmux.c - File to mux device pin to different peripheral signal.
Code flow[edit]
<syntaxhighlight lang='c'> void WlanStationMode( void *pvParameters ) {
... //Start the SimpleLink lMode = sl_Start(0, 0, 0); ... // Connecting to WLAN AP // After this call we will be connected and have IP address */ WlanConnect(); ... // Checking the Lan connection by pinging to AP gateway lRetVal = CheckLanConnection(); ... // Turn on GREEN LED when device gets PING response from AP GPIO_IF_LedOn(MCU_EXECUTE_SUCCESS_IND); ... // Checking the internet connection by pinging to external host lRetVal = CheckInternetConnection(); ... // Turn on ORANGE LED when device gets PING response from AP GPIO_IF_LedOn(MCU_ORANGE_LED_GPIO); ...
} </syntaxhighlight>
Using the CC3200 as an STA is a simple three step process.
- Start the SimpleLink by calling
sl_Start()
API - Connect to the Access point by calling
sl_WlanConnect()
API - Use the
sl_NetCfgGet()
API or check forSL_NETAPP_IPV4_IPACQUIRED_EVENT
NetApp Event to get the IP address of the device.
Refer to the main.c file of the reference application for more details
Usag[edit]
- Run this application (getting_started_with_wlan_sta) application from IAR/CCS or Flash the bin file to device.
- Device will switch to STA mode if it's in other mode.
- It'll try to connect open predefined AP (cc3200demo) and at successful connection Red LED will glow up.
- After AP connection device will ping to AP, at successful ping to AP, Green LED will switch on.
- Device will further check for internet connection (ping to 'www.ti.com') and at successful ping to external host Orange LED will switch on.
- Observe the LEDs state and code flow to confirm the proper execution.
Limitations/Known Issues[edit]
None.
Links[edit]
{{#invoke: Navbox | navbox }} {{#invoke: Navbox | navbox }}