feat(lvgl): working lvgl now!!!

This commit is contained in:
2024-11-15 14:24:33 +01:00
parent a83535fd1e
commit ef99d64d08
16 changed files with 2548 additions and 0 deletions

View File

@ -0,0 +1,11 @@
# http://esp-idf.readthedocs.io/en/latest/api-guides/partition-tables.html
# This file uses a 3M factory instead of the default 1M
# Espressif ESP32 Partition Table
# Name, Type, SubType, Offset, Size
nvs, data, nvs, 0x9000, 0x6000
phy_init, data, phy, 0xf000, 0x1000
factory, app, factory, 0x10000, 3M
# The size 528k isn't arbitrary - it is the minumim size when
# wear leveling sector size is 4k
app_storage, data, fat, , 528k
1 # http://esp-idf.readthedocs.io/en/latest/api-guides/partition-tables.html
2 # This file uses a 3M factory instead of the default 1M
3 # Espressif ESP32 Partition Table
4 # Name, Type, SubType, Offset, Size
5 nvs, data, nvs, 0x9000, 0x6000
6 phy_init, data, phy, 0xf000, 0x1000
7 factory, app, factory, 0x10000, 3M
8 # The size 528k isn't arbitrary - it is the minumim size when
9 # wear leveling sector size is 4k
10 app_storage, data, fat, , 528k