diff --git a/boards/samr21-xpro/Kconfig b/boards/samr21-xpro/Kconfig index e69e37921e..d08a8a8c29 100644 --- a/boards/samr21-xpro/Kconfig +++ b/boards/samr21-xpro/Kconfig @@ -24,3 +24,4 @@ config BOARD_SAMR21_XPRO select HAS_RIOTBOOT select HAVE_SAUL_GPIO + select HAVE_EDBG_EUI diff --git a/drivers/Kconfig b/drivers/Kconfig index 894954cf03..40cc6f3a7d 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -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" diff --git a/drivers/edbg_eui/Kconfig b/drivers/edbg_eui/Kconfig new file mode 100644 index 0000000000..aa6df05a9f --- /dev/null +++ b/drivers/edbg_eui/Kconfig @@ -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.