Skip to content

Commit

Permalink
AC_Autotune: Log in degrees
Browse files Browse the repository at this point in the history
  • Loading branch information
lthall authored and tridge committed Dec 22, 2018
1 parent be9be88 commit b5066cf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions libraries/AC_AutoTune/AC_AutoTune.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1707,9 +1707,9 @@ void AC_AutoTune::Log_Write_AutoTune(uint8_t _axis, uint8_t tune_step, float mea
AP_HAL::micros64(),
axis,
tune_step,
meas_target,
meas_min,
meas_max,
meas_target*0.01f,
meas_min*0.01f,
meas_max*0.01f,
new_gain_rp,
new_gain_rd,
new_gain_sp,
Expand All @@ -1726,6 +1726,6 @@ void AC_AutoTune::Log_Write_AutoTuneDetails(float angle_cd, float rate_cds)
"FBB",
"Qff",
AP_HAL::micros64(),
angle_cd,
rate_cds);
angle_cd*0.01f,
rate_cds*0.01f);
}

0 comments on commit b5066cf

Please sign in to comment.