summaryrefslogtreecommitdiff
path: root/include/msp430fr5969lp/driver/uptime.h
blob: f18a7fe1d65b32bf04bb4501c40b80e13b8ab11b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef UPTIME_H
#define UPTIME_H

#include <stdint.h>

class Uptime {
	private:
		Uptime(const Uptime &copy);

	public:
		Uptime () {}
		uint32_t get();
};

extern Uptime uptime;

#endif