We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57aaabd commit 1dc15b2Copy full SHA for 1dc15b2
1 file changed
lib/APPLineFollowerSensorFusion/src/EKF.h
@@ -87,17 +87,12 @@ class ExtendedKalmanFilter4D
87
88
/**
89
* @brief Last valid NIS information for one sensor.
90
- *
91
- * @param value NIS value.
92
- * @param timestampMs Timestamp of the measurement associated with the NIS value in local ms.
93
- * @param isValid Flag indicating if the NIS value is valid (i.e., if an update step with this sensor has been
94
- * performed since the last initialization).
95
*/
96
struct NisData
97
{
98
- float value;
99
- uint32_t timestampMs;
100
- bool isValid;
+ float value; /**< Last computed NIS value. */
+ uint32_t timestampMs; /**< Timestamp of NIS computation in milliseconds. */
+ bool isValid; /**< True if the NIS value is valid and up to date. */
101
};
102
103
public:
0 commit comments