Skip to content

Commit 2123e75

Browse files
committed
applications: serial_lte_modem: Fix HWFC problems on nRF9151DK
nRF9151DK has interface chip that automatically detects if flow control is enabled or not. On start up, HWFC pins are floating. On Zephyr DTS side, nRF9151 CTS pin has pull-up enabled, so if nRF91 app core boots faster than interface chip, the serial port might be blocked because of flow control. Change pull-up to pull-down so nRF91 is allowed to write if interface chip still has not enabled the HWFC pins. Signed-off-by: Seppo Takalo <seppo.takalo@nordicsemi.no>
1 parent 89c8da1 commit 2123e75

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

applications/serial_lte_modem/boards/nrf9151dk_nrf9151_ns.overlay

+17
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
&uart0 {
1414
status = "okay";
1515
hw-flow-control;
16+
pinctrl-0 = <&uart0_default_hwfc>;
17+
pinctrl-1 = <&uart0_sleep>;
18+
pinctrl-names = "default", "sleep";
1619
};
1720

1821
&uart2 {
@@ -31,6 +34,20 @@
3134
};
3235

3336
&pinctrl {
37+
uart0_default_hwfc: uart0_default_hwfc {
38+
group1 {
39+
psels = <NRF_PSEL(UART_TX, 0, 27)>,
40+
<NRF_PSEL(UART_RTS, 0, 14)>;
41+
};
42+
group2 {
43+
psels = <NRF_PSEL(UART_RX, 0, 26)>;
44+
bias-pull-up;
45+
};
46+
group3 {
47+
psels= <NRF_PSEL(UART_CTS, 0, 15)>;
48+
bias-pull-down;
49+
};
50+
};
3451
uart2_default_alt: uart2_default_alt {
3552
group1 {
3653
psels = <NRF_PSEL(UART_RX, 0, 11)>;

0 commit comments

Comments
 (0)