1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-15 20:35:23 +03:00

[MSP] Use MSP2_COMMON[_SET]_SERIAL_CONFIG for configuring ports

Configurator side of https://github.com/betaflight/betaflight/pull/9332
This commit is contained in:
Alberto García Hierro 2020-01-03 15:40:43 +00:00
parent 9278e8ed77
commit 2defc901a9
8 changed files with 306 additions and 111 deletions

View file

@ -89,4 +89,8 @@ DataView.prototype.read32 = function() {
} else {
return null;
}
};
};
DataView.prototype.remaining = function() {
return this.byteLength - this.offset;
};