2016-07-02 12:20:13 -04:00
|
|
|
import gc
|
2016-07-23 06:56:24 -04:00
|
|
|
gc.threshold((gc.mem_free() + gc.mem_alloc()) // 4)
|
esp8266: Add Python modules for initial configuration.
Main entry point is _boot.py which checks whether FAT FS in flash mountable,
and if so, mounts it. Otherwise, it checks if flash is empty, and if so,
performs initial module setup: makes FAT FS, configures default AP name,
etc. As a last option, if flash is not empty, and could not be mounted,
it means filesystem corruption, and warning message with instructions is
printed in an infinite loop.
2016-04-11 17:37:04 -04:00
|
|
|
import uos
|
|
|
|
from flashbdev import bdev
|
|
|
|
|
|
|
|
try:
|
2016-04-18 10:14:00 -04:00
|
|
|
if bdev:
|
|
|
|
vfs = uos.VfsFat(bdev, "")
|
esp8266: Add Python modules for initial configuration.
Main entry point is _boot.py which checks whether FAT FS in flash mountable,
and if so, mounts it. Otherwise, it checks if flash is empty, and if so,
performs initial module setup: makes FAT FS, configures default AP name,
etc. As a last option, if flash is not empty, and could not be mounted,
it means filesystem corruption, and warning message with instructions is
printed in an infinite loop.
2016-04-11 17:37:04 -04:00
|
|
|
except OSError:
|
|
|
|
import inisetup
|
2016-04-29 13:02:59 -04:00
|
|
|
vfs = inisetup.setup()
|
2016-07-02 12:20:13 -04:00
|
|
|
|
|
|
|
gc.collect()
|