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
50 lines
1.4 KiB
C
50 lines
1.4 KiB
C
#pragma once
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
|
#include <AP_CANManager/AP_CANSensor.h>
|
|
#include <AP_Scripting/AP_Scripting_config.h>
|
|
|
|
#ifndef HAL_EFI_ENABLED
|
|
#define HAL_EFI_ENABLED HAL_PROGRAM_SIZE_LIMIT_KB > 1024
|
|
#endif
|
|
|
|
#ifndef AP_EFI_BACKEND_DEFAULT_ENABLED
|
|
#define AP_EFI_BACKEND_DEFAULT_ENABLED HAL_EFI_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_EFI_CURRAWONG_ECU_ENABLED
|
|
#define AP_EFI_CURRAWONG_ECU_ENABLED AP_EFI_BACKEND_DEFAULT_ENABLED && HAL_MAX_CAN_PROTOCOL_DRIVERS
|
|
#endif
|
|
|
|
#ifndef AP_EFI_DRONECAN_ENABLED
|
|
#define AP_EFI_DRONECAN_ENABLED AP_EFI_BACKEND_DEFAULT_ENABLED && HAL_ENABLE_DRONECAN_DRIVERS
|
|
#endif
|
|
|
|
#ifndef AP_EFI_MAV_ENABLED
|
|
#define AP_EFI_MAV_ENABLED AP_EFI_BACKEND_DEFAULT_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_EFI_NWPWU_ENABLED
|
|
#define AP_EFI_NWPWU_ENABLED AP_EFI_BACKEND_DEFAULT_ENABLED && HAL_MAX_CAN_PROTOCOL_DRIVERS
|
|
#endif
|
|
|
|
#ifndef AP_EFI_SCRIPTING_ENABLED
|
|
#define AP_EFI_SCRIPTING_ENABLED (AP_EFI_BACKEND_DEFAULT_ENABLED && AP_SCRIPTING_ENABLED)
|
|
#endif
|
|
|
|
#ifndef AP_EFI_SERIAL_MS_ENABLED
|
|
#define AP_EFI_SERIAL_MS_ENABLED AP_EFI_BACKEND_DEFAULT_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_EFI_SERIAL_LUTAN_ENABLED
|
|
#define AP_EFI_SERIAL_LUTAN_ENABLED AP_EFI_BACKEND_DEFAULT_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_EFI_SERIAL_HIRTH_ENABLED
|
|
#define AP_EFI_SERIAL_HIRTH_ENABLED AP_EFI_BACKEND_DEFAULT_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_EFI_THROTTLE_LINEARISATION_ENABLED
|
|
#define AP_EFI_THROTTLE_LINEARISATION_ENABLED AP_EFI_SERIAL_HIRTH_ENABLED
|
|
#endif
|