mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
412b09abf4
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
15 lines
526 B
Plaintext
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
|