CovidBracelet/src/util.c

6 lines
140 B
C
Raw Normal View History

2022-05-25 20:47:32 +02:00
#include "time.h"
#include <zephyr.h>
// TODO: this is very basic atm
uint32_t time_get_unix_seconds() {
return k_uptime_get() / 1000;
}