Skip to content

Commit

Permalink
Base formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
gorbit99 committed Nov 13, 2024
1 parent 49ef1ef commit 75fc842
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/logging/Logger.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Logger {
public:
Logger(const char* prefix)
: m_Prefix(prefix)
, m_Tag(nullptr){};
, m_Tag(nullptr) {};
Logger(const char* prefix, const char* tag)
: m_Prefix(prefix)
, m_Tag(nullptr) {
Expand Down
2 changes: 1 addition & 1 deletion src/motionprocessing/GyroTemperatureCalibrator.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ struct GyroTemperatureCalibrationState {
, tSum(0.0f)
, xSum(0)
, ySum(0)
, zSum(0){};
, zSum(0) {};
};

struct GyroTemperatureOffsetSample {
Expand Down
12 changes: 6 additions & 6 deletions src/sensors/EmptySensor.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ namespace Sensors {
class EmptySensor : public Sensor {
public:
EmptySensor(uint8_t id)
: Sensor("EmptySensor", ImuID::Empty, id, 0, 0.0){};
~EmptySensor(){};
: Sensor("EmptySensor", ImuID::Empty, id, 0, 0.0) {};
~EmptySensor() {};

void motionSetup() override final{};
void motionLoop() override final{};
void sendData() override final{};
void startCalibration(int calibrationType) override final{};
void motionSetup() override final {};
void motionLoop() override final {};
void sendData() override final {};
void startCalibration(int calibrationType) override final {};
SensorStatus getSensorState() override final {
return SensorStatus::SENSOR_OFFLINE;
};
Expand Down

0 comments on commit 75fc842

Please sign in to comment.