zephyr/tests/drivers/timer/nrf_rtc_timer/prj.conf
Alberto Escolar Piedras 90fec53381 tests nrf_rtc_timer: Avoid failures w NRF53_SYNC_RTC enabled
This test assumes it can use all configured
NRF_RTC_TIMER_USER_CHAN_COUNT,
But the sync RTC code uses one while it synchronizes.
Let's just disable it the sync rtc.

This fixes an issue where the test fails for a simulated
nrf5340.

Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
2023-11-02 14:35:03 +01:00

14 lines
405 B
Plaintext

CONFIG_ZTEST=y
CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT=2
CONFIG_SYS_CLOCK_TICKS_PER_SEC=32768
# This test assumes it can use all configured NRF_RTC_TIMER_USER_CHAN_COUNT
# But the sync RTC code uses one while it synchronizes. Let's just disable it.
CONFIG_NRF53_SYNC_RTC=n
# Debug build
# CONFIG_NO_OPTIMIZATIONS=y
# CONFIG_ZTEST_STACK_SIZE=2048
# CONFIG_MAIN_STACK_SIZE=2048
# CONFIG_IDLE_STACK_SIZE=1024