mirror of https://github.com/ArduPilot/ardupilot
hwdef: add comments clarifying use of each of the minimize includes
This commit is contained in:
parent
91e1dac053
commit
d3c32ba440
|
@ -1,3 +1,8 @@
|
|||
# this include file is used to remove features which will never be
|
||||
# wanted on any low-flash board in our standard builds. It is to be
|
||||
# included by other minimize_*.inc files and not generally used
|
||||
# otherwise.
|
||||
|
||||
# disable emitting nice strings when activating RC channel aux functions:
|
||||
define AP_RC_CHANNEL_AUX_FUNCTION_STRINGS_ENABLED 0
|
||||
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
# 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:
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
# this is an include file for low-flash boards typically used in
|
||||
# vehicles used for FPV/OSD flight. These boards are unlikely to need
|
||||
# drivers for rare sensors and power systems.
|
||||
|
||||
include minimize_common.inc
|
||||
|
||||
define AP_OPTICALFLOW_ENABLED 0
|
||||
|
|
Loading…
Reference in New Issue