We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30be9da commit ca0f5f6Copy full SHA for ca0f5f6
tests/drivers/spi/spi_loopback/boards/numaker_m55m1.conf
@@ -0,0 +1 @@
1
+CONFIG_SPI_ASYNC=n
tests/drivers/spi/spi_loopback/boards/numaker_m55m1.overlay
@@ -0,0 +1,29 @@
+/* SPDX-License-Identifier: Apache-2.0 */
2
+
3
+&pinctrl {
4
+/* EVB's NU5: SS/CLK/MISO/MOSI */
5
+ spi2_default: spi2_default {
6
+ group0 {
7
+ pinmux = <PA11MFP_SPI2_SS>,
8
+ <PA10MFP_SPI2_CLK>,
9
+ <PA9MFP_SPI2_MISO>,
10
+ <PA8MFP_SPI2_MOSI>;
11
+ };
12
13
+};
14
15
+&spi2 {
16
+ slow@0 {
17
+ compatible = "test-spi-loopback-slow";
18
+ reg = <0>;
19
+ spi-max-frequency = <DT_FREQ_K(500)>;
20
21
+ fast@0 {
22
+ compatible = "test-spi-loopback-fast";
23
24
+ spi-max-frequency = <DT_FREQ_M(16)>;
25
26
+ status = "okay";
27
+ pinctrl-0 = <&spi2_default>;
28
+ pinctrl-names = "default";
29
0 commit comments