Skip to content

Commit

Permalink
Update protocol.md
Browse files Browse the repository at this point in the history
  • Loading branch information
twdragon authored Aug 7, 2023
1 parent acea940 commit eed1e95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Here and below, \f$ V \f$ is the **measured** value obtained from the device, \f
| Quaternion component | | \f$ D = \frac{V}{32768} \f$ | float |
| Altimetry | \f$ m \f$ | \f$ D = \frac{V}{100} \f$ | float |
| GPS coordinate, rough/degrees part | \f$ deg \f$ | \f$ D = \frac{V}{10^7} \f$ | double-precision float |
| GPS coordinate, fine/minute part | \f$ min \f$ | \f$ D = \frac{V \mod 10^7}{6 \cdot 10^6} \f$ | double-precision float |
| GPS coordinate, fine/minute part | \f$ min \f$ | \f$ D = \frac{V \mod 10^7}{10^5} \f$ | double-precision float |
| GPS altimetry | \f$ m \f$ | \f$ D = \frac{V}{10} \f$ | float |
| GPS angular velocity | \f$ rad/s \f$ | \f$ D = \frac{V}{10} \f$ | float |
| GPS ground speed | \f$ m/s \f$ | \f$ D = \frac{V}{10^3} \f$ | double-precision float |
Expand Down

0 comments on commit eed1e95

Please sign in to comment.