Skip to content

Commit

Permalink
AP_Airspeed: Calibration: remove unused DT
Browse files Browse the repository at this point in the history
  • Loading branch information
IamPete1 authored and peterbarker committed Feb 5, 2025
1 parent f6922db commit 54a71ce
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion libraries/AP_Airspeed/AP_Airspeed.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ class Airspeed_Calibration {
const float Q0; // process noise matrix top left and middle element
const float Q1; // process noise matrix bottom right element
Vector3f state; // state vector
const float DT; // time delta
};

class AP_Airspeed
Expand Down
1 change: 0 additions & 1 deletion libraries/AP_Airspeed/Airspeed_Calibration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ Airspeed_Calibration::Airspeed_Calibration()
, Q0(0.01f)
, Q1(0.0000005f)
, state(0, 0, 0)
, DT(1)
{
}

Expand Down

0 comments on commit 54a71ce

Please sign in to comment.