mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-11 02:18:29 -04:00
desktop: report motors armed in desktop build too
this helps in autotest
This commit is contained in:
parent
78af52083b
commit
6c57cda17a
@ -66,7 +66,7 @@ static void arm_motors()
|
||||
static void init_arm_motors()
|
||||
{
|
||||
//Serial.printf("\nARM\n");
|
||||
#if HIL_MODE != HIL_MODE_DISABLED
|
||||
#if HIL_MODE != HIL_MODE_DISABLED || defined(DESKTOP_BUILD)
|
||||
gcs_send_text_P(SEVERITY_HIGH, PSTR("ARMING MOTORS"));
|
||||
#endif
|
||||
|
||||
@ -107,7 +107,7 @@ static void init_arm_motors()
|
||||
static void init_disarm_motors()
|
||||
{
|
||||
//Serial.printf("\nDISARM\n");
|
||||
#if HIL_MODE != HIL_MODE_DISABLED
|
||||
#if HIL_MODE != HIL_MODE_DISABLED || defined(DESKTOP_BUILD)
|
||||
gcs_send_text_P(SEVERITY_HIGH, PSTR("DISARMING MOTORS"));
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user