Developing CC3220 Wi-Fi Projects with Visual Studio

This tutorial shows how to use VisualGDB to create, build and debug a basic WiFi-enabled application for the CC3220S chip. We will start with creating a simple “Blinking LED” application, show how to verify the debug settings and then proceed to making and exploring a simple WiFi application.

Before you begin, install VisualGDB.

  1. Start Visual Studio and select File->New Project->VisualGDB->Embedded Project Wizard:01-newprj
  2. Proceed with the “Create a new project -> Embedded Binary” choice:02-binary
  3. On the next page select the ARM toolchain and choose the CC3200S device. In this tutorial we will be using the CC3220SF-Launchpad board with the CC3220SF device featuring 1MB of FLASH memory, so ensure you select the ‘CC3220SF’ version:
    03-device
  4. On the next page select the “Network Terminal” sample:04-terminal
  5. Go to the Debug Method page and connect the board to your computer via USB. If you are using the latest OpenOCD package, VisualGDB will automatically recognize the TI XDS110 debug probe and the CC3220SF device and will configure OpenOCD accordingly:05-debug
  6. Press “Test” to verify the settings. VisualGDB will launch OpenOCD and ensure that the chip can be debugged:06-success
  7. Press “Finish” to create the project and build it by pressing Ctrl-Shift-B:07-build
  8. The network terminal sample will accept user commands over the on-board COM port. If you are using the Custom edition or higher, configure the Raw Terminal to open on the “XDS110 Class Application/User UART” port:08-com10If you are using a lower edition of VisualGDB, you can use our free SmarTTY tool to open the COM port outside Visual Studio.
  9. If the port doesn’t show up, try installing the latest XDS110 drivers from TI and double-check the ports in Device Manager:14-uart
  10. Start debugging your project and note how the program shows the help screen via the COM port:10-help
  11. Run the following command to create a new Wi-Fi network:
    wlan_ap_start -s CC3220

    11-started

  12. Note the IP address reported by the demo program. Then connect to the CC3220 Wi-Fi network from your computer and open that address in a browser:18-page
  13. Now we will show how to run a basic TCP/IP test. Open the socket_cmd.c file and locate the TCPServer() function:12-tcpserver
  14. Use the “find all references” command to find that TCPServer() is called by the cmdSendCallback() function that is in turn registered as a callback for the “send” command. Set a breakpoint in the beginning of the TCPServer() function and type “send -p 1234” in the network terminal console:13-send
  15. Run “telnet <IP address of the board> 1234” to connect to the board. Note how the sl_Send() function will get called to send test data via the connection:14-sent
  16. You can use the Code Map provided by the VisualGDB Clang IntelliSense engine to quickly find out the functions called by TCPServer() to get a quick overview of the TCP-related CC3220 API:22-methods