stm32/mpbthciport: Use mp_printf instead of printf for error message.
Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
parent
629fdc366a
commit
89cb2c6b80
|
@ -232,7 +232,7 @@ int mp_bluetooth_hci_uart_write(const uint8_t *buf, size_t len) {
|
||||||
int errcode;
|
int errcode;
|
||||||
uart_tx_data(&mp_bluetooth_hci_uart_obj, (void *)buf, len, &errcode);
|
uart_tx_data(&mp_bluetooth_hci_uart_obj, (void *)buf, len, &errcode);
|
||||||
if (errcode != 0) {
|
if (errcode != 0) {
|
||||||
printf("\nmp_bluetooth_hci_uart_write: failed to write to UART %d\n", errcode);
|
mp_printf(&mp_plat_print, "\nmp_bluetooth_hci_uart_write: failed to write to UART %d\n", errcode);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue