Skip to content

Commit cba43a0

Browse files
committed
temp
1 parent 43dd6b1 commit cba43a0

File tree

12 files changed

+437
-8
lines changed

12 files changed

+437
-8
lines changed

m5stack/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ boards := \
2525
M5STACK_Basic_4MB:basic \
2626
M5STACK_Capsule:capsule \
2727
M5STACK_Dial:dial \
28-
M5STACK_Paper:paper
28+
M5STACK_CoreInk:coreink
2929

3030
define find_board
3131
$(if $(filter $(1):%,$(boards)),$(word 2,$(subst :, ,$(filter $(1):%,$(boards)))),none)
@@ -47,7 +47,7 @@ BOARD_TYPE_DEF := \
4747
basic \
4848
capsule \
4949
dial \
50-
paper
50+
coreink
5151

5252
# Select the board type to build, default is None
5353
# This value affects which folder in the "./fs/system/" directory is pack into "fs-system.bin"
@@ -59,7 +59,7 @@ else
5959
$(error Board type $(BOARD_TYPE) does not exist in list [$(BOARD_TYPE_DEF)])
6060
endif
6161

62-
TINY_BOARD_TYPE_DEF = M5STACK_StickC_PLUS M5STACK_Basic_4MB
62+
TINY_BOARD_TYPE_DEF = M5STACK_StickC_PLUS M5STACK_Basic_4MB M5STACK_CoreInk
6363
ifneq ($(filter $(BOARD),$(TINY_BOARD_TYPE_DEF)),)
6464
TINY_FLAG ?= 1
6565
else

m5stack/fs/system/coreink/Config.bmp

5.53 KB
Binary file not shown.

m5stack/fs/system/coreink/Flow.bmp

5.53 KB
Binary file not shown.

m5stack/fs/system/coreink/Startup.bmp

5.53 KB
Binary file not shown.

m5stack/fs/system/coreink/server.bmp

158 Bytes
Binary file not shown.
262 Bytes
Binary file not shown.

m5stack/fs/system/coreink/wifi.bmp

158 Bytes
Binary file not shown.
158 Bytes
Binary file not shown.

m5stack/modules/startup/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ def startup(boot_opt, timeout: int = 60) -> None:
154154
elif board_id == M5.BOARD.M5StackCoreInk:
155155
from .coreink import CoreInk_Startup
156156

157-
coreink = CoreInk_Startup()
158-
coreink.startup(ssid, pswd, timeout)
157+
# coreink = CoreInk_Startup()
158+
# coreink.startup(ssid, pswd, timeout)
159159

160160
# Only connect to network, not show any menu
161161
elif boot_opt is BOOT_OPT_NETWORK:

0 commit comments

Comments
 (0)