mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-28 18:53:57 -04:00
We will reserve BOARD_FLASH_SIZE for the internal flash on stm32 flash processors, use HAL_PROGRAM_SIZE_LIMIT_KB in the general code base. Notable change here is that boards with external flash will start to get features only available with more than 2MB of program storage
69 lines
2.1 KiB
C
69 lines
2.1 KiB
C
#pragma once
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
|
#include <AP_Mount/AP_Mount_config.h>
|
|
#include <AP_Relay/AP_Relay_config.h>
|
|
#include <GCS_MAVLink/GCS_config.h>
|
|
|
|
#ifndef AP_CAMERA_ENABLED
|
|
#define AP_CAMERA_ENABLED 1
|
|
#endif
|
|
|
|
#ifndef AP_CAMERA_BACKEND_DEFAULT_ENABLED
|
|
#define AP_CAMERA_BACKEND_DEFAULT_ENABLED AP_CAMERA_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_CAMERA_MAVLINK_ENABLED
|
|
#define AP_CAMERA_MAVLINK_ENABLED AP_CAMERA_BACKEND_DEFAULT_ENABLED && HAL_GCS_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_CAMERA_MAVLINKCAMV2_ENABLED
|
|
#define AP_CAMERA_MAVLINKCAMV2_ENABLED AP_CAMERA_BACKEND_DEFAULT_ENABLED && HAL_GCS_ENABLED && HAL_PROGRAM_SIZE_LIMIT_KB > 1024
|
|
#endif
|
|
|
|
#ifndef AP_CAMERA_MOUNT_ENABLED
|
|
#define AP_CAMERA_MOUNT_ENABLED AP_CAMERA_BACKEND_DEFAULT_ENABLED && HAL_MOUNT_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_CAMERA_RELAY_ENABLED
|
|
#define AP_CAMERA_RELAY_ENABLED AP_CAMERA_BACKEND_DEFAULT_ENABLED && AP_RELAY_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_CAMERA_SERVO_ENABLED
|
|
#define AP_CAMERA_SERVO_ENABLED AP_CAMERA_BACKEND_DEFAULT_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_CAMERA_SOLOGIMBAL_ENABLED
|
|
#define AP_CAMERA_SOLOGIMBAL_ENABLED AP_CAMERA_BACKEND_DEFAULT_ENABLED && HAL_SOLO_GIMBAL_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_CAMERA_SCRIPTING_ENABLED
|
|
#define AP_CAMERA_SCRIPTING_ENABLED AP_CAMERA_BACKEND_DEFAULT_ENABLED && AP_SCRIPTING_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_CAMERA_SEND_FOV_STATUS_ENABLED
|
|
#define AP_CAMERA_SEND_FOV_STATUS_ENABLED AP_MOUNT_POI_TO_LATLONALT_ENABLED
|
|
#endif
|
|
|
|
// set camera source is supported on cameras that may have more than one lens which is curently only cameras within gimbals/mounts
|
|
#ifndef AP_CAMERA_SET_CAMERA_SOURCE_ENABLED
|
|
#define AP_CAMERA_SET_CAMERA_SOURCE_ENABLED HAL_MOUNT_SET_CAMERA_SOURCE_ENABLED
|
|
#endif
|
|
|
|
// send thermal range is supported on a few thermal cameras but all are within mounts
|
|
#ifndef AP_CAMERA_SEND_THERMAL_RANGE_ENABLED
|
|
#define AP_CAMERA_SEND_THERMAL_RANGE_ENABLED AP_MOUNT_SEND_THERMAL_RANGE_ENABLED
|
|
#endif
|
|
|
|
#ifndef HAL_RUNCAM_ENABLED
|
|
#define HAL_RUNCAM_ENABLED 1
|
|
#endif
|
|
|
|
#ifndef AP_CAMERA_INFO_FROM_SCRIPT_ENABLED
|
|
#define AP_CAMERA_INFO_FROM_SCRIPT_ENABLED AP_CAMERA_SCRIPTING_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_CAMERA_RUNCAM_ENABLED
|
|
#define AP_CAMERA_RUNCAM_ENABLED AP_CAMERA_BACKEND_DEFAULT_ENABLED && HAL_RUNCAM_ENABLED
|
|
#endif
|