-
Hi MicroPython team, I'm working on a project using the ESP32-S3 and I want to enable OTA (Over-the-Air) updates while running MicroPython. I noticed that the MicroPython downloads page provides nightly builds for the GENERIC_S3, but there doesn't appear to be a GENERIC_S3_OTA build available—only a GENERIC_OTA version which seems intended for other ESP32 variants. My questions are:
Thanks for your help and for all the great work on MicroPython! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes, define your own board. See the You can copy the relevant files from another board. In my build tree, I have the following structure for my
My
Because both of the boards I'm using have the octal SPIRAM, in the
This then uses the And my
But because that particular CSV file isn't in the PORT directory, I have this in my build script:
and then I run
I also have my own |
Beta Was this translation helpful? Give feedback.
Yes, define your own board. See the
README.md
in https://github.com/micropython/micropython/tree/master/ports/esp32 .You can copy the relevant files from another board.
In my build tree, I have the following structure for my
boards
subdirectory: