mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-04 09:31:58 +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>
20 lines
403 B
Plaintext
20 lines
403 B
Plaintext
/*
|
|
* Copyright (c) 2018 Peter Bigot Consulting, LLC
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/* Add SPI support on Particle Mesh via nRF52840 SPI3
|
|
*
|
|
* NOTE: This file is replicated in particle_{argon,boron,xenon}.
|
|
* Changes should be made in all instances. */
|
|
|
|
&spi3 { /* feather SPI */
|
|
status = "ok";
|
|
sck-pin = <47>;
|
|
mosi-pin = <45>;
|
|
miso-pin = <46>;
|
|
/* cs-gpios = <&gpio0 31 0>; */
|
|
};
|
|
|