-
Notifications
You must be signed in to change notification settings - Fork 11
/
boot.py
47 lines (34 loc) · 1.81 KB
/
boot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import machine
import pycom
import time
import gc
###############################################################################
# Disable automatic garbage collection #
###############################################################################
gc.disable()
###############################################################################
# Disable LTE modem #
###############################################################################
if pycom.lte_modem_en_on_boot():
print("Disabling LTE modem.")
pycom.lte_modem_en_on_boot(False)
###############################################################################
# Disable LED heartbeat on boot #
###############################################################################
if pycom.heartbeat_on_boot():
pycom.heartbeat_on_boot(False)
pycom.heartbeat(False)
###############################################################################
# Start of boot.py, yellow LED until it is finished #
###############################################################################
print("Starting boot process...")
pycom.rgbled(0x111100)
###############################################################################
# Disable automatic start of WLan device #
###############################################################################
if not pycom.wifi_on_boot():
pycom.wifi_on_boot(False)
###############################################################################
# Finished boot process #
###############################################################################
print("Boot finished.")