mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-23 00:55:20 +00:00
Provide correct active level and pull on all signals. Use init-to-active when configuring antenna switch. Signed-off-by: Peter Bigot <peter.bigot@nordicsemi.no>
20 lines
413 B
Plaintext
20 lines
413 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 = "okay";
|
|
sck-pin = <47>;
|
|
mosi-pin = <45>;
|
|
miso-pin = <46>;
|
|
cs-gpios = <&gpio0 31 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|