Other Parts Discussed in Thread: UNIFLASH
Tool/software: Code Composer Studio
I'm using the CC3220MODASF Chip on a custom carrier board, trying to get the first connection to internet working. I have successfully run the Network Terminal demo/example, and am able to get a ping between the board and my desktop- as well as the RSSI readings- so I know the radio is functional. I can connect to the AP and add the interface like so (Per the Httpget demo)
/* Initialize SlNetSock layer with CC3x20 interface */ SlNetIf_init(0); SlNetIf_add(SLNETIF_ID_1, SLNET_IF_WIFI_NAME, (const SlNetIf_Config_t *)&SlNetIfConfigWifi, SLNET_IF_WIFI_PRIO); SlNetSock_init(0); SlNetUtil_init(0);
However, in the call sequence of SlNetIf_getConnectionStatus() --> SlNetIfWifi_getConnectionStatus(), there are no apparent errors- but I have gotten rather deep into the driver code and am unable to figure out what's going on much further than the sl_WlanGet() call.