File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
tests/drivers/spi/spi_loopback Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2025 STMicroelectronics
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ &rcc {
8
+ apb2-prescaler = <2>;
9
+ };
10
+
11
+ &spi1 {
12
+ dmas = <&gpdma1 0 7 STM32_DMA_PERIPH_TX
13
+ &gpdma1 1 6 STM32_DMA_PERIPH_RX>;
14
+ dma-names = "tx", "rx";
15
+ slow@0 {
16
+ compatible = "test-spi-loopback-slow";
17
+ reg = <0>;
18
+ spi-max-frequency = <500000>;
19
+ };
20
+ fast@0 {
21
+ compatible = "test-spi-loopback-fast";
22
+ reg = <0>;
23
+ spi-max-frequency = <16000000>;
24
+ };
25
+ };
26
+
27
+ &gpdma1 {
28
+ status = "okay";
29
+ };
Original file line number Diff line number Diff line change 72
72
- nucleo_f429zi
73
73
- nucleo_f746zg
74
74
- nucleo_f767zi
75
+ - nucleo_wba55cg
75
76
- nucleo_wb55rg
76
77
- nucleo_l152re
77
78
- nucleo_wl55jc
@@ -134,6 +135,7 @@ tests:
134
135
- nucleo_h745zi_q/stm32h745xx/m4
135
136
- nucleo_h745zi_q/stm32h745xx/m7
136
137
- nucleo_l152re
138
+ - nucleo_wba55cg
137
139
- nucleo_wb55rg
138
140
- nucleo_wl55jc
139
141
- stm32f3_disco
You can’t perform that action at this time.
0 commit comments