2023-03-05 18:42:54 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
|
|
|
|
|
|
|
#ifndef HAL_MOUNT_ENABLED
|
2023-05-31 22:21:45 -03:00
|
|
|
#define HAL_MOUNT_ENABLED 1
|
2023-03-05 18:42:54 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define AP_MOUNT_BACKEND_DEFAULT_ENABLED HAL_MOUNT_ENABLED
|
|
|
|
|
|
|
|
#ifndef HAL_MOUNT_ALEXMOS_ENABLED
|
|
|
|
#define HAL_MOUNT_ALEXMOS_ENABLED AP_MOUNT_BACKEND_DEFAULT_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAL_MOUNT_GREMSY_ENABLED
|
2023-04-14 00:47:52 -03:00
|
|
|
#define HAL_MOUNT_GREMSY_ENABLED AP_MOUNT_BACKEND_DEFAULT_ENABLED && BOARD_FLASH_SIZE > 1024
|
2023-03-05 18:42:54 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAL_MOUNT_SCRIPTING_ENABLED
|
|
|
|
#define HAL_MOUNT_SCRIPTING_ENABLED AP_MOUNT_BACKEND_DEFAULT_ENABLED && AP_SCRIPTING_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAL_MOUNT_SERVO_ENABLED
|
|
|
|
#define HAL_MOUNT_SERVO_ENABLED AP_MOUNT_BACKEND_DEFAULT_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAL_MOUNT_SIYI_ENABLED
|
|
|
|
#define HAL_MOUNT_SIYI_ENABLED AP_MOUNT_BACKEND_DEFAULT_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// solo gimbal is enabled explicitly in hwdefs on some Cubes:
|
|
|
|
#ifndef HAL_SOLO_GIMBAL_ENABLED
|
|
|
|
#define HAL_SOLO_GIMBAL_ENABLED 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAL_MOUNT_STORM32MAVLINK_ENABLED
|
|
|
|
#define HAL_MOUNT_STORM32MAVLINK_ENABLED AP_MOUNT_BACKEND_DEFAULT_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAL_MOUNT_STORM32SERIAL_ENABLED
|
|
|
|
#define HAL_MOUNT_STORM32SERIAL_ENABLED AP_MOUNT_BACKEND_DEFAULT_ENABLED
|
|
|
|
#endif
|