Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,8 @@ Drivers

This section provides detailed lists of changes by :ref:`driver <drivers>`.

* Fixed an issue where the low power UART may fail after a reset if the reset occurs during transmission.

Wi-Fi drivers
-------------

Expand Down
2 changes: 1 addition & 1 deletion drivers/serial/uart_nrf_sw_lpuart.c
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ static void api_irq_rx_enable(const struct device *dev)
struct lpuart_data *data = get_dev_data(dev);

data->int_driven.rx_enabled = true;
if (int_driven_rd_available(data)) {
if (int_driven_rd_available(data) || data->rx_state == RX_BLOCKED) {
/* We need to move to the interrupt context of the same priority as UARTE. */
k_timer_start(&data->int_driven.trampoline_timer, K_NO_WAIT, K_NO_WAIT);
}
Expand Down
Loading