Copter: only send sonar distance to GCS when sonar enabled
This commit is contained in:
parent
8c7b4feac1
commit
481a55867e
@ -581,6 +581,10 @@ static void NOINLINE send_current_waypoint(mavlink_channel_t chan)
|
|||||||
#if CONFIG_SONAR == ENABLED
|
#if CONFIG_SONAR == ENABLED
|
||||||
static void NOINLINE send_rangefinder(mavlink_channel_t chan)
|
static void NOINLINE send_rangefinder(mavlink_channel_t chan)
|
||||||
{
|
{
|
||||||
|
// exit immediately if sonar is disabled
|
||||||
|
if (!g.sonar_enabled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
mavlink_msg_rangefinder_send(chan, sonar_alt * 0.01f, 0);
|
mavlink_msg_rangefinder_send(chan, sonar_alt * 0.01f, 0);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user