Skip to content

Commit ae1cf89

Browse files
committed
[nrf fromlist] boards: arm: nrf9160_pca10090: increase reset line wait time
The 1ms wait time has been shown to not be enough. Increasing to 10ms. This change has been shown to be necessary after CONFIG_SYS_CLOCK_TICKS_PER_SEC was changed from 128 to 32768 in zephyrproject-rtos/zephyr#16782 Signed-off-by: Sigurd Olav Nevstad <[email protected]>
1 parent 9c3f958 commit ae1cf89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boards/arm/nrf9160_pca10090/nrf52840_reset.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ int bt_hci_transport_setup(struct device *h4)
5555
* It is critical (!) to wait here, so that all bytes
5656
* on the lines are received and drained correctly.
5757
*/
58-
k_sleep(K_MSEC(1));
58+
k_sleep(K_MSEC(10));
5959

6060
/* Drain bytes */
6161
while (uart_fifo_read(h4, &c, 1)) {

0 commit comments

Comments
 (0)