Skip to content

Commit 8a5a93d

Browse files
committed
tests: drivers: spi: add spi test support for frdm_mcxa344 board
add spi test support for frdm_mcxa344 board Signed-off-by: Neil Chen <[email protected]>
1 parent 172a71c commit 8a5a93d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
* Copyright 2025 NXP
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/* To test this sample, connect
8+
* LPSPI0 MOSI(J6-6, P1_0/LPSPI0_SDO) --> LPSPI0 MISO(J6-5, P1_2/LPSPI0_SDI)
9+
*/
10+
&lpspi0 {
11+
slow@0 {
12+
compatible = "test-spi-loopback-slow";
13+
reg = <0>;
14+
spi-max-frequency = <500000>;
15+
};
16+
17+
fast@0 {
18+
compatible = "test-spi-loopback-fast";
19+
reg = <0>;
20+
spi-max-frequency = <16000000>;
21+
};
22+
};

0 commit comments

Comments
 (0)