1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-16 12:55:13 +03:00

Updated GPS settings

- Added SBAS disabled (-1) to configuration tab
- Fixed GPS signal strength bars
This commit is contained in:
jaahaavi 2014-11-23 11:41:24 +02:00
parent 330928f148
commit b2cb677869
3 changed files with 19 additions and 18 deletions

View file

@ -297,7 +297,7 @@ var MSP = {
MISC.failsafe_throttle = data.getUint16(8, 1); // 1000-2000
MISC.gps_type = data.getUint8(10);
MISC.gps_baudrate = data.getUint8(11);
MISC.gps_ubx_sbas = data.getUint8(12);
MISC.gps_ubx_sbas = data.getInt8(12);
MISC.multiwiicurrentoutput = data.getUint8(13);
MISC.rssi_aux_channel = data.getUint8(14);
MISC.placeholder2 = data.getUint8(15);