Skip to content

Commit 9bc8f72

Browse files
nordic-pikrrlubos
authored andcommitted
[nrf fromtree] tests: drivers: uart: add 54l15 fast uart
Add the fast uart instance of 54l15 for testing Signed-off-by: Piotr Krzyzanowski <[email protected]> (cherry picked from commit 6d8eb18)
1 parent ff0fbbb commit 9bc8f72

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

tests/drivers/uart/uart_async_api/boards/nrf54l15dk_nrf54l15_cpuapp.overlay

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
/* SPDX-License-Identifier: Apache-2.0 */
22

3+
&spi00 {
4+
status = "disabled";
5+
};
6+
37
&pinctrl {
48
uart21_default_alt: uart21_default_alt {
59
group1 {
@@ -15,6 +19,21 @@
1519
low-power-enable;
1620
};
1721
};
22+
23+
uart00_default_alt: uart00_default_alt {
24+
group1 {
25+
psels = <NRF_PSEL(UART_TX, 2, 8)>,
26+
<NRF_PSEL(UART_RX, 2, 7)>;
27+
};
28+
};
29+
30+
uart00_sleep_alt: uart00_sleep_alt {
31+
group1 {
32+
psels = <NRF_PSEL(UART_TX, 2, 8)>,
33+
<NRF_PSEL(UART_RX, 2, 7)>;
34+
low-power-enable;
35+
};
36+
};
1837
};
1938

2039
dut: &uart21 {
@@ -24,3 +43,11 @@ dut: &uart21 {
2443
pinctrl-names = "default", "sleep";
2544
current-speed = <115200>;
2645
};
46+
47+
dut2: &uart00 {
48+
status = "okay";
49+
pinctrl-0 = <&uart00_default_alt>;
50+
pinctrl-1 = <&uart00_sleep_alt>;
51+
pinctrl-names = "default", "sleep";
52+
current-speed = <4000000>;
53+
};

0 commit comments

Comments
 (0)