mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-14 16:23:57 +00:00
freertos: Add test app sdkconfig
This commit adds the sdkconfig files for the FreeRTOS test app. These configurations were dervied from the various legacy unit test app's config files that included the FreeRTOS component. This commit tries to keep a 1 to 1 config parity with the legacy test app. Meaning, if FreeRTOS test were run on a particular target with a particular config, that config will be represented in one of the test app's sdkconfig.ci.XXX files. However, the following configurations were removed for FreeRTOS tests: - The "freertos_flash" option was removed due to redudancy (already tested in freertos_options)
This commit is contained in:
12
components/freertos/test_apps/freertos/sdkconfig.ci.psram
Normal file
12
components/freertos/test_apps/freertos/sdkconfig.ci.psram
Normal file
@@ -0,0 +1,12 @@
|
||||
# Test configuration for using FreeRTOS with PSRAM enabled. Only tested on the ESP32
|
||||
|
||||
CONFIG_IDF_TARGET="esp32"
|
||||
|
||||
# Enable SPIRAM
|
||||
CONFIG_SPIRAM=y
|
||||
CONFIG_SPIRAM_OCCUPY_NO_HOST=y
|
||||
|
||||
# Disable encrypted flash reads/writes to save IRAM in this build configuration
|
||||
CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE=n
|
||||
CONFIG_SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY=y
|
||||
CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY=y
|
Reference in New Issue
Block a user