1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-15 04:15:28 +03:00

Allow configuration of servo angle at min/max from GUI.

Closes #193
This commit is contained in:
Dominic Clifton 2015-10-14 20:27:47 +01:00
parent a7f90297da
commit eb2aa5b4e5
4 changed files with 14 additions and 2 deletions

View file

@ -466,8 +466,8 @@ var MSP = {
'max': data.getInt16(i + 2, 1),
'middle': data.getInt16(i + 4, 1),
'rate': data.getInt8(i + 6),
'angleAtMin': data.getUint8(i + 7),
'angleAtMax': data.getUint8(i + 8),
'angleAtMin': data.getInt8(i + 7),
'angleAtMax': data.getInt8(i + 8),
'indexOfChannelToForward': data.getInt8(i + 9),
'reversedInputSources': data.getUint32(i + 10)
};