time systems
This commit is contained in:
parent
a3a6c0720c
commit
9894935e99
20
src/fsfw/globalfunctions/timeSystems.h
Normal file
20
src/fsfw/globalfunctions/timeSystems.h
Normal 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_ */
|
Loading…
Reference in New Issue
Block a user