We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cf76ba commit 8430a09Copy full SHA for 8430a09
tests/host/common/MockUART.cpp
@@ -407,26 +407,29 @@ uart_uninit(uart_t* uart)
407
free(uart);
408
}
409
410
-void
+bool
411
uart_swap(uart_t* uart, int tx_pin)
412
{
413
(void) uart;
414
(void) tx_pin;
415
+ return true;
416
417
418
419
uart_set_tx(uart_t* uart, int tx_pin)
420
421
422
423
424
425
426
427
uart_set_pins(uart_t* uart, int tx, int rx)
428
429
430
(void) tx;
431
(void) rx;
432
433
434
435
bool
0 commit comments