mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-11 18:38:28 -04:00
APM: report throttle and ground speed mission changes
This commit is contained in:
parent
972b8df052
commit
4a942bc45d
@ -550,13 +550,16 @@ static void do_change_speed()
|
||||
}
|
||||
break;
|
||||
case 1: // Ground speed
|
||||
gcs_send_text_fmt(PSTR("Set groundspeed %u"), (unsigned)next_nonnav_command.alt);
|
||||
g.min_gndspeed_cm.set(next_nonnav_command.alt * 100);
|
||||
break;
|
||||
}
|
||||
|
||||
if(next_nonnav_command.lat > 0)
|
||||
if (next_nonnav_command.lat > 0) {
|
||||
gcs_send_text_fmt(PSTR("Set throttle %u"), (unsigned)next_nonnav_command.lat);
|
||||
g.throttle_cruise.set(next_nonnav_command.lat);
|
||||
}
|
||||
}
|
||||
|
||||
static void do_set_home()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user