1
0
forked from fsfw/fsfw

fifo features and stopwatch enhancement

This commit is contained in:
2020-04-23 14:06:48 +02:00
parent ee2ee745c7
commit 44d4678089
2 changed files with 22 additions and 1 deletions

View File

@ -56,12 +56,13 @@ public:
StopwatchDisplayMode getDisplayMode() const;
void setDisplayMode(StopwatchDisplayMode displayMode);
bool displayOnDestruction = true;
private:
timeval startTime {0, 0};
timeval elapsedTime {0, 0};
StopwatchDisplayMode displayMode = StopwatchDisplayMode::MILLIS;
bool displayOnDestruction = true;
void stopInternal();
};