We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ffc7d3 commit 197c2c9Copy full SHA for 197c2c9
m5stack/modules/startup/__init__.py
@@ -69,7 +69,12 @@ def startup(boot_opt, timeout: int = 60) -> None:
69
70
pin4 = Pin(4, Pin.OUT)
71
pin4.value(1)
72
- if board_id in (M5.BOARD.M5AtomS3U, M5.BOARD.M5AtomS3Lite, M5.BOARD.M5StampS3):
+ if board_id in (
73
+ M5.BOARD.M5AtomS3U,
74
+ M5.BOARD.M5AtomS3Lite,
75
+ M5.BOARD.M5StampS3,
76
+ M5.BOARD.M5Capsule
77
+ ):
78
# M5AtomS3U may fail to enter the AUTODETECT process, which will cause
79
# m5things to fail to obtain the board id.
80
nvs = esp32.NVS("M5GFX")
0 commit comments