mirror of https://github.com/ArduPilot/ardupilot
Rover: fixed typo in log write
This commit is contained in:
parent
49061aae67
commit
e046d86c59
|
@ -64,8 +64,8 @@ void Rover::cruise_learn_complete()
|
|||
void Rover::log_write_cruise_learn()
|
||||
{
|
||||
AP::logger().Write("CRSE", "TimeUS,State,Speed,Throttle", "Qbff",
|
||||
AP_HAL::micros64,
|
||||
cruise_learn.learn_start_ms > 0,
|
||||
cruise_learn.speed_filt.get(),
|
||||
cruise_learn.throttle_filt.get());
|
||||
AP_HAL::micros64(),
|
||||
cruise_learn.learn_start_ms > 0,
|
||||
cruise_learn.speed_filt.get(),
|
||||
cruise_learn.throttle_filt.get());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue