1 parent ddf0d3f commit d092722Copy full SHA for d092722
1 file changed
ports/nrf/common-hal/busio/UART.c
@@ -81,15 +81,19 @@ static void uart_callback_irq (const nrfx_uarte_event_t * event, void * context)
81
}
82
83
// keep receiving
84
- _VERIFY_ERR(nrfx_uarte_rx(&self->uarte, &self->rx_char, 1));
+ (void) nrfx_uarte_rx(&self->uarte, &self->rx_char, 1);
85
break;
86
87
case NRFX_UARTE_EVT_TX_DONE:
88
// nothing to do
89
90
91
case NRFX_UARTE_EVT_ERROR:
92
- // Handle error
+ // Possible Error source is Overrun, Parity, Framing, Break
93
+ // uint32_t errsrc = event->data.error.error_mask;
94
+
95
+ // Keep receiving
96
97
98
99
default:
0 commit comments