1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-13 11:29:53 +03:00

Add maximum PITCH and ROLL angles to the PID tuning tab

- Add Pitch and Roll angles below the rates
- Add help messages indicating that these values constrain the
maximum inclination during navigation.
- Add help messages for navigation max bank/climb/dive angles
- Add help for pitch2thr
This commit is contained in:
Alberto García Hierro 2018-07-09 00:47:32 +01:00
parent b8fd9578c3
commit be1cb6afc4
10 changed files with 214 additions and 43 deletions

View file

@ -89,4 +89,16 @@ DataView.prototype.read32 = function() {
} else {
return null;
}
};
DataView.prototype.readString = function() {
var s = "";
while (this.byteLength > this.offset) {
var c = this.readU8();
if (!c) {
break;
}
s += String.fromCharCode(c);
}
return s;
};