Skip to content

Commit 8a77d9a

Browse files
committed
3.28
1 parent b89709d commit 8a77d9a

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

examples/usercmodule/BSP/AUDIO/modaudio.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@ static mp_obj_t esp_audio_ai_start(void)
161161
afe_data = afe_handle->create_from_config(&afe_config);
162162

163163
task_flag = 1;
164-
xTaskCreatePinnedToCore(&detect_Task, "detect", 8 * 1024, (void *)afe_data, 1, NULL, 1);
165-
xTaskCreatePinnedToCore(&feed_Task, "feed", 8 * 1024, (void *)afe_data, 1, NULL, 0);
164+
xTaskCreatePinnedToCore(&detect_Task, "detect", 3 * 1024, (void *)afe_data, 1, NULL, 1);
165+
xTaskCreatePinnedToCore(&feed_Task, "feed", 3 * 1024, (void *)afe_data, 1, NULL, 0);
166166
return mp_const_true;
167167
}
168168
static MP_DEFINE_CONST_FUN_OBJ_0(audio_ai_start, esp_audio_ai_start);

ports/esp32/boards/ESP32_GENERIC_S3/sdkconfig.board

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ CONFIG_AFE_INTERFACE_V1=y
4343

4444
CONFIG_USE_WAKENET=y
4545

46-
CONFIG_SR_WN_WN9_HILEXIN=y
46+
CONFIG_SR_WN_WN9_XIAOAITONGXUE=y
4747

4848
CONFIG_USE_MULTINET=y
4949

ports/esp32/partitions-32MiB.csv

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Notes: the offset of the partition table itself is set in
22
# $IDF_PATH/components/partition_table/Kconfig.projbuild.
3-
# Name, Type, SubType, Offset, Size, Flags
4-
nvs, data, nvs, 0x9000, 0x6000,
5-
phy_init, data, phy, 0xf000, 0x1000,
6-
factory, app, factory, 0x10000, 0x1F0000,
7-
vfs, data, fat, 0x200000, 0x1E00000,
3+
# Name, Type, SubType, Offset, Size, Flags
4+
nvs, data, nvs, 0x9000, 0x6000
5+
phy_init, data, phy, 0xf000, 0x1000
6+
factory, app, factory, 0x10000, 0x1000000
7+
model, data, spiffs, 0x1010000, 0x400000
8+
fr, data, undefined, 0x1410000, 0x10000
9+
vfs, data, fat, 0x1420000, 0xa00000

0 commit comments

Comments
 (0)