2022-07-15 20:38:26 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
|
|
|
|
|
|
|
#ifndef HAL_EFI_ENABLED
|
|
|
|
#define HAL_EFI_ENABLED !HAL_MINIMIZE_FEATURES && BOARD_FLASH_SIZE > 1024
|
|
|
|
#endif
|
2022-09-30 22:28:30 -03:00
|
|
|
|
2023-03-10 22:20:58 -04:00
|
|
|
#ifndef AP_EFI_BACKEND_DEFAULT_ENABLED
|
|
|
|
#define AP_EFI_BACKEND_DEFAULT_ENABLED HAL_EFI_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAL_EFI_DRONECAN_ENABLED
|
|
|
|
#define HAL_EFI_DRONECAN_ENABLED AP_EFI_BACKEND_DEFAULT_ENABLED && HAL_MAX_CAN_PROTOCOL_DRIVERS && BOARD_FLASH_SIZE > 1024 && HAL_CANMANAGER_ENABLED
|
|
|
|
#endif
|
|
|
|
|
2022-09-30 22:28:30 -03:00
|
|
|
#ifndef AP_EFI_SCRIPTING_ENABLED
|
2023-03-10 22:20:58 -04:00
|
|
|
#define AP_EFI_SCRIPTING_ENABLED (AP_EFI_BACKEND_DEFAULT_ENABLED && AP_SCRIPTING_ENABLED)
|
2022-09-30 22:28:30 -03:00
|
|
|
#endif
|