1
0
Fork 0
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:
bkleiner 2024-08-08 14:18:23 +02:00
parent aadc459adf
commit a56d89a81f

View file

@ -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: