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.
我想在empty例程的基础上添加WIFI功能,操作如下:
1. syscfg中添加SPI、NS中的SlNet、SIMPLELINK WIFI中的General
2. 在empty.c中添加头文件如下:
#include <ti/drivers/SPI.h>
#include <ti/drivers/net/wifi/simplelink.h>
#include <ti/drivers/net/wifi/slnetifwifi.h>
3. 在mainThread中添加:
SPI_init();
sl_Start(0, 0, 0);
编译报错:
在 SimpleLink Academy (5.10.01.00) 中只找到了 在 Porable例程基础上添加WIFI的说明https://dev.ti.com/tirex/nodeContent?node=AHfto9f3C1hke4S8NSYRXQ__fc2e6sr__LATEST。
针对WIFI的使用有没有更为细致的讲解。