mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ab89234040
Some periph_rtt implementations do not provide `rtt_set_counter()`. This adds `periph_rtt_set_counter` as feature to allow testing for its availability. The feature is provided at CPU level if periph_rtt is provided by the board for all CPUs implementing `rtt_set_counter()`.
37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
# Copyright (c) 2020 HAW Hamburg
|
|
#
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
# directory for more details.
|
|
#
|
|
|
|
config CPU_COMMON_SAM0
|
|
bool
|
|
select HAS_PERIPH_CPUID
|
|
select HAS_PERIPH_FLASHPAGE
|
|
select HAS_PERIPH_FLASHPAGE_PAGEWISE
|
|
select HAS_PERIPH_FLASHPAGE_RWEE
|
|
select HAS_PERIPH_GPIO
|
|
select HAS_PERIPH_GPIO_IRQ
|
|
select HAS_PERIPH_I2C_RECONFIGURE
|
|
select HAS_PERIPH_RTT_SET_COUNTER
|
|
select HAS_PERIPH_SPI_RECONFIGURE
|
|
select HAS_PERIPH_TIMER_PERIODIC
|
|
select HAS_PERIPH_UART_MODECFG
|
|
select HAS_PERIPH_UART_NONBLOCKING
|
|
select HAS_PERIPH_UART_RECONFIGURE
|
|
select HAS_PERIPH_WDT
|
|
select HAS_PERIPH_WDT_CB
|
|
select HAS_PERIPH_WDT_WARNING_PERIOD
|
|
|
|
if CPU_COMMON_SAM0
|
|
|
|
rsource "periph/Kconfig"
|
|
|
|
config ERROR_MODULES_CONFLICT
|
|
default "On SAM0, the RTC and RTT map to the same hardware peripheral." if MODULE_PERIPH_RTC && MODULE_PERIPH_RTT
|
|
|
|
endif # CPU_COMMON_SAM0
|
|
|
|
source "$(RIOTCPU)/cortexm_common/Kconfig"
|