mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
27 lines
803 B
PHP
27 lines
803 B
PHP
# this is an include file to be used on low-flash boards which are not
|
|
# generally used for FPV/OSD purposes. Care must be taken to
|
|
# preserve existing features on these boards.
|
|
|
|
include minimize_common.inc
|
|
|
|
# remove various OSD features by default:
|
|
define OSD_ENABLED 0
|
|
define HAL_PLUSCODE_ENABLE 0
|
|
define HAL_OSD_SIDEBAR_ENABLE 0
|
|
define OSD_PARAM_ENABLED 0
|
|
|
|
# Crossfire telemetry must be explicitly enabled on minimized boards:
|
|
define HAL_CRSF_TELEM_ENABLED 0
|
|
|
|
# Soaring is off by defauult on of smaller boards.
|
|
define HAL_SOARING_ENABLED 0
|
|
|
|
# RunCam control isn't available on smaller boards
|
|
define HAL_RUNCAM_ENABLED 0
|
|
|
|
# minimized boards don't get configuration via SmartAudio by default:
|
|
define AP_SMARTAUDIO_ENABLED 0
|
|
|
|
# can't fit Turtle mode on minimized boards:
|
|
define MODE_TURTLE_ENABLED 0
|