1. 支持 M5Stack Atom Matrix + ES8311 + NS4150B (#105)

2. 支持 ESP32 4M 的设备,修订 NoAudioCodec 兼容 ESP32
This commit is contained in:
ooxxU
2025-01-24 02:55:03 +08:00
committed by GitHub
parent 7335362bc1
commit 2e40ad0e8a
7 changed files with 252 additions and 17 deletions

View File

@@ -0,0 +1,37 @@
# 编译配置命令
**配置编译目标为 ESP32**
```bash
idf.py set-target esp32s3
```
**打开 menuconfig**
```bash
idf.py menuconfig
```
**选择板子:**
```
Xiaozhi Assistant -> Board Type -> AtomMatrix + Echo Base
```
**修改 flash 大小:**
```
Serial flasher config -> Flash size -> 4 MB
```
**修改分区表:**
```
Partition Table -> Custom partition CSV file -> partitions_4M.csv
```
**编译:**
```bash
idf.py build
```