Skip to content

Commit

Permalink
fix units in LSB comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mdb15106 committed Nov 11, 2020
1 parent 7247ff7 commit 3e9af5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mission_constants.hh
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ float buffCountDown;
* See MPU6050::getAcceleration docstring for options.
* Current setting is a full-scale range of +/- 8 gee.
*/
const float LSB_LINEAR = 2048.0; // (milli-gee/LSB) note documentation gives incorrectly inverted units
const float LSB_LINEAR = 2048.0; // (milli-gee/count) note documentation gives incorrectly inverted units

/* LSB value for angular velocity measurements.
* See MPU6050::getRotation docstring for options.
* Current setting is a full-scale range of +/-m 250 deg/s.
*/
const float LSB_ANGULAR = 131.0; // (deg/s/LSB) note documentation gives incorrectly inverted units
const float LSB_ANGULAR = 131.0; // (deg/s/count) note documentation gives incorrectly inverted units

/* These bias calibration values account for sensor bias
* in linear acceleration measurements. Can't be declared
Expand Down

0 comments on commit 3e9af5a

Please sign in to comment.