1# Copyright (c) 2024 Bjarki Arge Andreasen
2# SPDX-License-Identifier: Apache-2.0
3
4source "Kconfig.zephyr"
5
6if RTC_ALARM
7
8config TEST_RTC_ALARM_TIME_MASK
9	int "Alarm fields to set"
10	default 6
11	range 1 511
12	help
13	  Set the RTC_ALARM_TIME_MASK_ bitmask to use when setting
14	  RTC alarms during testing.
15
16endif # RTC_ALARM
17