mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-25 17:25:16 +03:00
Fix baudrate (#3985)
This commit is contained in:
parent
a1d33b0c7a
commit
0fa76eb63e
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ class WebSerial extends EventTarget {
|
|||
if (connectionInfo && !this.openCanceled) {
|
||||
this.connected = true;
|
||||
this.connectionId = connectionInfo.connectionId;
|
||||
this.bitrate = options.baudrate;
|
||||
this.bitrate = options.baudRate;
|
||||
this.bytesReceived = 0;
|
||||
this.bytesSent = 0;
|
||||
this.failed = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue