- 新增display_module.c实现LVGL显示功能,包括标签创建和定时刷新 - 在CMakeLists.txt中添加display_module.c到应用源文件列表 - 在app.overlay中配置显示设备选择和SPI接口使能 - 增加DISPLAY、MIPI_DBI、ST7789V、LVGL等相关配置选项 - 调整pm_static.yml中的应用分区大小以适应新的固件尺寸 - 禁用MCUBOOT和MCUMGR相关配置以节省空间
34 lines
527 B
YAML
34 lines
527 B
YAML
mcuboot:
|
|
address: 0x0
|
|
end_address: 0xc000
|
|
region: flash_primary
|
|
size: 0xc000
|
|
|
|
mcuboot_pad:
|
|
address: 0xc000
|
|
end_address: 0xc200
|
|
region: flash_primary
|
|
size: 0x200
|
|
|
|
app:
|
|
address: 0xc200
|
|
end_address: 0xf8000
|
|
region: flash_primary
|
|
size: 0xebe00
|
|
|
|
mcuboot_primary:
|
|
address: 0xc000
|
|
end_address: 0xf8000
|
|
orig_span: &id001
|
|
- mcuboot_pad
|
|
- app
|
|
region: flash_primary
|
|
size: 0xec000
|
|
span: *id001
|
|
|
|
settings_storage:
|
|
address: 0xf8000
|
|
end_address: 0x100000
|
|
region: flash_primary
|
|
size: 0x8000
|