drivers/edbg_eui: add module to Kconfig

This commit is contained in:
Leandro Lanzieri 2020-11-12 16:07:29 +01:00
parent c9720d16ca
commit 92b54ecf94
No known key found for this signature in database
GPG Key ID: F4E9A721761C7593
3 changed files with 23 additions and 0 deletions

View File

@ -24,3 +24,4 @@ config BOARD_SAMR21_XPRO
select HAS_RIOTBOOT
select HAVE_SAUL_GPIO
select HAVE_EDBG_EUI

View File

@ -19,6 +19,7 @@ endmenu # Actuator Device Drivers
menu "Miscellaneous Device Drivers"
rsource "at/Kconfig"
rsource "at24mac/Kconfig"
rsource "edbg_eui/Kconfig"
rsource "hd44780/Kconfig"
rsource "ili9341/Kconfig"
rsource "io1_xplained/Kconfig"

21
drivers/edbg_eui/Kconfig Normal file
View File

@ -0,0 +1,21 @@
# 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 MODULE_EDBG_EUI
bool "Atmel Embedded Debugger EUI"
depends on HAS_PERIPH_I2C
depends on TEST_KCONFIG
select MODULE_PERIPH_I2C
default y if MODULE_EUI_PROVIDER && HAVE_EDBG_EUI
help
Driver for getting a unique ID from the Atmel Embedded Debugger.
config HAVE_EDBG_EUI
bool
help
Indicates that the Atmel Embedded Debugeger EUI is available on the
platform.