ADD cpplint args in action file
This commit is contained in:
@@ -25,9 +25,9 @@
|
||||
#pragma once
|
||||
|
||||
// from advembsof
|
||||
#include "cpu_logger.hpp"
|
||||
#include "display_device.hpp"
|
||||
#include "task_logger.hpp"
|
||||
#include "cpu_logger.hpp"
|
||||
|
||||
// from common
|
||||
#include "sensor_device.hpp"
|
||||
@@ -79,12 +79,12 @@ class BikeSystem {
|
||||
Timer _timer;
|
||||
// data member that represents the device for manipulating the gear
|
||||
GearDevice _gearDevice;
|
||||
uint8_t _currentGear = bike_computer::kMinGear;
|
||||
uint8_t _currentGear = bike_computer::kMinGear;
|
||||
uint8_t _currentGearSize = bike_computer::kMinGearSize;
|
||||
// data member that represents the device for manipulating the pedal rotation
|
||||
// speed/time
|
||||
PedalDevice _pedalDevice;
|
||||
float _currentSpeed = 0.0f;
|
||||
float _currentSpeed = 0.0f;
|
||||
float _traveledDistance = 0.0f;
|
||||
// data member that represents the device used for resetting
|
||||
ResetDevice _resetDevice;
|
||||
@@ -103,4 +103,4 @@ class BikeSystem {
|
||||
advembsof::CPULogger _cpuLogger;
|
||||
};
|
||||
|
||||
} // namespace static_scheduling
|
||||
} // namespace static_scheduling
|
||||
|
||||
Reference in New Issue
Block a user