mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-23 19:17:01 +00:00
11 lines
167 B
C
11 lines
167 B
C
#ifndef _UPTIME_H
|
|
#define _UPTIME_H
|
|
|
|
#include "Arduino.h"
|
|
|
|
static uint32_t _uptime_last_value = 0;
|
|
static uint32_t _uptime_rollovers = 0;
|
|
uint64_t millis64();
|
|
|
|
#endif
|