1
0
mirror of https://github.com/CovidBraceletPrj/CovidBracelet.git synced 2024-06-10 14:39:57 +02:00
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;
}