We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 106a83d commit f30b32eCopy full SHA for f30b32e
ports/esp32/modules/flashbdev.py
@@ -3,5 +3,5 @@
3
# MicroPython's partition table uses "vfs", TinyUF2 uses "ffat".
4
bdev = Partition.find(Partition.TYPE_DATA, label="vfs")
5
if not bdev:
6
- bdev = Partition.find(Partition.TYPE_DATA, label="ffat")
+ bdev = Partition.find(Partition.TYPE_DATA, label="ffat", block_size=512)
7
bdev = bdev[0] if bdev else None
0 commit comments