Skip to content

Commit 1dc15b2

Browse files
author
Tobias Haeckel
committed
changed comments
1 parent 57aaabd commit 1dc15b2

1 file changed

Lines changed: 3 additions & 8 deletions

File tree

  • lib/APPLineFollowerSensorFusion/src

lib/APPLineFollowerSensorFusion/src/EKF.h

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -87,17 +87,12 @@ class ExtendedKalmanFilter4D
8787

8888
/**
8989
* @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).
9590
*/
9691
struct NisData
9792
{
98-
float value;
99-
uint32_t timestampMs;
100-
bool isValid;
93+
float value; /**< Last computed NIS value. */
94+
uint32_t timestampMs; /**< Timestamp of NIS computation in milliseconds. */
95+
bool isValid; /**< True if the NIS value is valid and up to date. */
10196
};
10297

10398
public:

0 commit comments

Comments
 (0)