-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
IMU and GNSS sensors usually work at different sampling frequencies and the data delivery of both measurements is not synchronized either. And, in fact, this is not a problem. Each sensor has its own timestamp vector ( I hope these comments will be helpful. Kind regards. |
Beta Was this translation helpful? Give feedback.
IMU and GNSS sensors usually work at different sampling frequencies and the data delivery of both measurements is not synchronized either. And, in fact, this is not a problem. Each sensor has its own timestamp vector (
imu.t
andgnss.t
), Navego compares both vectors at each imu.t timestamp. If a new GNSS data is available inside a time window ε (epsilon), where the inertial current timestamp is centered in the middle, the Kalman filter is executed. If not, the inertial navigation system keeps executing. Seeins_gnss.m
line 315.I hope these comments will be helpful.
Kind regards.