|
|
|
@ -16,9 +16,13 @@ void timerActivateBus(timerNo_t timer)
|
|
|
|
|
|
|
|
|
|
void timerEnableTimer(timerNo_t timer)
|
|
|
|
|
{
|
|
|
|
|
//BASE->CR1 &= ~0x01; //all the timers have the same CEN bit in CR1 register pos 0
|
|
|
|
|
BASE->CR1 |= 0x01; //all the timers have the same CEN bit in CR1 register pos 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void timerDisableTimer(timerNo_t timer)
|
|
|
|
|
{
|
|
|
|
|
BASE->CR1 &=~ 0x01; //all the timers have the same CEN bit in CR1 register pos 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void timerSetClkSource(timerNo_t timer, clkSources_t clk)
|
|
|
|
|
{
|
|
|
|
@ -27,12 +31,18 @@ void timerSetClkSource(timerNo_t timer, clkSources_t clk)
|
|
|
|
|
|
|
|
|
|
void timerSetMode(timerNo_t timer, timerMode_t mode)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void timerSetCountDirection(timerNo_t timer, timerCountDirection_t direction)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
if(direction == upCounting)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
BASE->CR1 &=~ TIM_CR1_DIR;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BASE->CR1 |= TIM_CR1_DIR;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void timerSetPrescaler(timerNo_t timer, uint32_t prescaler)
|
|
|
|
@ -55,11 +65,29 @@ void timerClearCounter(timerNo_t timer)
|
|
|
|
|
BASE->CNT = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uint8_t timerGetUpdateInterrupt(timerNo_t timer)
|
|
|
|
|
{
|
|
|
|
|
return (BASE->SR & 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void timerClearUpdateInterrupt(timerNo_t timer)
|
|
|
|
|
{
|
|
|
|
|
BASE->SR &= ~1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Second stage configuration */
|
|
|
|
|
void timerSetHz(timerNo_t timer, uint16_t hz)
|
|
|
|
|
{
|
|
|
|
|
uint32_t prescaler;
|
|
|
|
|
uint32_t period;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
timerActivateBus(timer);
|
|
|
|
|
timerSetPrescaler(timer, 1599);
|
|
|
|
|
timerSetAutoReload(timer, 9999);
|
|
|
|
|
timerClearCounter(timer);
|
|
|
|
|
timerEnableTimer(timer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void timerSetMs(timerNo_t timer, uint16_t ms)
|
|
|
|
@ -90,7 +118,7 @@ void timerStop(timerNo_t timer)
|
|
|
|
|
|
|
|
|
|
uint32_t timerGetCount(timerNo_t timer)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
return BASE->CNT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|