Skip to content

Commit 5da8375

Browse files
增加新版太极小派适配 (78#902)
* Add Guition Boards * Add Product Links * 适配新版太极派 * 适配新版太极派
1 parent cec0b5b commit 5da8375

File tree

4 files changed

+448
-1
lines changed

4 files changed

+448
-1
lines changed

main/Kconfig.projbuild

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -436,4 +436,16 @@ choice IOT_PROTOCOL
436436
bool "Xiaozhi IoT 1.0 (Deprecated)"
437437
endchoice
438438

439+
choice I2S_TYPE_TAIJIPI_S3
440+
depends on BOARD_TYPE_ESP32S3_Taiji_Pi
441+
prompt "taiji-pi-S3 I2S Type"
442+
default TAIJIPAI_I2S_TYPE_STD
443+
help
444+
I2S 类型选择
445+
config TAIJIPAI_I2S_TYPE_STD
446+
bool "I2S Type STD"
447+
config TAIJIPAI_I2S_TYPE_PDM
448+
bool "I2S Type PDM"
449+
endchoice
450+
439451
endmenu

main/boards/taiji-pi-s3/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# 由于原来的麦克风型号停产,2025年7月之后的太极派(JC3636W518)更换了麦克风,并且更换了屏幕玻璃,所以在产品标签上批次号大于2528的用户请选择I2S Type PDM,
2+
13
# 编译配置命令
24

35
**配置编译目标为 ESP32S3:**
@@ -16,6 +18,15 @@ idf.py menuconfig
1618

1719
```
1820
Xiaozhi Assistant -> Board Type -> 太极小派esp32s3
21+
22+
Xiaozhi Assistant -> taiji-pi-S3 I2S Type -> I2S Type PDM
23+
```
24+
25+
**修改PSRAM配置:**
26+
27+
```
28+
component config -> ESP PSRAM -> SPI RAM config -> Try to allocate memories of WiFi and LWIP in SPIRAM firstly. If failed, allocate internal memory
29+
1930
```
2031

2132
**编译:**

main/boards/taiji-pi-s3/config.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
"builds": [
44
{
55
"name": "taiji-pi-s3",
6-
"sdkconfig_append": []
6+
"sdkconfig_append": [
7+
"CONFIG_SPIRAM_TRY_ALLOCATE_WIFI_LWIP=y"
8+
]
79
}
810
]
911
}

0 commit comments

Comments
 (0)