Files
xiaozhi-esp32/main/boards/movecall-cuican-esp32s3/README.md
Xiaoxia 83f6f8c703 Switch to 2.0 branch (#1152)
* Adapt boards to v2 partition tables

* fix esp log error

* fix display style

* reset emotion after download assets

* fix compiling

* update assets default url

* Add user only tools

* Add image cache

* smaller cache and buffer, more heap

* use MAIN_EVENT_CLOCK_TICK to avoid audio glitches

* bump to 2.0.0

* fix compiling errors

---------

Co-authored-by: Xiaoxia <terrence.huang@tenclass.com>
2025-09-04 15:41:28 +08:00

44 lines
650 B
Markdown

# 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/v2/8m.csv
```
### 开发板选择:
```
Xiaozhi Assistant -> Board Type -> Movecall CuiCan 璀璨·AI吊坠
```
### 启用编译优化:
```
Component config → Compiler options → Optimization Level → Optimize for size (-Os)
```
### 编译:
```bash
idf.py build
```