Skip to content

Commit 27c9665

Browse files
committed
Use baud rate specified by build configuration for serial interface.
This ensures that the baud rate is the same as the one configuring the serial monitor.
1 parent 77f1f11 commit 27c9665

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/3rd_party_adapters/Arduino/serial_port.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ std::basic_ostream<CharType> &cout = std::cout;
1414

1515
void initialize()
1616
{
17-
Serial.begin(115200);
17+
Serial.begin(BAUD_RATE);
1818
delay(100);
1919
Serial.flush();
2020
delay(100);

0 commit comments

Comments
 (0)