Skip to content

Commit dd45d0d

Browse files
authored
Bump to 2.0.3 (#1241)
* fix c6 compilation error * remove afe preferred core * fix release.py missing board type config * Bump to 2.0.3 * remove duplicated depends
1 parent 916ea39 commit dd45d0d

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# CMakeLists in this exact order for cmake to work correctly
55
cmake_minimum_required(VERSION 3.16)
66

7-
set(PROJECT_VER "2.0.2")
7+
set(PROJECT_VER "2.0.3")
88

99
# Add this line to disable the specific warning
1010
add_compile_options(-Wno-missing-field-initializers)

main/Kconfig.projbuild

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,6 @@ config RECEIVE_CUSTOM_MESSAGE
607607
menu TAIJIPAI_S3_CONFIG
608608
depends on BOARD_TYPE_ESP32S3_Taiji_Pi
609609
choice I2S_TYPE_TAIJIPI_S3
610-
depends on BOARD_TYPE_ESP32S3_Taiji_Pi
611610
prompt "taiji-pi-S3 I2S Type"
612611
default TAIJIPAI_I2S_TYPE_STD
613612
help
@@ -619,7 +618,7 @@ menu TAIJIPAI_S3_CONFIG
619618
endchoice
620619

621620
config I2S_USE_2SLOT
622-
bool "Enable Use 2 Slot"
621+
bool "Enable I2S 2 Slot"
623622
default n
624623
help
625624
启动双声道

main/audio/processors/afe_audio_processor.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ void AfeAudioProcessor::Initialize(AudioCodec* codec, int frame_duration_ms, srm
5353
afe_config->ns_init = false;
5454
}
5555

56-
afe_config->afe_perferred_core = 1;
57-
afe_config->afe_perferred_priority = 1;
5856
afe_config->agc_init = false;
5957
afe_config->memory_alloc_mode = AFE_MEMORY_ALLOC_MORE_PSRAM;
6058

main/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
espressif/esp_lcd_st7796:
1313
version: 1.3.5
1414
rules:
15-
- if: target not in [esp32c3]
15+
- if: target not in [esp32c3, esp32c6]
1616
espressif/esp_lcd_spd2010: ==1.0.2
1717
espressif/esp_io_expander_tca9554: ==2.0.0
1818
espressif/esp_lcd_panel_io_additions: ^1.0.1

scripts/release.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,9 @@ def release(board_type: str, config_filename: str = "config.json", *, filter_nam
164164
continue
165165

166166
# Process sdkconfig_append
167-
sdkconfig_append = build.get("sdkconfig_append", [])
167+
board_type_config = _find_board_config(board_type)
168+
sdkconfig_append = [f"{board_type_config}=y"]
169+
sdkconfig_append.extend(build.get("sdkconfig_append", []))
168170

169171
print("-" * 80)
170172
print(f"name: {name}")

0 commit comments

Comments
 (0)