Commit 66f50bef authored by Chiho Sin's avatar Chiho Sin Committed by Benjamin Cabé
Browse files

boards: fobe: add FoBE Quill nRF52840 Mesh board



This commit introduces the FoBE Quill nRF52840 Mesh board configuration,
including device tree files, Kconfig settings, and necessary
documentation. It also adds GPIO header definitions
and updates vendor prefixes for proper identification.

Signed-off-by: default avatarChiho Sin <chihosin@icloud.com>
parent 4910be26
Loading
Loading
Loading
Loading

boards/fobe/index.rst

0 → 100644
+10 −0
Original line number Diff line number Diff line
.. _boards-fobe:

FoBE Studio
###########

.. toctree::
   :maxdepth: 1
   :glob:

   **/*
+10 −0
Original line number Diff line number Diff line
# QUILL NRF52840 MESH board configuration

# Copyright (c) 2025 Chiho Sin
# SPDX-License-Identifier: Apache-2.0

if BOARD_QUILL_NRF52840_MESH

source "boards/common/usb/Kconfig.cdc_acm_serial.defconfig"

endif # BOARD_QUILL_NRF52840_MESH
+7 −0
Original line number Diff line number Diff line
# QUILL NRF52840 MESH board configuration

# Copyright (c) 2025 Chiho Sin
# SPDX-License-Identifier: Apache-2.0

config BOARD_QUILL_NRF52840_MESH
	select SOC_NRF52840_QIAA
+13 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0

board_runner_args(nrfjprog "--nrf-family=NRF52")
board_runner_args(jlink "--device=nRF52840_xxAA" "--speed=4000")
board_runner_args(pyocd "--target=nrf52840" "--frequency=4000000")
board_runner_args(uf2 "--board-id=nRF52840-FoBEF1101-rev1a")
include(${ZEPHYR_BASE}/boards/common/nrfutil.board.cmake)
include(${ZEPHYR_BASE}/boards/common/nrfjprog.board.cmake)
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake)
include(${ZEPHYR_BASE}/boards/common/openocd.board.cmake)
include(${ZEPHYR_BASE}/boards/common/uf2.board.cmake)
include(${ZEPHYR_BASE}/boards/common/blackmagicprobe.board.cmake)
+6 −0
Original line number Diff line number Diff line
board:
  name: quill_nrf52840_mesh
  full_name: Quill nRF52840 Mesh
  vendor: fobe
  socs:
  - name: nrf52840
Loading