69661f3343
This is run with uncrustify 0.70.1, and black 19.10b0.
16 lines
225 B
Python
16 lines
225 B
Python
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()
|