From 4bdb245244e4e1abdd8d7a1e959d2246eee8c2b7 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 22 Jun 2021 13:18:24 +1000 Subject: [PATCH] AP_Logger: remove @Values from param metadata where @Bitmask exists --- libraries/AP_Logger/AP_Logger.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/libraries/AP_Logger/AP_Logger.cpp b/libraries/AP_Logger/AP_Logger.cpp index 0d1937fb62..980add0e44 100644 --- a/libraries/AP_Logger/AP_Logger.cpp +++ b/libraries/AP_Logger/AP_Logger.cpp @@ -60,7 +60,6 @@ const AP_Param::GroupInfo AP_Logger::var_info[] = { // @Param: _BACKEND_TYPE // @DisplayName: AP_Logger Backend Storage type // @Description: Bitmap of what Logger backend types to enable. Block-based logging is available on SITL and boards with dataflash chips. Multiple backends can be selected. - // @Values: 0:None,1:File,2:MAVLink,3:File and MAVLink,4:Block,6:Block and MAVLink // @Bitmask: 0:File,1:MAVLink,2:Block // @User: Standard AP_GROUPINFO("_BACKEND_TYPE", 0, AP_Logger, _params.backend_types, uint8_t(HAL_LOGGING_BACKENDS_DEFAULT)),