mirror of
https://github.com/micropython/micropython.git
synced 2025-07-31 01:41:07 +02:00
14 lines
168 B
Python
14 lines
168 B
Python
import gc
|
|
import vfs
|
|
from flashbdev import bdev
|
|
|
|
try:
|
|
if bdev:
|
|
vfs.mount(bdev, "/")
|
|
except OSError:
|
|
import inisetup
|
|
|
|
inisetup.setup()
|
|
|
|
gc.collect()
|