Skip to content

Commit a385713

Browse files
committed
boards: Fixed the issue of failing to display jpg.
1. Fixed the issue of failing to display jpg. 2. Increase the refresh rate from 5MHZ to 20MHZ. Signed-off-by: lbuque <lbuque@163.com>
1 parent 81c8c85 commit a385713

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

m5stack/boards/M5STACK_PaperS3/mpconfigboard.cmake

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,17 @@ set(BOARD_ID 19)
77
set(M5_EPDIY_ENABLE TRUE)
88

99
set(SDKCONFIG_DEFAULTS
10-
./boards/M5STACK_PaperS3/sdkconfig.board
1110
./boards/sdkconfig.base
11+
${SDKCONFIG_IDF_VERSION_SPECIFIC}
1212
./boards/sdkconfig.240mhz
1313
./boards/sdkconfig.disable_iram
1414
./boards/sdkconfig.ble
1515
./boards/sdkconfig.usb
16+
./boards/sdkconfig.usb_cdc
1617
./boards/sdkconfig.flash_16mb
1718
./boards/sdkconfig.spiram_oct
19+
./boards/sdkconfig.freertos
20+
./boards/M5STACK_PaperS3/sdkconfig.board
1821
)
1922

2023
# If not enable LVGL, ignore this...

m5stack/boards/M5STACK_PaperS3/sdkconfig.board

+9-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
#
33
# SPDX-License-Identifier: MIT
44

5-
CONFIG_FLASHMODE_DIO=y # QIO mode has some problem when mount fs
6-
CONFIG_ESPTOOLPY_FLASHMODE_DIO=y
7-
CONFIG_ESPTOOLPY_FLASHMODE="dio"
5+
CONFIG_FLASHMODE_QIO=y
6+
CONFIG_ESPTOOLPY_FLASHMODE_QIO=y
7+
CONFIG_ESPTOOLPY_FLASHMODE="qio"
88
CONFIG_ESPTOOLPY_FLASHFREQ_80M=y
99
CONFIG_ESPTOOLPY_FLASHSIZE_DETECT=y
1010
CONFIG_ESPTOOLPY_AFTER_NORESET=y
@@ -18,3 +18,9 @@ CONFIG_ESP32S3_SPIRAM_SUPPORT=y
1818
CONFIG_SPIRAM_MODE_QUAD=
1919
CONFIG_SPIRAM_MODE_OCT=y
2020
CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY=y
21+
CONFIG_SPIRAM_SPEED_80M=y
22+
CONFIG_SPIRAM_SPEED=80
23+
24+
# epdiy
25+
CONFIG_ESP32S3_DATA_CACHE_LINE_64B=y
26+
CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE=64

m5stack/modules/startup/paper/apps/dev.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,14 @@ def on_view(self):
8181
"XXABC",
8282
89,
8383
747,
84-
w=110,
85-
h=60,
84+
w=360,
85+
h=50,
8686
fg_color=0x000000,
8787
bg_color=0xE3E3E3,
8888
font=M5.Lcd.FONTS.DejaVu40,
8989
parent=self._lcd,
9090
)
91+
self._account_label.set_long_mode(self._account_label.LONG_DOT)
9192
self._account_label.set_text(self._account_text)
9293

9394
self._avatar_img = widgets.Image(use_sprite=False, parent=self._lcd)

0 commit comments

Comments
 (0)