Skip to content

Commit

Permalink
AP_Stats: Add missing parameter units
Browse files Browse the repository at this point in the history
  • Loading branch information
amilcarlucas authored and OXINARF committed Jan 16, 2017
1 parent bebb128 commit 3635742
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libraries/AP_Stats/AP_Stats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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),

Expand Down

0 comments on commit 3635742

Please sign in to comment.