summaryrefslogtreecommitdiff
path: root/src/arch/msp430fr5969lp/driver/uptime.cc
blob: 6d16441a0276209e90547b53ab853bdca76bee3f (plain)
1
2
3
4
5
6
7
8
9
#include "driver/uptime.h"
#include <msp430.h>

uint32_t Uptime::get()
{
	return TA0R;
}

Uptime uptime;