8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cb91af commit 236274fCopy full SHA for 236274f
extmod/nimble/hal/hal_uart.c
@@ -66,7 +66,7 @@ void hal_uart_start_tx(uint32_t port) {
66
}
67
68
#if HCI_TRACE
69
- printf("< [% 8d] %02x", mp_hal_ticks_ms(), mp_bluetooth_hci_cmd_buf[0]);
+ printf("< [% 8d] %02x", (int)mp_hal_ticks_ms(), mp_bluetooth_hci_cmd_buf[0]);
70
for (size_t i = 1; i < len; ++i) {
71
printf(":%02x", mp_bluetooth_hci_cmd_buf[i]);
72
@@ -86,7 +86,7 @@ void mp_bluetooth_nimble_hci_uart_process(bool run_events) {
86
int chr;
87
while ((chr = mp_bluetooth_hci_uart_readchar()) >= 0) {
88
89
- printf("> %02x (%d)\n", chr);
+ printf("> %02x\n", chr);
90
#endif
91
hal_uart_rx_cb(hal_uart_rx_arg, chr);
92
0 commit comments