From c7fae18ae122b2465080507380dd55d096edd666 Mon Sep 17 00:00:00 2001 From: Marius Petcu Date: Sat, 9 Aug 2025 01:47:03 +0300 Subject: [PATCH] feat(boards): add support for nrf52840dongle_nrf52840 (#3011) This adds additional required configs for the Nordic NRF52840 Dongle (PCA10059), which was already supported by Zephyr, but didn't have flash settings and Bluetooth enabled. --- app/boards/nrf52840dongle_nrf52840.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 app/boards/nrf52840dongle_nrf52840.conf diff --git a/app/boards/nrf52840dongle_nrf52840.conf b/app/boards/nrf52840dongle_nrf52840.conf new file mode 100644 index 000000000..97e95bf7c --- /dev/null +++ b/app/boards/nrf52840dongle_nrf52840.conf @@ -0,0 +1,12 @@ +# Copyright (c) 2025 The ZMK Contributors +# SPDX-License-Identifier: MIT + +CONFIG_ZMK_BLE=y +CONFIG_ZMK_USB=y + +CONFIG_MPU_ALLOW_FLASH_WRITE=y +CONFIG_NVS=y +CONFIG_SETTINGS_NVS=y +CONFIG_FLASH=y +CONFIG_FLASH_PAGE_LAYOUT=y +CONFIG_FLASH_MAP=y