Files
ss/include/rvl/OS/OSTime.h
T
2023-12-24 09:59:13 -05:00

50 lines
1.3 KiB
C

#ifndef RVL_SDK_OS_TIME_H
#define RVL_SDK_OS_TIME_H
#include "rvl/OS/OSHardware.h"
#include <common.h>
#ifdef __cplusplus
extern "C" {
#endif
// Time base frequency = 1/4 bus clock
#define OS_TIME_SPEED (OS_BUS_CLOCK_SPEED / 4)
// OS time -> Real time
#define OS_TICKS_TO_SEC(x) ((x) / (OS_TIME_SPEED))
#define OS_TICKS_TO_MSEC(x) ((x) / (OS_TIME_SPEED / 1000))
#define OS_TICKS_TO_USEC(x) (((x) * 8) / (OS_TIME_SPEED / 125000))
#define OS_TICKS_TO_NSEC(x) (((x) * 8000) / (OS_TIME_SPEED / 125000))
// Real time -> OS time
#define OS_SEC_TO_TICKS(x) ((x) * (OS_TIME_SPEED))
#define OS_MSEC_TO_TICKS(x) ((x) * (OS_TIME_SPEED / 1000))
#define OS_USEC_TO_TICKS(x) ((x) * (OS_TIME_SPEED / 125000) / 8)
#define OS_NSEC_TO_TICKS(x) ((x) * (OS_TIME_SPEED / 125000) / 8000)
typedef struct OSCalendarTime {
s32 sec; // at 0x0
s32 min; // at 0x4
s32 hour; // at 0x8
s32 month_day; // at 0xC
s32 month; // at 0x10
s32 year; // at 0x14
s32 week_day; // at 0x18
s32 year_day; // at 0x1C
s32 msec; // at 0x20
s32 usec; // at 0x24
} OSCalendarTime;
s64 OSGetTime(void);
s32 OSGetTick(void);
s64 __OSGetSystemTime(void);
s64 __OSTimeToSystemTime(s64 time);
void OSTicksToCalendarTime(s64 time, OSCalendarTime *cal);
s64 OSCalendarTimeToTicks(const OSCalendarTime *cal);
#ifdef __cplusplus
}
#endif
#endif