diff options
-rw-r--r-- | ports/stm32/mpbthciport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/stm32/mpbthciport.c b/ports/stm32/mpbthciport.c index 2d34e5e2b..c3cd864e2 100644 --- a/ports/stm32/mpbthciport.c +++ b/ports/stm32/mpbthciport.c @@ -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; } |