Skip to content

Commit 22d4c25

Browse files
committed
Update LVGL binding: use it as USER_C_MODULE; add unix-lvgl variant and M5Core2 board; remove ESP32 specific LVGL modules (soft links)
1 parent c767aba commit 22d4c25

33 files changed

+70
-613
lines changed

.gitmodules

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@
1717
[submodule "lib/nrfx"]
1818
path = lib/nrfx
1919
url = https://github.com/NordicSemiconductor/nrfx.git
20-
[submodule "lib/lv_bindings"]
21-
path = lib/lv_bindings
22-
url = https://github.com/lvgl/lv_binding_micropython.git
2320
[submodule "lib/mbedtls"]
2421
path = lib/mbedtls
2522
url = https://github.com/ARMmbed/mbedtls.git
@@ -71,3 +68,6 @@
7168
[submodule "lib/arduino-lib"]
7269
path = lib/arduino-lib
7370
url = https://github.com/arduino/arduino-lib-mpy.git
71+
[submodule "user_modules/lv_binding_micropython"]
72+
path = user_modules/lv_binding_micropython
73+
url = https://github.com/lvgl/lv_binding_micropython.git

lib/lv_bindings

Lines changed: 0 additions & 1 deletion
This file was deleted.

ports/esp32/boards/M5CORE2/manifest.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

ports/esp32/boards/M5CORE2/modules/axp192.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

ports/esp32/boards/M5CORE2/modules/ft6x36.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

ports/esp32/boards/M5CORE2/mpconfigboard.h

Lines changed: 0 additions & 2 deletions
This file was deleted.
File renamed without changes.

ports/esp32/boards/M5CORE2/board.json renamed to ports/esp32/boards/M5STACK_CORE2/board.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,24 @@
77
"BLE",
88
"WiFi",
99
"SPIRAM",
10+
"LCD",
11+
"LED",
1012
"IMU",
1113
"RTC",
1214
"PMU",
1315
"SDCard",
16+
"Button",
17+
"Speaker",
1418
"Microphone",
15-
"USB-C"
19+
"Vibration Motor",
20+
"USB-C"
1621
],
1722
"images": [
1823
"m5core2.jpg"
1924
],
2025
"mcu": "esp32",
2126
"product": "M5Stack Core2",
2227
"thumbnail": "",
23-
"url": "https://m5stack.com/",
28+
"url": "https://shop.m5stack.com/products/m5stack-core2-esp32-iot-development-kit",
2429
"vendor": "M5 Stack"
2530
}
77 KB
Binary file not shown.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include("$(PORT_DIR)/boards/manifest.py")
2+
include("$(MPY_DIR)/user_modules/lv_binding_micropython/ports/esp32")
3+
freeze("./modules")

0 commit comments

Comments
 (0)