forked from xiaozhi/xiaozhi-esp32
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:
@@ -4,7 +4,7 @@
|
|||||||
# CMakeLists in this exact order for cmake to work correctly
|
# CMakeLists in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.16)
|
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 this line to disable the specific warning
|
||||||
add_compile_options(-Wno-missing-field-initializers)
|
add_compile_options(-Wno-missing-field-initializers)
|
||||||
|
|||||||
@@ -607,7 +607,6 @@ config RECEIVE_CUSTOM_MESSAGE
|
|||||||
menu TAIJIPAI_S3_CONFIG
|
menu TAIJIPAI_S3_CONFIG
|
||||||
depends on BOARD_TYPE_ESP32S3_Taiji_Pi
|
depends on BOARD_TYPE_ESP32S3_Taiji_Pi
|
||||||
choice I2S_TYPE_TAIJIPI_S3
|
choice I2S_TYPE_TAIJIPI_S3
|
||||||
depends on BOARD_TYPE_ESP32S3_Taiji_Pi
|
|
||||||
prompt "taiji-pi-S3 I2S Type"
|
prompt "taiji-pi-S3 I2S Type"
|
||||||
default TAIJIPAI_I2S_TYPE_STD
|
default TAIJIPAI_I2S_TYPE_STD
|
||||||
help
|
help
|
||||||
@@ -619,7 +618,7 @@ menu TAIJIPAI_S3_CONFIG
|
|||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
config I2S_USE_2SLOT
|
config I2S_USE_2SLOT
|
||||||
bool "Enable Use 2 Slot"
|
bool "Enable I2S 2 Slot"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
启动双声道
|
启动双声道
|
||||||
|
|||||||
@@ -53,8 +53,6 @@ void AfeAudioProcessor::Initialize(AudioCodec* codec, int frame_duration_ms, srm
|
|||||||
afe_config->ns_init = false;
|
afe_config->ns_init = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
afe_config->afe_perferred_core = 1;
|
|
||||||
afe_config->afe_perferred_priority = 1;
|
|
||||||
afe_config->agc_init = false;
|
afe_config->agc_init = false;
|
||||||
afe_config->memory_alloc_mode = AFE_MEMORY_ALLOC_MORE_PSRAM;
|
afe_config->memory_alloc_mode = AFE_MEMORY_ALLOC_MORE_PSRAM;
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ dependencies:
|
|||||||
espressif/esp_lcd_st7796:
|
espressif/esp_lcd_st7796:
|
||||||
version: 1.3.5
|
version: 1.3.5
|
||||||
rules:
|
rules:
|
||||||
- if: target not in [esp32c3]
|
- if: target not in [esp32c3, esp32c6]
|
||||||
espressif/esp_lcd_spd2010: ==1.0.2
|
espressif/esp_lcd_spd2010: ==1.0.2
|
||||||
espressif/esp_io_expander_tca9554: ==2.0.0
|
espressif/esp_io_expander_tca9554: ==2.0.0
|
||||||
espressif/esp_lcd_panel_io_additions: ^1.0.1
|
espressif/esp_lcd_panel_io_additions: ^1.0.1
|
||||||
|
|||||||
@@ -164,7 +164,9 @@ def release(board_type: str, config_filename: str = "config.json", *, filter_nam
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
# Process sdkconfig_append
|
# 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("-" * 80)
|
||||||
print(f"name: {name}")
|
print(f"name: {name}")
|
||||||
|
|||||||
Reference in New Issue
Block a user