From 1d2d394dd254b934cb4ddc911181f5e0c4d72e7c Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Fri, 3 Jul 2020 11:29:51 +0200 Subject: [PATCH] boards/particle-argon: Add Kconfig symbols --- boards/particle-argon/Kconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 boards/particle-argon/Kconfig diff --git a/boards/particle-argon/Kconfig b/boards/particle-argon/Kconfig new file mode 100644 index 0000000000..57d3365862 --- /dev/null +++ b/boards/particle-argon/Kconfig @@ -0,0 +1,15 @@ +# 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 + default "particle-argon" if BOARD_PARTICLE_ARGON + +config BOARD_PARTICLE_ARGON + bool + default y + select BOARD_COMMON_PARTICLE_MESH + +source "$(RIOTBOARD)/common/particle-mesh/Kconfig"