stm32/mpbthciport: Use mp_printf instead of printf for error message.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George 2021-02-17 15:45:06 +11:00
parent 629fdc366a
commit 89cb2c6b80
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ int mp_bluetooth_hci_uart_write(const uint8_t *buf, size_t len) {
int errcode;
uart_tx_data(&mp_bluetooth_hci_uart_obj, (void *)buf, len, &errcode);
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;
}