blob: f83bd1b41980662cff073ebe59749c6a8bbce2e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
/*
* c't-Bot
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
* Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your
* option) any later version.
* This program is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the Free
* Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307, USA.
*
*/
/*! @file timer-low.c
* @brief Timer und counter für den Mikrocontroller
* @author Benjamin Benz (bbe@heise.de)
* @date 26.12.05
*/
#ifdef MCU
#include "ct-Bot.h"
#include <avr/io.h>
#include <avr/interrupt.h>
#ifndef NEW_AVR_LIB
#include <avr/signal.h>
#endif
#include "ct-Bot.h"
#include "timer.h"
#include "ir-rc5.h"
#include "sensor-low.h"
#include "bot-local.h"
// ---- Timer 2 ------
/*!
Interrupt Handler fuer Timer/Counter 2(A)
*/
#ifdef __AVR_ATmega644__
SIGNAL (TIMER2_COMPA_vect){
#else
SIGNAL (SIG_OUTPUT_COMPARE2){
#endif
/* - FERNBEDIENUNG - */
#ifdef IR_AVAILABLE
ir_isr();
#endif
/* ----- TIMER ----- */
tickCount.u32++; // TickCounter [176 us] erhoehen
/* --- RADENCODER --- */
bot_encoder_isr();
}
/*!
* initilaisiert Timer 0 und startet ihn
*/
void timer_2_init(void){
TCNT2 = 0x00; // TIMER vorladen
// aendert man den Prescaler muss man die Formel fuer OCR2 anpassen !!!
// Compare Register nur 8-Bit breit --> evtl. teiler anpassen
#ifdef __AVR_ATmega644__
TCCR2A = _BV(WGM21); // CTC Mode
TCCR2B = _BV(CS22); // Prescaler = CLK/64
OCR2A = ((XTAL/64/TIMER_2_CLOCK) - 1); // Timer2A
TIMSK2 |= _BV(OCIE2A); // TIMER2 Output Compare Match A Interrupt an
#else
// use CLK/64 prescale value, clear timer/counter on compare match
TCCR2 = _BV(WGM21) | _BV(CS22);
OCR2 = ((XTAL/64/TIMER_2_CLOCK) - 1);
TIMSK |= _BV(OCIE2); // enable Output Compare 0 overflow interrupt
#endif
sei(); // enable interrupts
}
#endif
|