File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -353,7 +353,7 @@ void PrintDummyValues(byte number) {
353
353
}
354
354
355
355
356
- float GetHeading ()
356
+ float getHeading ()
357
357
{
358
358
#if defined(HeadingMagHold ) || defined(AeroQuadMega_CHR6DM ) || defined(APM_OP_CHR6DM )
359
359
float heading = trueNorthHeading ;
@@ -427,7 +427,7 @@ void sendSerialTelemetry() {
427
427
for (byte axis = XAXIS ; axis < LASTCHANNEL ; axis ++ ) {
428
428
PrintValueComma (receiverSmoothFactor [axis ]);
429
429
}
430
- PrintDummyValues (10 - LASTCHANNEL );
430
+ PrintDummyValues (10 - LASTCHANNEL );
431
431
SERIAL_PRINTLN ();
432
432
queryType = 'X' ;
433
433
break ;
@@ -576,14 +576,14 @@ void sendSerialTelemetry() {
576
576
case 'r' : // Vehicle attitude
577
577
PrintValueComma (kinematicsAngle [XAXIS ]);
578
578
PrintValueComma (kinematicsAngle [YAXIS ]);
579
- SERIAL_PRINTLN (GetHeading ());
579
+ SERIAL_PRINTLN (getHeading ());
580
580
break ;
581
581
582
582
case 's' : // Send all flight data
583
583
PrintValueComma (motorArmed );
584
584
PrintValueComma (kinematicsAngle [XAXIS ]);
585
585
PrintValueComma (kinematicsAngle [YAXIS ]);
586
- PrintValueComma (GetHeading ());
586
+ PrintValueComma (getHeading ());
587
587
#if defined AltitudeHoldBaro || defined AltitudeHoldRangeFinder
588
588
#if defined AltitudeHoldBaro
589
589
PrintValueComma (getBaroAltitude ());
You can’t perform that action at this time.
0 commit comments