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

boards/iotlab-*: model features in Kconfig

This commit is contained in:
Alexandre Abadie 2020-07-15 16:57:07 +02:00
parent baf314bc3e
commit e731533e6a
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,16 @@
# Copyright (c) 2020 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.
#
config BOARD
default "iotlab-a8-m3" if BOARD_IOTLAB_A8_M3
config BOARD_IOTLAB_A8_M3
bool
default y
select BOARD_COMMON_IOTLAB
source "$(RIOTBOARD)/common/iotlab/Kconfig"

18
boards/iotlab-m3/Kconfig Normal file
View File

@ -0,0 +1,18 @@
# Copyright (c) 2020 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.
#
config BOARD
default "iotlab-m3" if BOARD_IOTLAB_M3
config BOARD_IOTLAB_M3
bool
default y
select BOARD_COMMON_IOTLAB
select HAS_PERIPH_DMA
source "$(RIOTBOARD)/common/iotlab/Kconfig"