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
This commit is contained in:
Xiaoxia
2025-09-26 08:52:43 +08:00
committed by GitHub
parent 916ea39fad
commit dd45d0de26
5 changed files with 6 additions and 7 deletions

View File

@@ -4,7 +4,7 @@
# CMakeLists in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.16)
set(PROJECT_VER "2.0.2")
set(PROJECT_VER "2.0.3")
# Add this line to disable the specific warning
add_compile_options(-Wno-missing-field-initializers)

View File

@@ -607,7 +607,6 @@ config RECEIVE_CUSTOM_MESSAGE
menu TAIJIPAI_S3_CONFIG
depends on BOARD_TYPE_ESP32S3_Taiji_Pi
choice I2S_TYPE_TAIJIPI_S3
depends on BOARD_TYPE_ESP32S3_Taiji_Pi
prompt "taiji-pi-S3 I2S Type"
default TAIJIPAI_I2S_TYPE_STD
help
@@ -619,7 +618,7 @@ menu TAIJIPAI_S3_CONFIG
endchoice
config I2S_USE_2SLOT
bool "Enable Use 2 Slot"
bool "Enable I2S 2 Slot"
default n
help
启动双声道

View File

@@ -53,8 +53,6 @@ void AfeAudioProcessor::Initialize(AudioCodec* codec, int frame_duration_ms, srm
afe_config->ns_init = false;
}
afe_config->afe_perferred_core = 1;
afe_config->afe_perferred_priority = 1;
afe_config->agc_init = false;
afe_config->memory_alloc_mode = AFE_MEMORY_ALLOC_MORE_PSRAM;

View File

@@ -12,7 +12,7 @@ dependencies:
espressif/esp_lcd_st7796:
version: 1.3.5
rules:
- if: target not in [esp32c3]
- if: target not in [esp32c3, esp32c6]
espressif/esp_lcd_spd2010: ==1.0.2
espressif/esp_io_expander_tca9554: ==2.0.0
espressif/esp_lcd_panel_io_additions: ^1.0.1

View File

@@ -164,7 +164,9 @@ def release(board_type: str, config_filename: str = "config.json", *, filter_nam
continue
# Process sdkconfig_append
sdkconfig_append = build.get("sdkconfig_append", [])
board_type_config = _find_board_config(board_type)
sdkconfig_append = [f"{board_type_config}=y"]
sdkconfig_append.extend(build.get("sdkconfig_append", []))
print("-" * 80)
print(f"name: {name}")