2022-06-02 05:28:26 -03:00
|
|
|
#pragma once
|
|
|
|
|
2023-03-16 06:49:38 -03:00
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
2023-03-06 18:15:58 -04:00
|
|
|
#include <AP_Mount/AP_Mount_config.h>
|
2023-06-06 05:05:06 -03:00
|
|
|
#include <AP_Relay/AP_Relay_config.h>
|
2023-09-02 02:21:34 -03:00
|
|
|
#include <GCS_MAVLink/GCS_config.h>
|
2022-06-02 05:28:26 -03:00
|
|
|
|
|
|
|
#ifndef AP_CAMERA_ENABLED
|
|
|
|
#define AP_CAMERA_ENABLED 1
|
|
|
|
#endif
|
2023-03-06 18:15:58 -04:00
|
|
|
|
2023-09-20 23:37:23 -03:00
|
|
|
#ifndef AP_CAMERA_SEND_FOV_STATUS_ENABLED
|
|
|
|
#define AP_CAMERA_SEND_FOV_STATUS_ENABLED AP_MOUNT_POI_TO_LATLONALT_ENABLED
|
|
|
|
#endif
|
|
|
|
|
2023-03-06 18:15:58 -04:00
|
|
|
#ifndef AP_CAMERA_BACKEND_DEFAULT_ENABLED
|
|
|
|
#define AP_CAMERA_BACKEND_DEFAULT_ENABLED AP_CAMERA_ENABLED
|
|
|
|
#endif
|
|
|
|
|
2023-03-06 19:04:30 -04:00
|
|
|
#ifndef AP_CAMERA_MAVLINK_ENABLED
|
2023-09-02 02:21:34 -03:00
|
|
|
#define AP_CAMERA_MAVLINK_ENABLED AP_CAMERA_BACKEND_DEFAULT_ENABLED && HAL_GCS_ENABLED
|
2023-03-06 19:04:30 -04:00
|
|
|
#endif
|
|
|
|
|
2023-04-04 03:36:54 -03:00
|
|
|
#ifndef AP_CAMERA_MAVLINKCAMV2_ENABLED
|
|
|
|
#define AP_CAMERA_MAVLINKCAMV2_ENABLED AP_CAMERA_BACKEND_DEFAULT_ENABLED && BOARD_FLASH_SIZE > 1024
|
|
|
|
#endif
|
|
|
|
|
2023-03-06 18:15:58 -04:00
|
|
|
#ifndef AP_CAMERA_MOUNT_ENABLED
|
|
|
|
#define AP_CAMERA_MOUNT_ENABLED AP_CAMERA_BACKEND_DEFAULT_ENABLED && HAL_MOUNT_ENABLED
|
|
|
|
#endif
|
2023-03-06 19:04:39 -04:00
|
|
|
|
2023-03-06 19:04:43 -04:00
|
|
|
#ifndef AP_CAMERA_RELAY_ENABLED
|
2023-06-06 05:05:06 -03:00
|
|
|
#define AP_CAMERA_RELAY_ENABLED AP_CAMERA_BACKEND_DEFAULT_ENABLED && AP_RELAY_ENABLED
|
2023-03-06 19:04:43 -04:00
|
|
|
#endif
|
|
|
|
|
2023-03-06 19:04:45 -04:00
|
|
|
#ifndef AP_CAMERA_SERVO_ENABLED
|
|
|
|
#define AP_CAMERA_SERVO_ENABLED AP_CAMERA_BACKEND_DEFAULT_ENABLED
|
|
|
|
#endif
|
|
|
|
|
2023-03-06 19:04:39 -04:00
|
|
|
#ifndef AP_CAMERA_SOLOGIMBAL_ENABLED
|
|
|
|
#define AP_CAMERA_SOLOGIMBAL_ENABLED AP_CAMERA_BACKEND_DEFAULT_ENABLED && HAL_SOLO_GIMBAL_ENABLED
|
|
|
|
#endif
|
2023-04-07 23:35:51 -03:00
|
|
|
|
|
|
|
#ifndef AP_CAMERA_SCRIPTING_ENABLED
|
|
|
|
#define AP_CAMERA_SCRIPTING_ENABLED AP_CAMERA_BACKEND_DEFAULT_ENABLED && AP_SCRIPTING_ENABLED
|
|
|
|
#endif
|