1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/common/arduino-atmega/Kconfig

30 lines
804 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 BOARD_COMMON_ARDUINO_ATMEGA
bool
# Put defined MCU peripherals here (in alphabetical order)
select HAS_PERIPH_ADC
select HAS_PERIPH_I2C
select HAS_PERIPH_PWM
select HAS_PERIPH_SPI
select HAS_PERIPH_TIMER
select HAS_PERIPH_UART
# Various other features (if any)
select HAS_ARDUINO
select HAS_ARDUINO_PWM
select HAVE_SAUL_GPIO
config MODULE_BOARDS_COMMON_ARDUINO-ATMEGA
bool
depends on TEST_KCONFIG
select MODULE_BOARDS_COMMON_ATMEGA
help
Common code of Arduino ATmega boards.
source "$(RIOTBOARD)/common/atmega/Kconfig"