mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-04 10:31:57 +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>
27 lines
513 B
Plaintext
27 lines
513 B
Plaintext
/*
|
|
* Copyright (c) 2018 Matthias Boesl
|
|
* Copyright (c) 2018 Peter Bigot Consulting, LLC
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <nordic/nrf52840_qiaa.dtsi>
|
|
#include "mesh_feather.dtsi"
|
|
|
|
/ {
|
|
model = "Particle Argon";
|
|
compatible = "particle,argon", "particle,feather",
|
|
"nordic,nrf52840-qiaa", "nordic,nrf52840";
|
|
};
|
|
|
|
&uart1 { /* ESP32 */
|
|
compatible = "nordic,nrf-uarte";
|
|
current-speed = <921600>;
|
|
status = "ok";
|
|
tx-pin = <37>;
|
|
rx-pin = <36>;
|
|
rts-pin = <39>;
|
|
cts-pin = <38>;
|
|
};
|