Page 1 of 1
使用arduino生成bin文件,怎么方便烧录(下载)到ESP8266/32?
Posted: Sat Apr 24, 2021 8:29 am
by steveszhang2021
使用arduino生成bin文件,怎么方便烧录(下载)到ESP8266/32?
Re: 使用arduino生成bin文件,怎么方便烧录(下载)到ESP8266/32?
Posted: Sat Apr 24, 2021 1:37 pm
by ESP_Gargamel
不是界面上直接点击编译下载 (按界面上的→)就行了么。
Re: 使用arduino生成bin文件,怎么方便烧录(下载)到ESP8266/32?
Posted: Sun Apr 25, 2021 10:41 am
by steveszhang2021
是arduino IDE到处的bin文件,不是直接编译,怎么通过flash_down_tool 3.8.5下载到esp 8266
Re: 使用arduino生成bin文件,怎么方便烧录(下载)到ESP8266/32?
Posted: Sun Apr 25, 2021 11:13 am
by ESP_Gargamel
如果你直接使用 arduino 进行过烧录,那输出窗口已经告诉需要烧录到哪里了。
比如 esp8266 直接烧录到 0 地址;esp32 烧录 boot 到 0x1000,partition 到 0x8000,ota 到 0xe000, app 到 0x10000,前面 3 个 bin,需要根据你自己的配置选择。
Re: 使用arduino生成bin文件,怎么方便烧录(下载)到ESP8266/32?
Posted: Mon Apr 26, 2021 3:19 am
by steveszhang2021
Re: 使用arduino生成bin文件,怎么方便烧录(下载)到ESP8266/32?
Posted: Mon Apr 26, 2021 3:22 am
by steveszhang2021
在esp8266的SDK入门的PDF中有讲地址的下载的介绍(好像是5个),真心希望后期ESP32-arduino的bin的下载的相关官方资料有介绍,多谢;
Re: 使用arduino生成bin文件,怎么方便烧录(下载)到ESP8266/32?
Posted: Mon Apr 26, 2021 4:06 am
by ESP_Gargamel
arduino 安装后,在 ~/.arduino15/packages/esp32/hardware/esp32/1.0.4 目录下有个 platform.txt,最下面 tools.esptool_py.upload.pattern 里其实已经说了各个 bin 以及烧录地址,esp8266 的类似。