mirror of https://github.com/ArduPilot/ardupilot
Blimp: Support not sending a status text on state change
This commit is contained in:
parent
5e44b2ea52
commit
bed58d9952
|
@ -312,7 +312,7 @@ bool AP_Arming_Blimp::arm(const AP_Arming::Method method, const bool do_arming_c
|
|||
AP::notify().update();
|
||||
}
|
||||
|
||||
gcs().send_text(MAV_SEVERITY_INFO, "Arming motors"); //MIR kept in - usually only in SITL
|
||||
send_arm_disarm_statustext("Arming motors"); //MIR kept in - usually only in SITL
|
||||
|
||||
auto &ahrs = AP::ahrs();
|
||||
|
||||
|
@ -371,8 +371,7 @@ bool AP_Arming_Blimp::disarm(const AP_Arming::Method method, bool do_disarm_chec
|
|||
return false;
|
||||
}
|
||||
|
||||
gcs().send_text(MAV_SEVERITY_INFO, "Disarming motors"); //MIR keeping in - usually only in SITL
|
||||
|
||||
send_arm_disarm_statustext("Disarming motors"); //MIR keeping in - usually only in SITL
|
||||
|
||||
auto &ahrs = AP::ahrs();
|
||||
|
||||
|
|
Loading…
Reference in New Issue