1
0
Fork 0
mirror of https://github.com/CovidBraceletPrj/CovidBracelet.git synced 2025-07-04 20:36:52 +02:00
CovidBracelet/src/util.c
2023-02-16 17:48:17 +01:00

6 lines
No EOL
140 B
C

#include "time.h"
#include <zephyr.h>
// TODO: this is very basic atm
uint32_t time_get_unix_seconds() {
return k_uptime_get() / 1000;
}