Rover: accept do-change-speed commands with high speeds

This commit is contained in:
Randy Mackay 2018-06-09 10:23:46 +09:00
parent a08a955cbc
commit 631d8f5423
1 changed files with 1 additions and 2 deletions

View File

@ -375,8 +375,7 @@ bool Rover::verify_within_distance()
void Rover::do_change_speed(const AP_Mission::Mission_Command& cmd)
{
// set speed for active mode
if ((cmd.content.speed.target_ms >= 0.0f) && (cmd.content.speed.target_ms <= rover.control_mode->get_speed_default())) {
control_mode->set_desired_speed(cmd.content.speed.target_ms);
if (control_mode->set_desired_speed(cmd.content.speed.target_ms)) {
gcs().send_text(MAV_SEVERITY_INFO, "speed: %.1f m/s", static_cast<double>(cmd.content.speed.target_ms));
}
}