Skip to content

Commit

Permalink
nrf/uart: Fix UART.writechar() to write just 1 byte.
Browse files Browse the repository at this point in the history
  • Loading branch information
aykevl committed Aug 2, 2018
1 parent 60a0548 commit e755bd4
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions ports/nrf/modules/machine/uart.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,13 +245,9 @@ STATIC mp_obj_t machine_hard_uart_writechar(mp_obj_t self_in, mp_obj_t char_in)
machine_hard_uart_obj_t *self = self_in;

// get the character to write (might be 9 bits)
uint16_t data = mp_obj_get_int(char_in);

nrfx_err_t err = NRFX_SUCCESS;
for (int i = 0; i < 2; i++) {
err = uart_tx_char(self, (int)(&data)[i]);
}
int data = mp_obj_get_int(char_in);

nrfx_err_t err = uart_tx_char(self, data);
if (err != NRFX_SUCCESS) {
mp_hal_raise(err);
}
Expand Down

0 comments on commit e755bd4

Please sign in to comment.