mirror of https://github.com/ArduPilot/ardupilot
18 lines
505 B
C
18 lines
505 B
C
|
#pragma once
|
||
|
|
||
|
#include <AP_HAL/AP_HAL_Boards.h>
|
||
|
|
||
|
#ifndef HAL_MSP_ENABLED
|
||
|
#define HAL_MSP_ENABLED !HAL_MINIMIZE_FEATURES
|
||
|
#endif
|
||
|
|
||
|
// define for enabling MSP sensor drivers
|
||
|
#ifndef HAL_MSP_SENSORS_ENABLED
|
||
|
#define HAL_MSP_SENSORS_ENABLED HAL_MSP_ENABLED && !HAL_MINIMIZE_FEATURES && !defined(HAL_BUILD_AP_PERIPH)
|
||
|
#endif
|
||
|
|
||
|
// define for enabling MSP DisplayPort
|
||
|
#ifndef HAL_WITH_MSP_DISPLAYPORT
|
||
|
#define HAL_WITH_MSP_DISPLAYPORT HAL_MSP_ENABLED && !HAL_MINIMIZE_FEATURES && !defined(HAL_BUILD_AP_PERIPH)
|
||
|
#endif
|