time systems

This commit is contained in:
Marius Eggert 2024-02-12 14:42:58 +01:00
parent a3a6c0720c
commit 9894935e99
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
#ifndef FSFW_SRC_FSFW_GLOBALFUNCTIONS_TIMESYSTEMS_H_
#define FSFW_SRC_FSFW_GLOBALFUNCTIONS_TIMESYSTEMS_H_
#ifdef PLATFORM_WIN
#include <winsock2.h>
#else
#include <sys/time.h>
#endif
class TimeSystems {
public:
virtual ~TimeSystems() {}
static double convertUnixToJD2000(timeval time) {
// time = {{s},{us}}
return (time.tv_sec / 86400.0) + 2440587.5 - 2451545;
}
};
#endif /* FSFW_SRC_FSFW_GLOBALFUNCTIONS_TIMESYSTEMS_H_ */