1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/nrf52/periph/Kconfig

31 lines
798 B
Plaintext
Raw Normal View History

2021-09-29 10:17:47 +02:00
# Copyright (c) 2021 Inria
#
# 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.
#
if TEST_KCONFIG
config MODULE_PERIPH_UART_NONBLOCKING
depends on HAS_PERIPH_UART_NONBLOCKING
depends on MODULE_PERIPH_UART
select MODULE_TSRB
config MODULE_PERIPH_SPI
depends on HAS_PERIPH_SPI
select MODULE_PERIPH_GPIO_IRQ if CPU_MODEL_NRF52832XXAA && HAS_PERIPH_GPIO_IRQ
config MODULE_SAUL_NRF_VDDH
bool "Internal Voltage Sensor"
depends on HAS_PERIPH_ADC
2021-11-30 09:03:12 +01:00
select MODULE_PERIPH_ADC
2021-09-29 10:17:47 +02:00
endif # TEST_KCONFIG
2021-11-30 09:03:12 +01:00
config HAVE_SAUL_NRF_VDDH
bool
select MODULE_SAUL_NRF_VDDH if MODULE_SAUL_DEFAULT
help
Indicates that internal voltage sensor is present.