1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/common/nrf52xxxdk/Kconfig
Marian Buschsieweke c118df3eb2
boards/common/nrf52xxxdk: Expose LEDs via saul_pwm
This allows dimming the LEDs instead of only turning them on and off.
2021-12-14 22:02:56 +01:00

26 lines
648 B
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 BOARDS_COMMON_NRF52XXXDK
bool
select BOARD_COMMON_NRF52
select HAS_PERIPH_I2C
select HAS_PERIPH_PWM
select HAS_PERIPH_SPI
select HAS_PERIPH_UART
select HAS_VDD_LC_FILTER_REG1
select HAVE_SAUL_GPIO
select HAVE_SAUL_PWM
config MODULE_BOARDS_COMMON_NRF52XXXDK
bool
depends on TEST_KCONFIG
help
Common code for boards based on nrf52xxxdk.
source "$(RIOTBOARD)/common/nrf52/Kconfig"