The physical nRF51dk / nRF51dongle hardware contains a nRF51422 SoC. In Zephyr, only the nRF51822 SoC, is implemented. In Zephyr, the nRF51422 SoC is build as a nRF51822, therefore use the nRF51822 SoC model for those kits instead on the non-existing nRF51422. Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
21 lines
380 B
Plaintext
21 lines
380 B
Plaintext
/*
|
|
* Copyright (c) 2022 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
&spi1 {
|
|
overrun-character = <0x00>;
|
|
cs-gpios = <&gpio0 28 GPIO_ACTIVE_LOW>;
|
|
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>;
|
|
};
|
|
};
|