We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f749d0b commit 16afa83Copy full SHA for 16afa83
src/js/msp.js
@@ -263,7 +263,7 @@ const MSP = {
263
if (this.message_checksum === expectedChecksum) {
264
// message received, store dataview
265
this.dataView = new DataView(this.message_buffer, 0, this.message_length_expected);
266
- } else if (serial.protocolType() === "bluetooth" && serial._protocol?.shouldBypassCrc?.(expectedChecksum)) {
+ } else if (serial.protocolType === "bluetooth" && serial._protocol?.shouldBypassCrc?.(expectedChecksum)) {
267
268
this.crcError = false; // Override the CRC error for this specific case
269
} else {
0 commit comments