完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
我设法让基本的 OTA 示例代码在带有自定义分线板的 ESP-07 上运行,并且我可以轻松地通过我们的本地网络刷新我自己的固件。然后我尝试将代码刷写到其他一些板上,但我没有成功。固件的其余部分工作 - 我正在使用 MQTT 传输传感器数据,因此我可以连接到我们的 WiFi 和 MQTT 代理等。OTA 不起作用。
我正在使用 platformio,我的 ini 是: 代码:全选[env:esp07] platform = espressif8266 board = esp07 framework = arduino upload_port = COM16 upload_speed = 115200 build_flags = -Wl,-Tesp8266.flash.1m64.ld monitor_port = COM16 monitor_baud = 115200 OTA 设置代码如下。其余代码有效,所以我认为问题出在这里: 代码:全选void configure_OTA() { /** OTA CONFIG **/ ArduinoOTA.onStart([]() { String type; if (ArduinoOTA.getCommand() == U_FLASH) type = "sketch"; else // U_SPIFFS type = "filesystem"; // NOTE: if updating SPIFFS this would be the place to unmount SPIFFS using SPIFFS.end() Serial.println("Start updating " + type); }); ArduinoOTA.onEnd([]() { Serial.println("nEnd"); }); ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) { Serial.printf("Progress: %u%%r", (progress / (total / 100))); }); ArduinoOTA.onError([](ota_error_t error) { Serial.printf("Error[%u]: ", error); if (error == OTA_AUTH_ERROR) Serial.println("Auth Failed"); else if (error == OTA_BEGIN_ERROR) Serial.println("Begin Failed"); else if (error == OTA_CONNECT_ERROR) Serial.println("Connect Failed"); else if (error == OTA_RECEIVE_ERROR) Serial.println("Receive Failed"); else if (error == OTA_END_ERROR) Serial.println("End Failed"); }); // Should be default, but let's be explicit. String chip_id = String(system_get_chip_id()); String hostname = "sensor_" + chip_id; ArduinoOTA.setHostname(hostname.c_str()); ArduinoOTA.setPassword("my_password"); ArduinoOTA.setPort(8266); ArduinoOTA.begin(); Serial.println("OTA setup"); /** OTA CONFIG **/ } 这不起作用,即使使用 Basic OTA 示例也是如此。芯片在启动时输出如下内容: 代码:全选Chip ID:4266305 Connecting.......Ready IP address: 192.168.1.6 4266305: Trying to connect to MQQT Broker 4266305: Connected to MQTT Broker |
|
相关推荐
|
|
只有小组成员才能发言,加入小组>>
920 浏览 1 评论
552浏览 6评论
461浏览 5评论
有没有办法在不使用混杂模式的情况下实现Wifi驱动程序接收缓冲区访问中断呢?
445浏览 5评论
446浏览 4评论
417浏览 4评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-25 08:09 , Processed in 0.731728 second(s), Total 74, Slave 57 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号