mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-24 00:35:26 +03:00
Merge pull request #370 from rafl/ignore-unknown-osd-items
Ignore unknown OSD items
This commit is contained in:
commit
c29f1e285e
1 changed files with 1 additions and 1 deletions
|
@ -523,7 +523,7 @@ OSD.msp = {
|
||||||
}
|
}
|
||||||
d.display_items = [];
|
d.display_items = [];
|
||||||
// start at the offset from the other fields
|
// start at the offset from the other fields
|
||||||
while (view.offset < view.byteLength) {
|
while (view.offset < view.byteLength && d.display_items.length < OSD.constants.DISPLAY_FIELDS.length) {
|
||||||
var v = null;
|
var v = null;
|
||||||
if (semver.gte(CONFIG.flightControllerVersion, "3.0.1")) {
|
if (semver.gte(CONFIG.flightControllerVersion, "3.0.1")) {
|
||||||
v = view.readU16();
|
v = view.readU16();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue