Commit bce134b5 authored by Johny Mattsson's avatar Johny Mattsson
Browse files

Fixed incorrect event data in wifi.sta.on('got_ip')

parent 75829169
......@@ -112,8 +112,9 @@ static void sta_authmode (lua_State *L, const void *data)
static void sta_got_ip (lua_State *L, const void *data)
{
const esp_netif_ip_info_t *ip_info =
(const esp_netif_ip_info_t *)data;
const ip_event_got_ip_t *got_ip_info =
(const ip_event_got_ip_t *)data;
const esp_netif_ip_info_t *ip_info = &got_ip_info->ip_info;
char ipstr[IP_STR_SZ] = { 0 };
ip4str_esp (ipstr, &ip_info->ip);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment