Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions example/multimedia/lvgl/ezip/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,11 @@ set_image A:/example.ezip file
# 从SD卡加载(LVGL V8)
set_image /sdcard/image.ezip dsc sram

# 从SD卡加载(LVGL V9,注意需要 A: 前缀)
set_image A:/sdcard/image.ezip dsc sram
# 从SD卡预先加载到内存(LVGL V9 不需要A: 前缀)
set_image /sdcard/image.ezip dsc sram

# 从SD卡直接加载(LVGL V9 注意需要 A: 前缀)
set_image A:/sdcard/image.ezip file
```

## API说明
Expand Down
7 changes: 5 additions & 2 deletions example/multimedia/lvgl/ezip/README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,11 @@ set_image A:/example.ezip file
# Load from SD card (LVGL V8)
set_image /sdcard/image.ezip dsc sram

# Load from SD card (LVGL V9, note the A: prefix required)
set_image A:/sdcard/image.ezip dsc sram
# Preload from the SD card to the sram (LVGL V9, note: A: prefix is not required)
set_image /sdcard/image.ezip dsc sram

# Load from SD card (LVGL V9, note: A: prefix required)
set_image A:/sdcard/image.ezip dsc file
```

## API Reference
Expand Down
7 changes: 5 additions & 2 deletions example/multimedia/lvgl/ezip_v9/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,11 @@ set_image A:/example.ezip file
# 从SD卡加载(LVGL V8)
set_image /sdcard/image.ezip dsc sram

# 从SD卡加载(LVGL V9,注意需要 A: 前缀)
set_image A:/sdcard/image.ezip dsc sram
# 从SD卡预先加载到内存(LVGL V9 不需要A: 前缀)
set_image /sdcard/image.ezip dsc sram

# 从SD卡直接加载(LVGL V9 注意需要 A: 前缀)
set_image A:/sdcard/image.ezip file
```

## API说明
Expand Down
5 changes: 4 additions & 1 deletion example/multimedia/lvgl/ezip_v9/README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,11 @@ set_image A:/example.ezip file
# Load from SD card (LVGL V8)
set_image /sdcard/image.ezip dsc sram

# Preload from the SD card to the sram (LVGL V9, note: A: prefix is not required)
set_image /sdcard/image.ezip dsc sram

# Load from SD card (LVGL V9, note: A: prefix required)
set_image A:/sdcard/image.ezip dsc sram
set_image A:/sdcard/image.ezip dsc file
```

## API Description
Expand Down