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

#include <msp430.h>
#include <stdint.h>

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

	public:
		Uptime () {}
		inline uint16_t get_us() { return TA0R; }
		inline uint16_t get_s() { return 0; }
		inline uint16_t get_cycles() { return TA2R; }
};

extern Uptime uptime;

#endif