uncrustify ArduCopter/control_modes.pde

This commit is contained in:
uncrustify 2012-08-16 17:50:02 -07:00 committed by Pat Hickey
parent 5d29d5e5a1
commit 0c0652b6d8

View File

@ -182,21 +182,21 @@ static void auto_trim()
/* /*
How this works: * How this works:
Level Example: * Level Example:
A_off: -14.00, -20.59, -30.80 * A_off: -14.00, -20.59, -30.80
*
Right roll Example: * Right roll Example:
A_off: -6.73, 89.05, -46.02 * A_off: -6.73, 89.05, -46.02
*
Left Roll Example: * Left Roll Example:
A_off: -18.11, -160.31, -56.42 * A_off: -18.11, -160.31, -56.42
*
Pitch Forward: * Pitch Forward:
A_off: -127.00, -22.16, -50.09 * A_off: -127.00, -22.16, -50.09
*
Pitch Back: * Pitch Back:
A_off: 201.95, -24.00, -88.56 * A_off: 201.95, -24.00, -88.56
*/ */
static void trim_accel() static void trim_accel()
@ -222,11 +222,11 @@ static void trim_accel()
} }
/* /*
Serial.printf_P(PSTR("r:%1.2f %1.2f \t| p:%1.2f %1.2f\n"), * Serial.printf_P(PSTR("r:%1.2f %1.2f \t| p:%1.2f %1.2f\n"),
trim_roll, * trim_roll,
(float)imu.ay(), * (float)imu.ay(),
trim_pitch, * trim_pitch,
(float)imu.ax()); * (float)imu.ax());
//*/ * //*/
} }