mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-22 16:48:29 -04:00
APM: report throttle and ground speed mission changes
This commit is contained in:
parent
b1408008c9
commit
589c8fcc12
@ -550,12 +550,15 @@ 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