Replies: 1 comment 8 replies
-
The default 4MB flash size on the original ESP32 devices only provided enough space for 2 firmware partitions that could fit a typical micropython application image (~1.5MB), so there is not enough room for a fallback factory partition in addition to the (minimum 2) OTA partitions. If you have more flash storage, you can add a factory partition as well if you want (eg. see https://github.com/glenn20/mp-image-tool-esp32), though its not clear how this provides any advantage over 2 (or 3) OTA partitions. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How come all the OTA partition examples omit the
factory
partition?If I wanted to rollback to factory for some reason, I would want to do something like this:
Beta Was this translation helpful? Give feedback.
All reactions