2022-07-15 08:53:41 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
|
|
|
|
|
|
|
#include <AP_EFI/AP_EFI_config.h>
|
2023-05-13 07:11:03 -03:00
|
|
|
#include <AP_Generator/AP_Generator_config.h>
|
2022-07-15 08:53:41 -03:00
|
|
|
|
|
|
|
#ifndef AP_RPM_ENABLED
|
|
|
|
#define AP_RPM_ENABLED 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AP_RPM_BACKEND_DEFAULT_ENABLED
|
|
|
|
#define AP_RPM_BACKEND_DEFAULT_ENABLED AP_RPM_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AP_RPM_EFI_ENABLED
|
|
|
|
#define AP_RPM_EFI_ENABLED AP_RPM_BACKEND_DEFAULT_ENABLED && HAL_EFI_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AP_RPM_ESC_TELEM_ENABLED
|
|
|
|
#define AP_RPM_ESC_TELEM_ENABLED AP_RPM_BACKEND_DEFAULT_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AP_RPM_HARMONICNOTCH_ENABLED
|
|
|
|
#define AP_RPM_HARMONICNOTCH_ENABLED AP_RPM_BACKEND_DEFAULT_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AP_RPM_PIN_ENABLED
|
|
|
|
#define AP_RPM_PIN_ENABLED AP_RPM_BACKEND_DEFAULT_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AP_RPM_SIM_ENABLED
|
|
|
|
#define AP_RPM_SIM_ENABLED AP_RPM_BACKEND_DEFAULT_ENABLED && AP_SIM_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AP_RPM_GENERATOR_ENABLED
|
|
|
|
#define AP_RPM_GENERATOR_ENABLED AP_RPM_BACKEND_DEFAULT_ENABLED && HAL_GENERATOR_ENABLED
|
|
|
|
#endif
|