mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-22 15:55:28 +03:00
Angle at min and max removed
This commit is contained in:
parent
017cb54ea0
commit
6300fefdef
5 changed files with 10 additions and 34 deletions
|
@ -340,8 +340,6 @@ var mspHelper = (function (gui) {
|
|||
'max': data.getInt16(i + 2, true),
|
||||
'middle': data.getInt16(i + 4, true),
|
||||
'rate': data.getInt8(i + 6),
|
||||
'angleAtMin': data.getInt8(i + 7),
|
||||
'angleAtMax': data.getInt8(i + 8),
|
||||
'indexOfChannelToForward': data.getInt8(i + 9),
|
||||
'reversedInputSources': data.getUint32(i + 10)
|
||||
};
|
||||
|
@ -1514,8 +1512,8 @@ var mspHelper = (function (gui) {
|
|||
|
||||
buffer.push(lowByte(servoConfiguration.rate));
|
||||
|
||||
buffer.push(servoConfiguration.angleAtMin);
|
||||
buffer.push(servoConfiguration.angleAtMax);
|
||||
buffer.push(0);
|
||||
buffer.push(0);
|
||||
|
||||
var out = servoConfiguration.indexOfChannelToForward;
|
||||
if (out == undefined) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue