* add esp32-s3-touch-lcd-4.3c Add clang-format (#1694) -文件.clang-format配置基于Google C++风格指南,并做了适当调整 1.使用4空格缩进 2.行宽限制为100字符 3.采用风格的大括号和空格规则 -编写code_style.m 1.针对不同开发平台(windows/Linux/macOs) 2.举例进行整体项目格式化(建议owner择机进行) 3.举例单文件格式化、格式检查 4.举例如何跳过特定代码段的格式化(待补充指定跳过文件格式化) 5.IDE集成说明 Co-authored-by: CaptainBarker <1350989027@qq.com> add 征辰科技 AI camera wifi board and 4G board(26 Resubmit) (#1689) add esp32-s3-touch-lcd-4.3c * add esp32-s3-touch-lcd-4.3c * add esp32-s3-touch-lcd-4.3c * add esp32-s3-touch-lcd-4.3c
44 lines
857 B
Markdown
Executable File
44 lines
857 B
Markdown
Executable File
# 使用说明
|
|
|
|
* [ESP32-S3-Touch-LCD-4.3C docs](https://www.waveshare.com/esp32-s3-touch-lcd-4.3c.htm)
|
|
|
|
## 快速体验
|
|
|
|
下载编译好的 [固件](https://files.waveshare.com/wiki/ESP32-S3-Touch-LCD-4.3C/ESP32-S3-Touch-LCD-4.3C-Xiaozhi.bin)
|
|
|
|
```shell
|
|
esptool.py --chip esp32s3 -p /dev/ttyACM0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 16MB 0x00 ESP32-S3-Touch-LCD-4.3C-Xiaozhi.bin
|
|
```
|
|
|
|
## 基础使用
|
|
|
|
* idf version: v5.5-dev
|
|
|
|
1. 设置编译目标为 esp32s3
|
|
|
|
```shell
|
|
idf.py set-target esp32s3
|
|
```
|
|
|
|
2. 修改配置
|
|
|
|
```shell
|
|
cp main/boards/waveshare-s3-touch-lcd-4.3c/sdkconfig.4_3c sdkconfig
|
|
```
|
|
|
|
3. 编译烧录程序
|
|
|
|
```shell
|
|
idf.py build flash monitor
|
|
```
|
|
|
|
## log
|
|
|
|
@2025/05/17 测试问题
|
|
|
|
1. 返回应用界面时,需要存在此分区,否则无效
|
|
2.
|
|
3.
|
|
|
|
## TODO
|