-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/backport_c2_adc_runner_v5.0' into 'release/v5.0'
esp_adc: added esp32c2 adc runners (v5.0) See merge request espressif/esp-idf!20706
- Loading branch information
Showing
5 changed files
with
60 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
components/driver/test_apps/legacy_adc_driver/sdkconfig.ci.esp32c2_xtal26m_release
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CONFIG_IDF_TARGET="esp32c2" | ||
CONFIG_XTAL_FREQ_26=y | ||
|
||
CONFIG_PM_ENABLE=y | ||
CONFIG_FREERTOS_USE_TICKLESS_IDLE=y | ||
CONFIG_COMPILER_OPTIMIZATION_SIZE=y | ||
CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y | ||
CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
components/esp_adc/test_apps/adc/sdkconfig.ci.esp32c2_xtal26m_iram_safe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
CONFIG_IDF_TARGET="esp32c2" | ||
CONFIG_XTAL_FREQ_26=y | ||
|
||
CONFIG_COMPILER_DUMP_RTL_FILES=y | ||
CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM=y | ||
CONFIG_GPTIMER_ISR_IRAM_SAFE=y | ||
CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM=y | ||
CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE=y | ||
CONFIG_COMPILER_OPTIMIZATION_SIZE=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_SILENT=y |
6 changes: 6 additions & 0 deletions
6
components/esp_adc/test_apps/adc/sdkconfig.ci.esp32c2_xtal26m_release
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CONFIG_IDF_TARGET="esp32c2" | ||
CONFIG_XTAL_FREQ_26=y | ||
|
||
CONFIG_COMPILER_OPTIMIZATION_SIZE=y | ||
CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y | ||
CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT=y |