1
0
forked from fsfw/fsfw

typedef renamed

This commit is contained in:
2020-06-04 13:01:59 +02:00
parent 70454b4640
commit ef13249405
3 changed files with 7 additions and 6 deletions

View File

@ -8,8 +8,9 @@
#include <cstdint>
#include <sys/time.h>
typedef uint32_t millis_t;
typedef double seconds_t;
//! Don't use these for time points, type is not large enough for UNIX epoch.
typedef uint32_t dur_millis_t;
typedef double dur_seconds_t;
class Clock {
public: