@@ -1397,6 +1397,39 @@ FlightLogFieldPresenter.adjustDebugDefsList = function (
1397
1397
'debug[4]' : 'Processed flow rates Y' ,
1398
1398
'debug[5]' : 'Delta time' ,
1399
1399
} ;
1400
+ DEBUG_FRIENDLY_FIELD_NAMES . MULTI_GYRO_RAW = {
1401
+ 'debug[all]' : 'Debug Multi Gyro Raw' ,
1402
+ 'debug[0]' : 'Gyro 1 Raw [roll]' ,
1403
+ 'debug[1]' : 'Gyro 1 Raw [pitch]' ,
1404
+ 'debug[2]' : 'Gyro 2 Raw [roll]' ,
1405
+ 'debug[3]' : 'Gyro 2 Raw [pitch]' ,
1406
+ 'debug[4]' : 'Gyro 3 Raw [roll]' ,
1407
+ 'debug[5]' : 'Gyro 3 Raw [pitch]' ,
1408
+ 'debug[6]' : 'Gyro 4 Raw [roll]' ,
1409
+ 'debug[7]' : 'Gyro 4 Raw [pitch]' ,
1410
+ } ;
1411
+ DEBUG_FRIENDLY_FIELD_NAMES . MULTI_GYRO_DIFF = {
1412
+ 'debug[all]' : 'Debug Multi Gyro Diff' ,
1413
+ 'debug[0]' : 'Gyro 1 Diff [roll]' ,
1414
+ 'debug[1]' : 'Gyro 1 Diff [pitch]' ,
1415
+ 'debug[2]' : 'Gyro 2 Diff [roll]' ,
1416
+ 'debug[3]' : 'Gyro 2 Diff [pitch]' ,
1417
+ 'debug[4]' : 'Gyro 3 Diff [roll]' ,
1418
+ 'debug[5]' : 'Gyro 3 Diff [pitch]' ,
1419
+ 'debug[6]' : 'Gyro 4 Diff [roll]' ,
1420
+ 'debug[7]' : 'Gyro 4 Diff [pitch]' ,
1421
+ } ;
1422
+ DEBUG_FRIENDLY_FIELD_NAMES . MULTI_GYRO_SCALED = {
1423
+ 'debug[all]' : 'Multi Gyro Scaled' ,
1424
+ 'debug[0]' : 'Gyro 1 [roll]' ,
1425
+ 'debug[1]' : 'Gyro 1 [pitch]' ,
1426
+ 'debug[2]' : 'Gyro 2 [roll]' ,
1427
+ 'debug[3]' : 'Gyro 2 [pitch]' ,
1428
+ 'debug[4]' : 'Gyro 3 [roll]' ,
1429
+ 'debug[5]' : 'Gyro 3 [pitch]' ,
1430
+ 'debug[6]' : 'Gyro 4 [roll]' ,
1431
+ 'debug[7]' : 'Gyro 4 [pitch]' ,
1432
+ } ;
1400
1433
DEBUG_FRIENDLY_FIELD_NAMES . AUTOPILOT_POSITION = {
1401
1434
'debug[all]' : 'Autopilot Position' ,
1402
1435
'debug[0]' : 'Distance' ,
@@ -1840,6 +1873,9 @@ FlightLogFieldPresenter.decodeDebugFieldToFriendly = function (
1840
1873
case "DUAL_GYRO_COMBINED" :
1841
1874
case "DUAL_GYRO_DIFF" :
1842
1875
case "DUAL_GYRO_RAW" :
1876
+ case "MULTI_GYRO_DIFF" :
1877
+ case "MULTI_GYRO_RAW" :
1878
+ case "MULTI_GYRO_SCALED" :
1843
1879
case "NOTCH" :
1844
1880
case "GYRO_SAMPLE" :
1845
1881
return `${ Math . round ( flightLog . gyroRawToDegreesPerSecond ( value ) ) } °/s` ;
@@ -2538,6 +2574,9 @@ FlightLogFieldPresenter.ConvertDebugFieldValue = function (
2538
2574
case "DUAL_GYRO_COMBINED" :
2539
2575
case "DUAL_GYRO_DIFF" :
2540
2576
case "DUAL_GYRO_RAW" :
2577
+ case "MULTI_GYRO_DIFF" :
2578
+ case "MULTI_GYRO_RAW" :
2579
+ case "MULTI_GYRO_SCALED" :
2541
2580
case "NOTCH" :
2542
2581
case "GYRO_SAMPLE" :
2543
2582
return toFriendly
0 commit comments