AP_Arming: Expose ARMING_OPTIONS to all vehicles

This commit is contained in:
Michael du Breuil 2022-09-06 17:02:37 -07:00 committed by Andrew Tridgell
parent 7ca60d3fe0
commit c1a5d20491
1 changed files with 2 additions and 2 deletions

View File

@ -136,12 +136,12 @@ const AP_Param::GroupInfo AP_Arming::var_info[] = {
// @User: Standard
AP_GROUPINFO("CHECK", 8, AP_Arming, checks_to_perform, ARMING_CHECK_ALL),
// @Param{Copter}: OPTIONS
// @Param: OPTIONS
// @DisplayName: Arming options
// @Description: Options that can be applied to change arming behaviour
// @Values: 0:None,1:Disable prearm display
// @User: Advanced
AP_GROUPINFO_FRAME("OPTIONS", 9, AP_Arming, _arming_options, 0, AP_PARAM_FRAME_COPTER),
AP_GROUPINFO("OPTIONS", 9, AP_Arming, _arming_options, 0),
AP_GROUPEND
};