The sdkconfig.defaults files were enhanced to test the component against all individual configurations for more granularity, as well as with all combinations to ensure consistency and integrity across all configurations.
16 lines
534 B
Plaintext
16 lines
534 B
Plaintext
# Disable task WDT for tests
|
|
CONFIG_ESP_TASK_WDT_INIT=n
|
|
|
|
# Partition configuration
|
|
CONFIG_PARTITION_TABLE_SINGLE_APP=y
|
|
CONFIG_PARTITION_TABLE_CUSTOM=y
|
|
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions/part_nvs.csv"
|
|
|
|
# Relay Channel Driver Default Configuration for Testing
|
|
# Keep this as short as possible for tests
|
|
CONFIG_RELAY_CHN_OPPOSITE_INERTIA_MS=200
|
|
CONFIG_RELAY_CHN_ENABLE_RUN_LIMIT=y
|
|
CONFIG_RELAY_CHN_RUN_LIMIT_MIN_SEC=1
|
|
CONFIG_RELAY_CHN_ENABLE_TILTING=y
|
|
CONFIG_RELAY_CHN_ENABLE_NVS=y
|
|
CONFIG_RELAY_CHN_NVS_CUSTOM_PARTITION=y |