2022-07-06 07:04:19 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
2023-04-14 21:58:02 -03:00
|
|
|
#include <GCS_MAVLink/GCS_config.h>
|
2022-07-06 07:04:19 -03:00
|
|
|
|
|
|
|
#ifndef HAL_VISUALODOM_ENABLED
|
2023-04-14 00:47:53 -03:00
|
|
|
#define HAL_VISUALODOM_ENABLED BOARD_FLASH_SIZE > 1024
|
2022-07-06 07:04:19 -03:00
|
|
|
#endif
|
2023-04-14 21:58:02 -03:00
|
|
|
|
|
|
|
#ifndef AP_VISUALODOM_BACKEND_DEFAULT_ENABLED
|
|
|
|
#define AP_VISUALODOM_BACKEND_DEFAULT_ENABLED HAL_VISUALODOM_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AP_VISUALODOM_INTELT265_ENABLED
|
|
|
|
#define AP_VISUALODOM_INTELT265_ENABLED AP_VISUALODOM_BACKEND_DEFAULT_ENABLED && HAL_GCS_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AP_VISUALODOM_MAV_ENABLED
|
|
|
|
#define AP_VISUALODOM_MAV_ENABLED AP_VISUALODOM_BACKEND_DEFAULT_ENABLED && HAL_GCS_ENABLED
|
|
|
|
#endif
|