mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-23 16:25:22 +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 = [];
|
||||
// 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;
|
||||
if (semver.gte(CONFIG.flightControllerVersion, "3.0.1")) {
|
||||
v = view.readU16();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue