Skip to content

Commit ff664c8

Browse files
committed
整理开机logo
1 parent 9bc044a commit ff664c8

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

port/boards/mpython/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ void mp_task(void *pvParameter) {
173173
ESP_LOGE("system", "%s", msg_iic_failed);
174174
hw_init_flags |= 0x0001;
175175
} else {
176-
// oled_drawImg(img_00030);
177-
oled_drawImg(img_InnovaBit);
176+
oled_drawImg(img_mpython);
177+
// oled_drawImg(img_InnovaBit);
178178
oled_show();
179179
oled_deinit();
180180
}

port/boards/mpython/modules/_boot.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
vfs = inisetup.setup()
1919

2020
# 硬件复位标志
21-
for count in range(3):
22-
print("=$%#=")
23-
time.sleep_ms(150)
21+
# for count in range(3):
22+
# print("=$%#=")
23+
# time.sleep_ms(150)
2424
gc.collect()

port/drivers/startup/00030.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <stdint.h>
22

3-
const uint8_t img_00030[] = {
3+
const uint8_t img_mpython[] = {
44
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
55
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
66
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

port/drivers/startup/startup.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
#define __ICONS__H
33
#include <stdint.h>
44

5-
extern uint8_t img_00030[];
5+
extern uint8_t img_mpython[];
66
extern uint8_t img_InnovaBit[];
77
#endif

0 commit comments

Comments
 (0)