wlan driver with WICED.
- FH8620-AP6181-43362
- X1000-RealBoard-AP6212-43438
- Please check if the
SOC_FH8620
is defined inrtconfig.h
, if you are usingIoT Camera
board - Please check if the
BOARD_X1000_REALBOARD
is defined inrtconfig.h
, if you are usingX1000 RealBoard v2
board - Please initialize the WiFi module in application as follows before using
#ifdef RT_USING_WIFI
#include "wlan_wiced.h"
int wifi_init(void)
{
rt_kprintf("wifi init\n");
wifi_hw_init();
}
INIT_ENV_EXPORT(wifi_init);
#endif