AP_Stats: Add missing parameter units

This commit is contained in:
Dr.-Ing. Amilcar Do Carmo Lucas 2017-01-10 16:34:47 +01:00 committed by Francisco Ferreira
parent bebb128d22
commit 363574244b
1 changed files with 3 additions and 0 deletions

View File

@ -16,18 +16,21 @@ const AP_Param::GroupInfo AP_Stats::var_info[] = {
// @Param: _FLTTIME
// @DisplayName: Total FlightTime
// @Description: Total FlightTime (seconds)
// @Units: seconds
// @User: Standard
AP_GROUPINFO("_FLTTIME", 1, AP_Stats, params.flttime, 0),
// @Param: _RUNTIME
// @DisplayName: Total RunTime
// @Description: Total time autopilot has run
// @Units: seconds
// @User: Standard
AP_GROUPINFO("_RUNTIME", 2, AP_Stats, params.runtime, 0),
// @Param: _RESET
// @DisplayName: Reset time
// @Description: Seconds since January 1st 2016 (Unix epoch+1451606400) since reset (set to 0 to reset statistics)
// @Units: seconds
// @User: Standard
AP_GROUPINFO("_RESET", 3, AP_Stats, params.reset, 1),