1
0
Fork 0
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:
Mark Haslinghuis 2024-05-28 06:39:00 +02:00 committed by GitHub
parent a1d33b0c7a
commit 0fa76eb63e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;