update wifi driver

This commit is contained in:
flyingcys 2018-09-11 20:25:53 +08:00
parent f93445dfa6
commit 7f4971152a
5 changed files with 12 additions and 8 deletions

View file

@ -11,7 +11,9 @@
#include "build_info.h"
#include <rtthread.h>
#ifdef RT_USING_LWIP
#include <wlan_dev.h>
#endif
#ifndef RT_MAIN_THREAD_STACK_SIZE
#define RT_MAIN_THREAD_STACK_SIZE 2048
@ -24,7 +26,9 @@ static rt_uint8_t main_stack[RT_MAIN_THREAD_STACK_SIZE];
struct rt_thread main_thread;
#endif
#ifdef RT_USING_LWIP
extern int amebaz_wifi_init(rt_wlan_mode_t mode);
#endif
/* the system main thread */
void main_thread_entry(void *parameter)
@ -37,8 +41,10 @@ void main_thread_entry(void *parameter)
rt_components_init();
#endif
#ifdef RT_USING_LWIP
if(amebaz_wifi_init(WIFI_STATION) != RT_EOK)
rt_kprintf("amebaz_wifi_start failed...\n");
#endif
/* invoke system main function */
#if defined (__CC_ARM)

View file

@ -10,7 +10,7 @@
#include <wifi/wifi_conf.h>
#include <wifi/wifi_util.h>
#include <wifi/wifi_ind.h>
#include "tcpip.h"
#include "lwip/tcpip.h"
#include <osdep_service.h>
#if CONFIG_EXAMPLE_WLAN_FAST_CONNECT || CONFIG_JD_SMART
@ -413,6 +413,7 @@ int wifi_connect(
u8 wep_pwd[14] = {0};
if(rtw_join_status & JOIN_SIMPLE_CONFIG || rtw_join_status & JOIN_AIRKISS){
printf("%s %d\r\n", __FUNCTION__, __LINE__);
return RTW_ERROR;
}
@ -534,6 +535,7 @@ int wifi_connect(
goto error;
} else {
if(wifi_is_connected_to_ap( ) != RTW_SUCCESS) {
printf("%s %d\r\n", __FUNCTION__, __LINE__);
result = RTW_ERROR;
goto error;
}
@ -553,6 +555,7 @@ int wifi_connect(
rtw_free(join_result->network_info.password);
}
if(wifi_is_connected_to_ap( ) != RTW_SUCCESS) {
printf("%s %d\r\n", __FUNCTION__, __LINE__);
result = RTW_ERROR;
goto error;
}