记住状态

This commit is contained in:
zogodo
2019-10-09 22:44:35 +08:00
parent 41c5da6817
commit 6fad6106d9
3 changed files with 9 additions and 3 deletions

View File

@@ -64,7 +64,7 @@ static int HttpGetTc1Status(httpd_request_t *req)
{
const unsigned char* sockets = GetSocketStatus();
char* tc1_status = malloc(256);
sprintf(tc1_status, TC1_STATUS_JSON, sockets, (int)sys_config->micoSystemConfig.reserved,
sprintf(tc1_status, TC1_STATUS_JSON, sockets, ip_status.mode,
sys_config->micoSystemConfig.ssid, sys_config->micoSystemConfig.user_key,
ELAND_AP_SSID, ELAND_AP_KEY, ip_status.ip, ip_status.mask, ip_status.gateway);

View File

@@ -11,7 +11,7 @@
char wifi_status = WIFI_STATE_NOCONNECT;
mico_timer_t wifi_led_timer;
IpStatus ip_status = { ELAND_AP_LOCAL_IP, ELAND_AP_LOCAL_IP, ELAND_AP_NET_MASK };
IpStatus ip_status = { 0, ELAND_AP_LOCAL_IP, ELAND_AP_LOCAL_IP, ELAND_AP_NET_MASK };
//wifi已连接获取到IP地址回调
static void WifiGetIpCallback(IPStatusTypedef *pnet, void * arg)
@@ -40,6 +40,7 @@ static void WifiStatusCallback(WiFiEvent status, void* arg)
os_log("close ap error[%d]", status);
}
ip_status.mode = 1;
//wifi_status = WIFI_STATE_CONNECTED;
}
else if (status == NOTIFY_STATION_DOWN) //wifi断开
@@ -56,6 +57,10 @@ static void WifiStatusCallback(WiFiEvent status, void* arg)
mico_rtos_start_timer(&wifi_led_timer);
}
}
else if (status == NOTIFY_AP_UP)
{
ip_status.mode = 0;
}
}
bool scaned = false;

View File

@@ -13,7 +13,7 @@ enum
WIFI_STATE_CONNECTED,
};
#define ELAND_AP_SSID "TC1-AP-MAC"
#define ELAND_AP_SSID "TC1-AP"
#define ELAND_AP_KEY "12345678"
#define ELAND_AP_LOCAL_IP "192.168.0.1"
#define ELAND_AP_DNS_SERVER "192.168.0.1"
@@ -26,6 +26,7 @@ extern char* wifi_ret;
extern char wifi_status;
typedef struct {
int mode; //0:AP, 1:Station
char ip[16];
char gateway[16];
char mask[16];