Skip to content

Commit

Permalink
fix booster compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mpkarpov-ui committed Feb 18, 2025
1 parent db3a23e commit 559ee4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MIDAS/src/systems.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ DECLARE_THREAD(kalman, RocketSystems* arg) {
};
float dt = pdTICKS_TO_MS(xTaskGetTickCount() - last) / 1000.0f;
float timestamp = pdTICKS_TO_MS(xTaskGetTickCount()) / 1000.0f;
ekf.tick(dt, 13.0, current_barom_buf, current_accelerations, current_orientation, FSM_state);
KalmanData current_state = ekf.getState();
yessir.tick(dt, 13.0, current_barom_buf, current_accelerations, current_orientation, FSM_state);
KalmanData current_state = yessir.getState();

arg->rocket_data.kalman.update(current_state);

Expand Down

0 comments on commit 559ee4d

Please sign in to comment.