2010-09-22 15:10:42 +02:00
|
|
|
/*
|
|
|
|
* lpc2387_timer0.c
|
|
|
|
*
|
|
|
|
* Created on: 13.01.2009
|
|
|
|
* Author: heiko
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "lpc2387.h"
|
|
|
|
|
|
|
|
void benchmark_init(void)
|
|
|
|
{
|
2013-09-19 16:53:35 +02:00
|
|
|
PCLKSEL1 = (PCLKSEL1 & ~(BIT14|BIT15)) | (1 << 14); // CCLK to PCLK divider
|
|
|
|
PCONP |= PCTIM3;
|
|
|
|
T3TCR = 0; // disable timer
|
|
|
|
T3MCR = 0; // disable interrupt
|
|
|
|
T3CCR = 0; // capture is disabled.
|
|
|
|
T3EMR = 0; // no external match output.
|
|
|
|
T3PR = 0; // set prescaler
|
|
|
|
T3TC = 0; // reset counter
|
2010-09-22 15:10:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void benchmark_reset_start(void)
|
|
|
|
{
|
2013-09-19 16:53:35 +02:00
|
|
|
T3TCR = 0; // disable timer
|
|
|
|
T3TC = 0; // reset counter
|
|
|
|
T3TCR = BIT0;
|
2010-09-22 15:10:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int benchmark_read_stop(void)
|
|
|
|
{
|
2013-09-19 16:53:35 +02:00
|
|
|
T3TCR = 0; // disable timer
|
|
|
|
return T3TC;
|
2010-09-22 15:10:42 +02:00
|
|
|
}
|
|
|
|
|