Skip to content

Commit 611d398

Browse files
nordic-seglrlubos
authored andcommitted
[nrf fromlist] samples: drivers: mbox: Disable UART Flow Control on nrf54h20 and nrf54l15
Nrf54h20dk and nrf54l15 have UART Flow Control enabled by default on all cores. It's a source of problem when mbox sample is run in Twister. Twister opens serial port only on host core, thus nobody confirms reception of logs from remote core. As a result, remote core stucks on printing boot banner. Twister fails sample due to the timeout while waiting for messages from remote to host. Disable Flow Control on remote core when mbox sample is executed on nrf54h20 or nrf54l15. Upstream PR: zephyrproject-rtos/zephyr#75309 Signed-off-by: Sebastian Głąb <[email protected]>
1 parent 245675d commit 611d398

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

samples/drivers/mbox/remote/boards/nrf54l15pdk_nrf54l15_cpuflpr.overlay

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@
1818
&cpuflpr_vevif_tx {
1919
status = "okay";
2020
};
21+
22+
&uart30 {
23+
/delete-property/ hw-flow-control;
24+
};

samples/drivers/mbox/remote/boards/nrf54l15pdk_nrf54l15_cpuflpr_xip.overlay

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@
1818
&cpuflpr_vevif_tx {
1919
status = "okay";
2020
};
21+
22+
&uart30 {
23+
/delete-property/ hw-flow-control;
24+
};

0 commit comments

Comments
 (0)