mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
55 lines
1.3 KiB
C
55 lines
1.3 KiB
C
#include <stdio.h>
|
|
|
|
#include "timex.h"
|
|
|
|
timex_t timex_add(const timex_t a, const timex_t b) {
|
|
timex_t result;
|
|
result.seconds = a.seconds + b.seconds;
|
|
result.microseconds = a.microseconds + b.microseconds;
|
|
|
|
if (result.microseconds < a.microseconds) {
|
|
result.seconds++;
|
|
}
|
|
|
|
/* if (result.microseconds > 1000000) {
|
|
result.microseconds -= 1000000;
|
|
result.seconds++;
|
|
}
|
|
*/
|
|
return result;
|
|
}
|
|
|
|
void timex_normalize(timex_t *time) {
|
|
time->seconds += (time->microseconds / 1000000);
|
|
time->microseconds %= 1000000;
|
|
}
|
|
|
|
timex_t timex_set(uint32_t seconds, uint32_t microseconds) {
|
|
timex_t result;
|
|
result.seconds = seconds;
|
|
result.microseconds = microseconds;
|
|
|
|
return result;
|
|
}
|
|
|
|
timex_t timex_sub(const timex_t a, const timex_t b) {
|
|
timex_t result;
|
|
result.seconds = a.seconds - b.seconds;
|
|
result.microseconds = a.microseconds - b.microseconds;
|
|
|
|
return result;
|
|
}
|
|
|
|
int timex_cmp(const timex_t a, const timex_t b) {
|
|
if (a.seconds < b.seconds) return -1;
|
|
if (a.seconds == b.seconds) {
|
|
if (a.microseconds < b.microseconds) return -1;
|
|
if (a.microseconds == b.microseconds) return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
void timex_print(const timex_t t) {
|
|
printf("Seconds: %u - Microseconds: %u\n", t.seconds, t.microseconds);
|
|
}
|