Skip to content

Commit

Permalink
Merge pull request #98 from Terrapin-Rocket-Team/Integrate-BlinkBuzz
Browse files Browse the repository at this point in the history
Integrate blink buzz, Kalman Filter, Sensor Bias correction
  • Loading branch information
varun-un authored Apr 23, 2024
2 parents e718ebc + 3690b0e commit 81efecf
Show file tree
Hide file tree
Showing 57 changed files with 88,703 additions and 2,025 deletions.
3 changes: 3 additions & 0 deletions Spaceport/23-24/Code/Teensy-Based Avionics/include/Sensor.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,12 @@ class Sensor

virtual bool isInitialized() { return initialized; } // Returns whether the sensor has been initialized or not

virtual void setBiasCorrectionMode(bool mode) = 0; // Sets whether the sensor should be in bias correction mode or not

virtual explicit operator bool() const { return initialized; } // Returns whether the sensor has been initialized or not
protected:
bool initialized = false;
bool biasCorrectionMode = true;
};

#endif // SENSOR_H

This file was deleted.

Loading

0 comments on commit 81efecf

Please sign in to comment.