1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 19:40:31 +03:00

Merge pull request #10765 from cruwaller/pr-fix-vcp-baudrate-change

This commit is contained in:
Michael Keller 2021-08-05 23:31:18 +12:00 committed by GitHub
commit 55f2be55f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1560,7 +1560,7 @@ static void cliSerialPassthrough(const char *cmdName, char *cmdline)
cliPrintLine("Port1 baud rate change over USB enabled."); cliPrintLine("Port1 baud rate change over USB enabled.");
// Register the right side baud rate setting routine with the left side which allows setting of the UART // Register the right side baud rate setting routine with the left side which allows setting of the UART
// baud rate over USB without setting it using the serialpassthrough command // baud rate over USB without setting it using the serialpassthrough command
serialSetBaudRateCb(ports[0].port, serialSetBaudRate, ports[1].port); serialSetBaudRateCb(ports[1].port, serialSetBaudRate, ports[0].port);
} }
char *resetMessage = ""; char *resetMessage = "";