File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
2
* @file Fusion.h
3
3
* @author Seb Madgwick
4
- * @brief Main header file for the Fusion library. This is the only file that
4
+ * @brief Main header file for the Fusion library. This is the only file that
5
5
* needs to be included when using the library.
6
6
*/
7
7
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ void FusionAhrsInitialise(FusionAhrs *const ahrs) {
57
57
}
58
58
59
59
/**
60
- * @brief Resets the AHRS algorithm. This is equivalent to reinitialising the
60
+ * @brief Resets the AHRS algorithm. This is equivalent to reinitialising the
61
61
* algorithm while maintaining the current settings.
62
62
* @param ahrs AHRS algorithm structure.
63
63
*/
@@ -487,7 +487,7 @@ FusionAhrsFlags FusionAhrsGetFlags(const FusionAhrs *const ahrs) {
487
487
488
488
/**
489
489
* @brief Sets the heading of the orientation measurement provided by the AHRS
490
- * algorithm. This function can be used to reset drift in heading when the AHRS
490
+ * algorithm. This function can be used to reset drift in heading when the AHRS
491
491
* algorithm is being used without a magnetometer.
492
492
* @param ahrs AHRS algorithm structure.
493
493
* @param heading Heading angle in degrees.
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ typedef struct {
31
31
} FusionAhrsSettings ;
32
32
33
33
/**
34
- * @brief AHRS algorithm structure. Structure members are used internally and
34
+ * @brief AHRS algorithm structure. Structure members are used internally and
35
35
* must not be accessed by the application.
36
36
*/
37
37
typedef struct {
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ typedef union {
65
65
} FusionMatrix ;
66
66
67
67
/**
68
- * @brief Euler angles. Roll, pitch, and yaw correspond to rotations around
68
+ * @brief Euler angles. Roll, pitch, and yaw correspond to rotations around
69
69
* X, Y, and Z respectively.
70
70
*/
71
71
typedef union {
@@ -362,9 +362,9 @@ static inline FusionQuaternion FusionQuaternionMultiply(const FusionQuaternion q
362
362
}
363
363
364
364
/**
365
- * @brief Returns the multiplication of a quaternion with a vector. This is a
365
+ * @brief Returns the multiplication of a quaternion with a vector. This is a
366
366
* normal quaternion multiplication where the vector is treated a
367
- * quaternion with a W element value of zero. The quaternion is post-
367
+ * quaternion with a W element value of zero. The quaternion is post-
368
368
* multiplied by the vector.
369
369
* @param quaternion Quaternion.
370
370
* @param vector Vector.
Original file line number Diff line number Diff line change 17
17
// Definitions
18
18
19
19
/**
20
- * @brief Gyroscope offset algorithm structure. Structure members are used
20
+ * @brief Gyroscope offset algorithm structure. Structure members are used
21
21
* internally and must not be accessed by the application.
22
22
*/
23
23
typedef struct {
You can’t perform that action at this time.
0 commit comments