put received bytes to fifo when error

This commit is contained in:
hathach 2018-12-28 01:05:30 +07:00
parent d092722ae8
commit 3ee766bc01
No known key found for this signature in database
GPG Key ID: 2FA891220FBFD581

View File

@ -67,18 +67,24 @@ static void ringbuf_clear(ringbuf_t *r)
r->iput = r->iget = 0; r->iput = r->iget = 0;
} }
// will overwrite old data
static void ringbuf_put_n(ringbuf_t* r, uint8_t* buf, uint8_t bufsize)
{
for(uint8_t i=0; i < bufsize; i++) {
if ( ringbuf_put(r, buf[i]) < 0 ) {
// if full overwrite old data
(void) ringbuf_get(r);
ringbuf_put(r, buf[i]);
}
}
}
static void uart_callback_irq (const nrfx_uarte_event_t * event, void * context) { static void uart_callback_irq (const nrfx_uarte_event_t * event, void * context) {
busio_uart_obj_t* self = (busio_uart_obj_t*) context; busio_uart_obj_t* self = (busio_uart_obj_t*) context;
switch ( event->type ) { switch ( event->type ) {
case NRFX_UARTE_EVT_RX_DONE: case NRFX_UARTE_EVT_RX_DONE:
for(uint8_t i=0; i < event->data.rxtx.bytes; i++) { ringbuf_put_n(&self->rbuf, event->data.rxtx.p_data, event->data.rxtx.bytes);
if ( ringbuf_put(&self->rbuf, event->data.rxtx.p_data[i]) < 0 ) {
// if full overwrite old data
(void) ringbuf_get(&self->rbuf);
ringbuf_put(&self->rbuf, event->data.rxtx.p_data[i]);
}
}
// keep receiving // keep receiving
(void) nrfx_uarte_rx(&self->uarte, &self->rx_char, 1); (void) nrfx_uarte_rx(&self->uarte, &self->rx_char, 1);
@ -92,6 +98,8 @@ static void uart_callback_irq (const nrfx_uarte_event_t * event, void * context)
// Possible Error source is Overrun, Parity, Framing, Break // Possible Error source is Overrun, Parity, Framing, Break
// uint32_t errsrc = event->data.error.error_mask; // uint32_t errsrc = event->data.error.error_mask;
ringbuf_put_n(&self->rbuf, event->data.error.rxtx.p_data, event->data.error.rxtx.bytes);
// Keep receiving // Keep receiving
(void) nrfx_uarte_rx(&self->uarte, &self->rx_char, 1); (void) nrfx_uarte_rx(&self->uarte, &self->rx_char, 1);
break; break;