1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

* export hwtimer function to set counter register value

This commit is contained in:
Kaspar Schleiser 2010-09-24 16:27:10 +02:00
parent 52bca573f4
commit 9e930037f8

View File

@ -172,3 +172,7 @@ void hwtimer_arch_unset(short timer) {
unsigned long hwtimer_arch_now(void) {
return T0TC;
}
void hwtimer_arch_setcounter(unsigned int val) {
T0TC = val;
}