mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
191e5eb9c9
Important to include AP_HAL_Boards.h directly, rather than relying on someone else having done it or getting it transitively
28 lines
674 B
C
28 lines
674 B
C
#pragma once
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
|
|
|
#ifndef HAL_GENERATOR_ENABLED
|
|
#define HAL_GENERATOR_ENABLED !HAL_MINIMIZE_FEATURES
|
|
#endif
|
|
|
|
#ifndef AP_GENERATOR_BACKEND_DEFAULT_ENABLED
|
|
#define AP_GENERATOR_BACKEND_DEFAULT_ENABLED HAL_GENERATOR_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_GENERATOR_IE_ENABLED
|
|
#define AP_GENERATOR_IE_ENABLED AP_GENERATOR_BACKEND_DEFAULT_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_GENERATOR_IE2400_ENABLED
|
|
#define AP_GENERATOR_IE2400_ENABLED AP_GENERATOR_IE_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_GENERATOR_IE650_800_ENABLED
|
|
#define AP_GENERATOR_IE650_800_ENABLED AP_GENERATOR_IE_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_GENERATOR_RICHENPOWER_ENABLED
|
|
#define AP_GENERATOR_RICHENPOWER_ENABLED 0
|
|
#endif
|