AP_Logger: fix _RATEMAX parameter descriptions

This commit is contained in:
Mark Whitehorn 2022-01-10 07:37:42 -07:00 committed by Peter Barker
parent 21b7a8b682
commit 5f7f1cff2b
1 changed files with 3 additions and 3 deletions

View File

@ -118,7 +118,7 @@ const AP_Param::GroupInfo AP_Logger::var_info[] = {
// @Param: _FILE_RATEMAX
// @DisplayName: Maximum logging rate for file backend
// @Description: This sets the maximum rate that streaming log messages will be logged to the file backend. A value of zero means
// @Description: This sets the maximum rate that streaming log messages will be logged to the file backend. A value of zero means that rate limiting is disabled.
// @Units: Hz
// @Range: 0 1000
// @User: Standard
@ -127,7 +127,7 @@ const AP_Param::GroupInfo AP_Logger::var_info[] = {
#if HAL_LOGGING_MAVLINK_ENABLED
// @Param: _MAV_RATEMAX
// @DisplayName: Maximum logging rate for mavlink backend
// @Description: This sets the maximum rate that streaming log messages will be logged to the mavlink backend. A value of zero means
// @Description: This sets the maximum rate that streaming log messages will be logged to the mavlink backend. A value of zero means that rate limiting is disabled.
// @Units: Hz
// @Range: 0 1000
// @User: Standard
@ -137,7 +137,7 @@ const AP_Param::GroupInfo AP_Logger::var_info[] = {
#if HAL_LOGGING_BLOCK_ENABLED
// @Param: _BLK_RATEMAX
// @DisplayName: Maximum logging rate for block backend
// @Description: This sets the maximum rate that streaming log messages will be logged to the mavlink backend. A value of zero means
// @Description: This sets the maximum rate that streaming log messages will be logged to the mavlink backend. A value of zero means that rate limiting is disabled.
// @Units: Hz
// @Range: 0 1000
// @User: Standard