Add feature cuican (#407)

* fix:Modify the README and add Moji images

* fix: Moji LCD initialization configuration.

* fix: DISPLAY_MIRROR_X false >> true

* fix: Moji GPIO conflict

* fix: Moji GPIO conflict

* add-feature-cuican

* update cuican image

* update config.h
This commit is contained in:
MOV
2025-03-26 02:20:30 +08:00
committed by GitHub
parent 1f29fa44c2
commit e486d8e91e
10 changed files with 254 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
# ESP32-S3 编译配置指南
## 基本命令
### 设置目标芯片
```bash
idf.py set-target esp32s3
```
### 打开配置界面:
```bash
idf.py menuconfig
```
### Flash 配置:
```
Serial flasher config -> Flash size -> 8 MB
```
### 分区表配置:
```
Partition Table -> Custom partition CSV file -> partitions_8M.csv
```
### 开发板选择:
```
Xiaozhi Assistant -> Board Type -> Movecall CuiCan 璀璨·AI吊坠
```
### 启用编译优化:
```
Component config → Compiler options → Optimization Level → Optimize for size (-Os)
```
### 编译:
```bash
idf.py build
```