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
|
|
|
|
import network
|
|
|
|
from flashbdev import bdev
|
|
|
|
|
2020-02-26 23:36:53 -05:00
|
|
|
|
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
|
|
|
def wifi():
|
|
|
|
import ubinascii
|
2020-02-26 23:36:53 -05:00
|
|
|
|
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
|
|
|
ap_if = network.WLAN(network.AP_IF)
|
2016-05-02 19:16:42 -04:00
|
|
|
essid = b"MicroPython-%s" % ubinascii.hexlify(ap_if.config("mac")[-3:])
|
2016-04-11 17:46:04 -04:00
|
|
|
ap_if.config(essid=essid, authmode=network.AUTH_WPA_WPA2_PSK, password=b"micropythoN")
|
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
|
|
|
|
2020-02-26 23:36:53 -05:00
|
|
|
|
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
|
|
|
def check_bootsec():
|
|
|
|
buf = bytearray(bdev.SEC_SIZE)
|
|
|
|
bdev.readblocks(0, buf)
|
|
|
|
empty = True
|
|
|
|
for b in buf:
|
2020-02-26 23:36:53 -05:00
|
|
|
if b != 0xFF:
|
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
|
|
|
empty = False
|
|
|
|
break
|
|
|
|
if empty:
|
|
|
|
return True
|
|
|
|
fs_corrupted()
|
|
|
|
|
2020-02-26 23:36:53 -05:00
|
|
|
|
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
|
|
|
def fs_corrupted():
|
|
|
|
import time
|
2020-02-26 23:36:53 -05:00
|
|
|
|
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
|
|
|
while 1:
|
2020-02-26 23:36:53 -05:00
|
|
|
print(
|
|
|
|
"""\
|
2017-01-02 10:52:35 -05:00
|
|
|
The FAT filesystem starting at sector %d with size %d sectors appears to
|
|
|
|
be corrupted. If you had important data there, you may want to make a flash
|
|
|
|
snapshot to try to recover it. Otherwise, perform factory reprogramming
|
|
|
|
of MicroPython firmware (completely erase flash, followed by firmware
|
|
|
|
programming).
|
2020-02-26 23:36:53 -05:00
|
|
|
"""
|
|
|
|
% (bdev.START_SEC, bdev.blocks)
|
|
|
|
)
|
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
|
|
|
time.sleep(3)
|
2016-04-29 13:02:59 -04:00
|
|
|
|
2020-02-26 23:36:53 -05:00
|
|
|
|
2016-04-29 13:02:59 -04:00
|
|
|
def setup():
|
|
|
|
check_bootsec()
|
|
|
|
print("Performing initial setup")
|
|
|
|
wifi()
|
esp8266: Change from FAT to littlefs v2 as default filesystem.
This commit changes the esp8266 boards to use littlefs v2 as the
filesystem, rather than FAT. Since the esp8266 doesn't expose the
filesystem to the PC over USB there's no strong reason to keep it as FAT.
Littlefs is smaller in code size, is more efficient in use of flash to
store data, is resilient over power failure, and using it saves about 4k of
heap RAM, which can now be used for other things.
This is a backwards incompatible change because all existing esp8266 boards
will need to update their filesystem after installing new firmware (eg
backup old files, install firmware, restore files to new filesystem).
As part of this commit the memory layout of the default board (GENERIC) has
changed. It now allocates all 1M of memory-mapped flash to the firmware,
so the filesystem area starts at the 2M point. This is done to allow more
frozen bytecode to be stored in the 1M of memory-mapped flash. This
requires an esp8266 module with 2M or more of flash to work, so a new board
called GENERIC_1M is added which has the old memory-mapping (but still
changed to use littlefs for the filesystem).
In summary there are now 3 esp8266 board definitions:
- GENERIC_512K: for 512k modules, doesn't have a filesystem.
- GENERIC_1M: for 1M modules, 572k for firmware+frozen code, 396k for
filesystem (littlefs).
- GENERIC: for 2M (or greater) modules, 968k for firmware+frozen code,
1M+ for filesystem (littlefs), FAT driver also included in firmware for
use on, eg, external SD cards.
2020-03-26 07:35:32 -04:00
|
|
|
uos.VfsLfs2.mkfs(bdev)
|
|
|
|
vfs = uos.VfsLfs2(bdev)
|
2020-02-26 23:36:53 -05:00
|
|
|
uos.mount(vfs, "/")
|
2017-01-26 23:16:08 -05:00
|
|
|
with open("boot.py", "w") as f:
|
2020-02-26 23:36:53 -05:00
|
|
|
f.write(
|
|
|
|
"""\
|
2016-04-29 13:11:48 -04:00
|
|
|
# This file is executed on every boot (including wake-boot from deepsleep)
|
2016-08-06 08:27:38 -04:00
|
|
|
#import esp
|
|
|
|
#esp.osdebug(None)
|
2018-05-15 01:13:58 -04:00
|
|
|
import uos, machine
|
2019-01-09 08:53:38 -05:00
|
|
|
#uos.dupterm(None, 1) # disable REPL on UART(0)
|
2016-07-02 12:20:13 -04:00
|
|
|
import gc
|
2016-05-07 13:04:45 -04:00
|
|
|
#import webrepl
|
|
|
|
#webrepl.start()
|
2016-07-02 12:20:13 -04:00
|
|
|
gc.collect()
|
2020-02-26 23:36:53 -05:00
|
|
|
"""
|
|
|
|
)
|
2016-04-29 13:02:59 -04:00
|
|
|
return vfs
|