mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
10 lines
155 B
Python
10 lines
155 B
Python
import uos
|
|
from flashbdev import bdev
|
|
|
|
try:
|
|
if bdev:
|
|
vfs = uos.VfsFat(bdev, "")
|
|
except OSError:
|
|
import inisetup
|
|
vfs = inisetup.setup()
|