mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-26 09:45:28 +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) {
|
if (connectionInfo && !this.openCanceled) {
|
||||||
this.connected = true;
|
this.connected = true;
|
||||||
this.connectionId = connectionInfo.connectionId;
|
this.connectionId = connectionInfo.connectionId;
|
||||||
this.bitrate = options.baudrate;
|
this.bitrate = options.baudRate;
|
||||||
this.bytesReceived = 0;
|
this.bytesReceived = 0;
|
||||||
this.bytesSent = 0;
|
this.bytesSent = 0;
|
||||||
this.failed = 0;
|
this.failed = 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue