mirror of https://github.com/ArduPilot/ardupilot
AP_MSP: add define AP_AIRSPEED_ENABLED
This commit is contained in:
parent
3ff13733ea
commit
1aacd7ba02
|
@ -567,7 +567,7 @@ void AP_MSP_Telem_Backend::msp_handle_baro(const MSP::msp_baro_data_message_t &p
|
|||
|
||||
void AP_MSP_Telem_Backend::msp_handle_airspeed(const MSP::msp_airspeed_data_message_t &pkt)
|
||||
{
|
||||
#if HAL_MSP_AIRSPEED_ENABLED
|
||||
#if HAL_MSP_AIRSPEED_ENABLED && AP_AIRSPEED_ENABLED
|
||||
auto *airspeed = AP::airspeed();
|
||||
if (airspeed) {
|
||||
airspeed->handle_msp(pkt);
|
||||
|
|
Loading…
Reference in New Issue