From 98a43cc4b515cbb30709e4baaf07c5e42940b702 Mon Sep 17 00:00:00 2001 From: "Dr.-Ing. Amilcar Do Carmo Lucas" Date: Tue, 2 May 2017 15:39:54 +0200 Subject: [PATCH] AP_AHRS: Use SI units conventions in parameter units Follow the rules from: http://physics.nist.gov/cuu/Units/units.html http://physics.nist.gov/cuu/Units/outside.html and http://physics.nist.gov/cuu/Units/checklist.html one further constrain is that only printable (7bit) ASCII characters are allowed --- libraries/AP_AHRS/AP_AHRS.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/AP_AHRS/AP_AHRS.cpp b/libraries/AP_AHRS/AP_AHRS.cpp index c15790591b..92ea40bc46 100644 --- a/libraries/AP_AHRS/AP_AHRS.cpp +++ b/libraries/AP_AHRS/AP_AHRS.cpp @@ -69,7 +69,7 @@ const AP_Param::GroupInfo AP_AHRS::var_info[] = { // @Param: TRIM_X // @DisplayName: AHRS Trim Roll // @Description: Compensates for the roll angle difference between the control board and the frame. Positive values make the vehicle roll right. - // @Units: Radians + // @Units: rad // @Range: -0.1745 +0.1745 // @Increment: 0.01 // @User: Standard @@ -77,7 +77,7 @@ const AP_Param::GroupInfo AP_AHRS::var_info[] = { // @Param: TRIM_Y // @DisplayName: AHRS Trim Pitch // @Description: Compensates for the pitch angle difference between the control board and the frame. Positive values make the vehicle pitch up/back. - // @Units: Radians + // @Units: rad // @Range: -0.1745 +0.1745 // @Increment: 0.01 // @User: Standard @@ -85,7 +85,7 @@ const AP_Param::GroupInfo AP_AHRS::var_info[] = { // @Param: TRIM_Z // @DisplayName: AHRS Trim Yaw // @Description: Not Used - // @Units: Radians + // @Units: rad // @Range: -0.1745 +0.1745 // @Increment: 0.01 // @User: Advanced