完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
wifi模式在进入连接注册事件回调函数里调用设置静态IP函数,函数如下:
static void wifi_connected_handler(void *arg, esp_event_base_t event_base, int32_t event_id, void *event_data) { app_set_static_ip(arg); } static void app_set_static_ip(esp_netif_t *netif) { if (esp_netif_dhcpc_stop(netif) != ESP_OK) { ESP_LOGE(TAG, "Failed to stop dhcp client"); return; } esp_netif_ip_info_t ip; memset(&ip, 0 , sizeof(esp_netif_ip_info_t)); ip.ip.addr = app_static_ip.ip.addr; ip.netmask.addr = app_static_ip.netmask.addr; ip.gw.addr = app_static_ip.gw.addr; if (esp_netif_set_ip_info(netif, &ip) != ESP_OK) { ESP_LOGE(TAG, "Failed to set ip info"); return; } ESP_ERROR_CHECK(app_set_dns_server(netif, app_static_ip.gw.addr, ESP_NETIF_DNS_MAIN)); ESP_ERROR_CHECK(app_set_dns_server(netif, ipaddr_addr("0.0.0.0"), ESP_NETIF_DNS_BACKUP)); } 问题出现在调用这个函数 esp_netif_dhcpc_stop(netif) 后,系统死机复位。这边试过使用以太网,同样在连接成功回调函数调用dhcp_stop 没有出现问题。 |
|
相关推荐
|
|
只有小组成员才能发言,加入小组>>
142个成员聚集在这个小组
加入小组530浏览 6评论
447浏览 5评论
有没有办法在不使用混杂模式的情况下实现Wifi驱动程序接收缓冲区访问中断呢?
429浏览 5评论
425浏览 4评论
402浏览 4评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-10 16:35 , Processed in 0.483207 second(s), Total 43, Slave 38 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号