mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-21 12:43:30 +08:00
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
|