-
-
Notifications
You must be signed in to change notification settings - Fork 388
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compilation fails for ESP32 : myproject.partition.bin missing. #163
Comments
The ESP32 core's
and then the upload recipe expects to find that file in |
I have same problem. Happy to provide details is required. Edit platform.txt to remove the upload for partitions.bin
or simply upload manually |
@WayneBooth I recommend manual upload for now. |
I met the same problem. Thanks @WayneBooth for the work-arounds. If it helps someone not familiar with esptool, on a Mac here is exactly what I had to do (using the installed Arduino IDE):
After that, attaching using |
Same problem here! |
Previously the compile command copied only the following artifacts: sketch.ino.hex (or .bin) sketch.ino.elf now also the files matching the glob sketch.ino.*.hex will be copied. This allows for some 3rd party core (like esp32) to copy also the extra file sketch.ino.partitions.bin. Should fix #163
Previously the compile command copied only the following artifacts: sketch.ino.hex (or .bin) sketch.ino.elf now also the files matching the glob sketch.ino.*.hex will be copied. This allows for some 3rd party core (like esp32) to copy also the extra file sketch.ino.partitions.bin. Should fix #163
* Copy multiple build artifacts matching a name pattern. Previously the compile command copied only the following artifacts: sketch.ino.hex (or .bin) sketch.ino.elf now also the files matching the glob sketch.ino.*.hex will be copied. This allows for some 3rd party core (like esp32) to copy also the extra file sketch.ino.partitions.bin. Should fix #163 * Added test for improved support for esp32:esp32 #163 * Run of "go mod tidy"
[skip changelog] Add security policy link to readme
Hello. Thanks for the support and many advices you've already provided here.
I would like to report a bug that occurs when I try to compile a sketch for an ESP32.
My setup
Steps to reproduce
arduino-cli compile --fqbn esp32:esp32:esp32 test
(from the parent directory of test) -> works well (I got a "normal" output from the compiler and the following files have been created in the test folder : test.esp32.esp32.esp32.bin & test.esp32.esp32.esp32.elf.arduino-cli upload --fqbn esp32:esp32:esp32 -p /dev/ttyUSB0 test
-> doesn't work. I get the following output :Additional information
Feel free to contact me for additional details / testings.
Thanks.
The text was updated successfully, but these errors were encountered: