12 lines
148 B
C
12 lines
148 B
C
|
#include <rtthread.h>
|
||
|
|
||
|
#ifdef RT_USING_WIFI
|
||
|
#include "wlan_wiced.h"
|
||
|
|
||
|
int wifi_init(void)
|
||
|
{
|
||
|
wifi_hw_init();
|
||
|
}
|
||
|
INIT_ENV_EXPORT(wifi_init);
|
||
|
#endif
|