mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-15 12:25:13 +03:00
fix MSP_SET_RX_MAP
This commit is contained in:
parent
aadc459adf
commit
a56d89a81f
1 changed files with 2 additions and 2 deletions
|
@ -1726,8 +1726,8 @@ var mspHelper = (function () {
|
|||
break;
|
||||
|
||||
case MSPCodes.MSP_SET_RX_MAP:
|
||||
for (let i = 0; i < FC.SENSOR_ALIGNMENT.length; i++) {
|
||||
buffer.push(FC.SENSOR_ALIGNMENT[i]);
|
||||
for (let i = 0; i < FC.RC_MAP.length; i++) {
|
||||
buffer.push(FC.RC_MAP[i]);
|
||||
}
|
||||
break;
|
||||
case MSPCodes.MSP_SET_ACC_TRIM:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue