Skip to content

Commit 62ac32e

Browse files
committed
fix param Increment comment
1 parent 6efe210 commit 62ac32e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

libraries/AP_AHRS/AP_AHRS.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const AP_Param::GroupInfo AP_AHRS::var_info[] = {
5959
// @DisplayName: AHRS GPS gain
6060
// @Description: This controls how much to use the GPS to correct the attitude. This should never be set to zero for a plane as it would result in the plane losing control in turns. For a plane please use the default value of 1.0.
6161
// @Range: 0.0 1.0
62-
// @Increment: .01
62+
// @Increment: 0.01
6363
// @User: Advanced
6464
AP_GROUPINFO("GPS_GAIN", 2, AP_AHRS, gps_gain, 1.0f),
6565

@@ -74,15 +74,15 @@ const AP_Param::GroupInfo AP_AHRS::var_info[] = {
7474
// @DisplayName: Yaw P
7575
// @Description: This controls the weight the compass or GPS has on the heading. A higher value means the heading will track the yaw source (GPS or compass) more rapidly.
7676
// @Range: 0.1 0.4
77-
// @Increment: .01
77+
// @Increment: 0.01
7878
// @User: Advanced
7979
AP_GROUPINFO("YAW_P", 4, AP_AHRS, _kp_yaw, 0.2f),
8080

8181
// @Param: RP_P
8282
// @DisplayName: AHRS RP_P
8383
// @Description: This controls how fast the accelerometers correct the attitude
8484
// @Range: 0.1 0.4
85-
// @Increment: .01
85+
// @Increment: 0.01
8686
// @User: Advanced
8787
AP_GROUPINFO("RP_P", 5, AP_AHRS, _kp, 0.2f),
8888

@@ -133,7 +133,7 @@ const AP_Param::GroupInfo AP_AHRS::var_info[] = {
133133
// @DisplayName: AHRS Velocity Complementary Filter Beta Coefficient
134134
// @Description: This controls the time constant for the cross-over frequency used to fuse AHRS (airspeed and heading) and GPS data to estimate ground velocity. Time constant is 0.1/beta. A larger time constant will use GPS data less and a small time constant will use air data less.
135135
// @Range: 0.001 0.5
136-
// @Increment: .01
136+
// @Increment: 0.01
137137
// @User: Advanced
138138
AP_GROUPINFO("COMP_BETA", 10, AP_AHRS, beta, 0.1f),
139139

libraries/AP_Mount/AP_Mount_Params.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ const AP_Param::GroupInfo AP_Mount_Params::var_info[] = {
139139
// @Description: Servo mount roll angle output leads the vehicle angle by this amount of time based on current roll rate. Increase until the servo is responsive but does not overshoot
140140
// @Units: s
141141
// @Range: 0.0 0.2
142-
// @Increment: .005
142+
// @Increment: 0.005
143143
// @User: Standard
144144
AP_GROUPINFO("_LEAD_RLL", 12, AP_Mount_Params, roll_stb_lead, 0.0f),
145145

@@ -148,7 +148,7 @@ const AP_Param::GroupInfo AP_Mount_Params::var_info[] = {
148148
// @Description: Servo mount pitch angle output leads the vehicle angle by this amount of time based on current pitch rate. Increase until the servo is responsive but does not overshoot
149149
// @Units: s
150150
// @Range: 0.0 0.2
151-
// @Increment: .005
151+
// @Increment: 0.005
152152
// @User: Standard
153153
AP_GROUPINFO("_LEAD_PTCH", 13, AP_Mount_Params, pitch_stb_lead, 0.0f),
154154

0 commit comments

Comments
 (0)