- changed timer frequency - prepared for SW timer - added PowerSwitch_in git-svn-id: http://moon:8086/svn/projects/HendiControl@30 fda53097-d464-4ada-af97-ba876c37ca34
22 lines
365 B
C
22 lines
365 B
C
/*
|
|
* timer.c
|
|
*
|
|
* Created: 20.02.2019 20:56:18
|
|
* Author: jens
|
|
*/
|
|
|
|
#include <avr/io.h>
|
|
#include "timer.h"
|
|
|
|
void timer_init(uint16_t TIMER_RELOAD, TimerClockSel clockSel)
|
|
{
|
|
|
|
TCNT1 = TIMER_RELOAD;
|
|
|
|
TCCR1A = 0x00;
|
|
TCCR1B = (TCCR1B & TimerClockSel_mask) | clockSel;
|
|
TIMSK1 = (1 << TOIE1) ; // Enable timer1 overflow interrupt(TOIE1)
|
|
|
|
}
|
|
|