2023-05-02 22:24:50 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
|
|
|
|
|
|
|
#ifndef HAL_MSP_ENABLED
|
2023-06-08 07:35:01 -03:00
|
|
|
#define HAL_MSP_ENABLED 1
|
2023-05-02 22:24:50 -03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// define for enabling MSP sensor drivers
|
|
|
|
#ifndef HAL_MSP_SENSORS_ENABLED
|
2023-08-07 23:36:32 -03:00
|
|
|
#define HAL_MSP_SENSORS_ENABLED HAL_MSP_ENABLED
|
2023-05-02 22:24:50 -03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// define for enabling MSP DisplayPort
|
|
|
|
#ifndef HAL_WITH_MSP_DISPLAYPORT
|
2023-08-07 23:36:32 -03:00
|
|
|
#define HAL_WITH_MSP_DISPLAYPORT HAL_MSP_ENABLED
|
2023-05-02 22:24:50 -03:00
|
|
|
#endif
|