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.

LAUNCHXL-CC3235SF: WiFi Direct code

Part Number: LAUNCHXL-CC3235SF
Other Parts Discussed in Thread: CC3235SF

Tool/software:

Hi,

My customer is trying evaluate WiFi direct feature on Launchpad.
It seems there is no example project in SDK, so they modified "empty_CC3235SF_LAUNCHXL_freertos_tilang" and added WiFi direct feature.
They refers to below document page 63 and later.
https://www.ti.com/lit/ug/swru455m/swru455m.pdf

*  ======== empty.c => wifiDirect.c ========
*/

/* For usleep() */
//#include <unistd.h>
//#include <stdint.h>
//#include <stddef.h>

/* Driver Header files */
//#include <ti/drivers/GPIO.h>
// #include <ti/drivers/I2C.h>
#include <ti/drivers/SPI.h>
// #include <ti/drivers/Watchdog.h>
#include <ti/drivers/net/wifi/simplelink.h>
#include <ti/drivers/net/wifi/slnetifwifi.h>
#include <ti/display/Display.h>

/* Driver configuration */
#include "ti_drivers_config.h"
#include "pthread.h"
#include "semaphore.h"

#define APPLICATION_VERSION "1.0.0"
#define DEVICE_NAME "Simple_WiFi_Direct"
#define DEVICE_TYPE "WiFi_Direct_Device"


But they got below build errors. What causes these unsolved symbol errors?


Thanks and regards,
Koichiro Tashiro