Skip to content

Commit 89687bd

Browse files
Fix build on non static pinmap
1 parent 18471a6 commit 89687bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CI-Shield-Tests/UARTTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ utest::v1::status_t test_setup(const size_t number_of_cases) {
154154
#if STATIC_PINMAP_READY
155155
uart = new BufferedSerial(serialPinmap);
156156
#else
157-
uart = new BufferedSerial(PIN_UART_MCU_TX, PIN_UART_MCU_RX, baudrate);
157+
uart = new BufferedSerial(PIN_UART_MCU_TX, PIN_UART_MCU_RX);
158158
#endif
159159

160160
// Set up mux for UART

0 commit comments

Comments
 (0)