2022-06-20 15:45:28 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022 Nordic Semiconductor ASA
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
&spi3 {
|
|
|
|
overrun-character = <0x00>;
|
2022-06-20 17:30:01 +02:00
|
|
|
rx-delay = <1>;
|
2022-07-22 14:49:37 -05:00
|
|
|
cs-gpios = <&gpio0 28 GPIO_ACTIVE_LOW>;
|
2024-07-12 10:50:14 +02:00
|
|
|
zephyr,pm-device-runtime-auto;
|
2022-07-22 14:49:37 -05:00
|
|
|
slow@0 {
|
|
|
|
compatible = "test-spi-loopback-slow";
|
|
|
|
reg = <0>;
|
|
|
|
spi-max-frequency = <500000>;
|
|
|
|
};
|
|
|
|
fast@0 {
|
|
|
|
compatible = "test-spi-loopback-fast";
|
|
|
|
reg = <0>;
|
|
|
|
spi-max-frequency = <16000000>;
|
|
|
|
};
|
2022-06-20 15:45:28 +02:00
|
|
|
};
|