Phase 10 数字人模式 LVGL → EAF 切换所需的两个新组件: - espressif2022/esp_emote_gfx v3.0.5 轻量软件渲染 UI 框架(gfx_emote_init/gfx_disp_add/gfx_anim/gfx_label) - espressif/esp_mmap_assets v2.0.0 资源打包加载(虽然 use_fs 模式 buggy,我们绕过它直接 fopen, 但保留组件以便后续 mmap partition 模式启用) gfx_touch.c 含我们的 local shim 兼容 esp_lcd_touch v1.1.2 旧 API (已在前一个 commit 31982ba 中说明)。 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
13 lines
455 B
Plaintext
13 lines
455 B
Plaintext
# Kconfig file for MMAP
|
|
|
|
menu "mmap file support format"
|
|
config MMAP_FILE_NAME_LENGTH
|
|
int "Max file name length (Deprecated: for legacy fallback only)"
|
|
default 16
|
|
range 1 32
|
|
help
|
|
This parameter is DEPRECATED.
|
|
New version of mmap assets (.bin) store name length in the binary header.
|
|
This value is ONLY used when a legacy binary (v0) is detected to determine the name stride.
|
|
endmenu
|