micropython/ports/esp8266/modules/_boot.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
225 B
Python
Raw Normal View History

import gc
gc.threshold((gc.mem_free() + gc.mem_alloc()) // 4)
import uos
from flashbdev import bdev
if bdev:
try:
uos.mount(bdev, "/")
except:
import inisetup
inisetup.setup()
gc.collect()