diff --git a/components/driver/test_apps/rmt/sdkconfig.ci.iram_safe b/components/driver/test_apps/rmt/sdkconfig.ci.iram_safe index 9621665f0d..620e832479 100644 --- a/components/driver/test_apps/rmt/sdkconfig.ci.iram_safe +++ b/components/driver/test_apps/rmt/sdkconfig.ci.iram_safe @@ -4,4 +4,4 @@ CONFIG_RMT_ISR_IRAM_SAFE=y # silent the error check, as the error string are stored in rodata, causing RTL check failure CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT=y CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT=y -CONFIG_HAL_ASSERTION_SILIENT=y +CONFIG_HAL_ASSERTION_SILENT=y diff --git a/components/hal/Kconfig b/components/hal/Kconfig index 0e6b0bc2c1..8b5678d790 100644 --- a/components/hal/Kconfig +++ b/components/hal/Kconfig @@ -16,7 +16,7 @@ menu "Hardware Abstraction Layer (HAL) and Low Level (LL)" config HAL_ASSERTION_DISABLE bool "Disabled" depends on COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 0 - config HAL_ASSERTION_SILIENT + config HAL_ASSERTION_SILENT bool "Silent" depends on COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 1 config HAL_ASSERTION_ENABLE @@ -28,7 +28,7 @@ menu "Hardware Abstraction Layer (HAL) and Low Level (LL)" int default COMPILER_OPTIMIZATION_ASSERTION_LEVEL if HAL_ASSERTION_EQUALS_SYSTEM default 0 if HAL_ASSERTION_DISABLE - default 1 if HAL_ASSERTION_SILIENT + default 1 if HAL_ASSERTION_SILENT default 2 if HAL_ASSERTION_ENABLE choice HAL_LOG_LEVEL diff --git a/components/hal/sdkconfig.rename b/components/hal/sdkconfig.rename new file mode 100644 index 0000000000..62a599c184 --- /dev/null +++ b/components/hal/sdkconfig.rename @@ -0,0 +1,4 @@ +# sdkconfig replacement configurations for deprecated options formatted as +# CONFIG_DEPRECATED_OPTION CONFIG_NEW_OPTION + +CONFIG_HAL_ASSERTION_SILIENT CONFIG_HAL_ASSERTION_SILENT