mirror of
https://github.com/CovidBraceletPrj/CovidBracelet.git
synced 2025-07-04 20:36:52 +02:00
6 lines
No EOL
140 B
C
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;
|
|
} |