esp-idf/components/esp_pm/test_apps/esp_pm/sdkconfig.ci.limits
Darian Leung 412b09abf4 esp_pm: Migrate unit tests to test app
This commit migrates the esp_pm unit tests from the legacy unit test to a
stand alone test app. The following CI configurations are provided

- Default: Automatic light sleep with mostly default configurations
- Options: Enables all of the optional esp_pm features
- Limits: Limit tests esp_pm
2023-01-10 15:43:33 +08:00

15 lines
526 B
Plaintext

# Test configuration for limit testing esp_pm (i.e., maximizing various parameters such as speed, frequency etc)
# Limit test esp_pm auto light sleep logic with faster ticks and faster code
CONFIG_FREERTOS_HZ=1000
CONFIG_COMPILER_OPTIMIZATION_PERF=y
# Minimize the automatic light sleep entry threshold
CONFIG_FREERTOS_IDLE_TIME_BEFORE_SLEEP=2
# Enable PM options for automatic sleeping and DFS
CONFIG_PM_DFS_INIT_AUTO=y
CONFIG_PM_SLP_DISABLE_GPIO=y
# Limit test PM to see if it can XIP from flash
CONFIG_PM_SLP_IRAM_OPT=n