815485fc1a
- 更新了 devcontainer 和 VSCode 设置,以指定串口和闪存类型。 - 增强了 README 文档,添加了 LVGL 演示界面的详细硬件规格和使用说明。 - 在 lvgl_demo_ui.c 中新增了 LVGL 演示界面实现,展示旋转按钮和弧形图形。 - 将主应用逻辑整合到 main.c 文件中,集成 LVGL 和 LCD 触摸功能。 - 移除已弃用的 station_example_main.c,以简化代码库。 - 更新依赖项,包含 LVGL 和 LCD 触摸组件。
26 lines
543 B
JSON
26 lines
543 B
JSON
{
|
|
"name": "ESP-IDF QEMU",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {
|
|
"terminal.integrated.defaultProfile.linux": "bash",
|
|
"idf.gitPath": "/usr/bin/git",
|
|
"idf.espIdfPath": "/opt/esp/idf",
|
|
"idf.toolsPath": "/opt/esp/tools",
|
|
"idf.pythonBinPath": "/opt/esp/idf/venv/bin/python3",
|
|
"idf.useIDFKConfig": true
|
|
},
|
|
"extensions": [
|
|
"espressif.esp-idf-extension",
|
|
"espressif.esp-idf-web"
|
|
]
|
|
}
|
|
},
|
|
"runArgs": [
|
|
"--privileged",
|
|
"--device=/dev/ttyACM0"
|
|
]
|
|
} |