micropython/ports/samd/modules/_boot.py

18 wiersze
299 B
Python

import gc
import uos
import samd
samd.Flash.flash_init()
bdev = samd.Flash()
# Try to mount the filesystem, and format the flash if it doesn't exist.
try:
vfs = uos.VfsLfs1(bdev)
except:
uos.VfsLfs1.mkfs(bdev)
vfs = uos.VfsLfs1(bdev)
uos.mount(vfs, "/")
gc.collect()
del uos, vfs, gc