From aadb19e935668cf069fa9b015bd012856eeaaa21 Mon Sep 17 00:00:00 2001 From: Dylan Laduranty Date: Tue, 4 Jul 2023 17:17:39 +0200 Subject: [PATCH] boards/nrf5340dk-app: add initial Kconfig Signed-off-by: Dylan Laduranty --- boards/nrf5340dk-app/Kconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 boards/nrf5340dk-app/Kconfig diff --git a/boards/nrf5340dk-app/Kconfig b/boards/nrf5340dk-app/Kconfig new file mode 100644 index 0000000000..f3e6c5cac2 --- /dev/null +++ b/boards/nrf5340dk-app/Kconfig @@ -0,0 +1,18 @@ +# Copyright (c) 2023 Mesotic SAS +# +# 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 "nrf5340dk-app" if BOARD_NRF5340DK_APP + +config BOARD_NRF5340DK_APP + bool + default y + select CPU_MODEL_NRF5340_APP + select HAS_PERIPH_TIMER + select HAS_PERIPH_UART + select HAS_PERIPH_UART_HW_FC + + # Put other features for this board (in alphabetical order)