mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 12:52:27 +00:00
Provide a dtsi file that sets up common capabilities for all Feather-based Particle Mesh devices. Provide additional dtsi files for some obvious peripheral options. Remove the xtensa esp32 image: it didn't build, and there's no indication of how the ESP32 firmware can be updated on the Argon board. Use particle_argon as the nRF52840 side of the board. Add Particle Boron support. Note that dtsi files must be replicated in each board directory until tooling supports DTS includes from a shared area. Signed-off-by: Peter A. Bigot <pab@pabigot.com>
12 lines
415 B
CMake
12 lines
415 B
CMake
#
|
|
# Copyright (c) 2018, Peter Bigot Consulting, LLC
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
board_runner_args(pyocd "--target=nrf52840")
|
|
board_runner_args(nrfjprog "--nrf-family=NRF52")
|
|
board_runner_args(jlink "--device=nrf52" "--speed=4000")
|
|
include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake)
|
|
include(${ZEPHYR_BASE}/boards/common/nrfjprog.board.cmake)
|
|
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
|