2022-08-19 08:58:37 -04:00
|
|
|
import os
|
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 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():
|
2022-08-19 08:58:37 -04:00
|
|
|
import binascii
|
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)
|
2022-08-19 08:58:37 -04:00
|
|
|
ssid = b"MicroPython-%s" % binascii.hexlify(ap_if.config("mac")[-3:])
|
2022-06-04 06:29:56 -04:00
|
|
|
ap_if.config(ssid=ssid, security=network.AUTH_WPA_WPA2_PSK, key=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:
|
|
|
|
if b != 0xFF:
|
|
|
|
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:
|
|
|
|
print(
|
|
|
|
"""\
|
2021-02-08 18:42:19 -05:00
|
|
|
The filesystem starting at sector %d with size %d sectors looks corrupt.
|
|
|
|
You may want to make a flash snapshot and try to recover it. Otherwise,
|
2022-08-19 08:58:37 -04:00
|
|
|
format it with os.VfsLfs2.mkfs(bdev), or completely erase the flash and
|
2021-02-08 18:42:19 -05:00
|
|
|
reprogram MicroPython.
|
2017-01-02 10:52:35 -05:00
|
|
|
"""
|
2021-02-08 18:42:19 -05:00
|
|
|
% (bdev.start_sec, bdev.blocks)
|
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
|
|
|
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()
|
2022-08-19 08:58:37 -04:00
|
|
|
os.VfsLfs2.mkfs(bdev)
|
|
|
|
vfs = os.VfsLfs2(bdev)
|
|
|
|
os.mount(vfs, "/")
|
2017-01-26 23:16:08 -05:00
|
|
|
with open("boot.py", "w") as f:
|
2016-04-29 13:11:48 -04:00
|
|
|
f.write(
|
|
|
|
"""\
|
|
|
|
# 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)
|
2022-08-19 08:58:37 -04:00
|
|
|
import os, machine
|
|
|
|
#os.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()
|
2016-04-29 13:11:48 -04:00
|
|
|
"""
|
|
|
|
)
|
2016-04-29 13:02:59 -04:00
|
|
|
return vfs
|