Subversion Repositories Projects

Rev

Rev 274 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
231 killagreg 1
#include <inttypes.h>
2
#include <avr/io.h>
3
#include <avr/interrupt.h>
4
 
274 killagreg 5
#include "timer0.h"
231 killagreg 6
 
7
volatile uint16_t CountMilliseconds = 0;
274 killagreg 8
DateTime_t SystemTime;
9
 
271 killagreg 10
#ifdef USE_FOLLOWME
11
volatile uint16_t BeepTime = 0;
12
volatile uint16_t BeepModulation = 0xFFFF;
13
#endif
231 killagreg 14
 
15
 
16
/*****************************************************/
17
/*              Initialize Timer 0                   */
18
/*****************************************************/
19
// timer 0 is used for the PWM generation to control the offset voltage at the air pressure sensor
20
// Its overflow interrupt routine is used to generate the beep signal and the flight control motor update rate
21
void TIMER0_Init(void)
22
{
23
        uint8_t sreg = SREG;
24
 
25
        // disable all interrupts before reconfiguration
26
        cli();
27
 
271 killagreg 28
 
29
        // configure speaker port as output
30
 
31
        #ifdef USE_FOLLOWME
32
        // Speaker at PC7
33
        DDRC |= (1<<DDC7);
34
        PORTC &= ~(1<<PORTC7);
35
        #endif
36
 
231 killagreg 37
        // Timer/Counter 0 Control Register A
38
 
296 killagreg 39
        // Waveform Generation None (Bits WGM02 = 0, WGM01 = 0, WGM00 = 0)
40
    TCCR0A &= ~((1<<COM0A0)|(1<<COM0B0)|(1<<COM0A1)|(1<<COM0B1)|(1<<WGM01)|(1<<WGM00));
231 killagreg 41
 
42
        // Timer/Counter 0 Control Register B
43
 
44
        // set clock devider for timer 0 to SYSKLOCK/8 = 20MHz / 8 = 2.5MHz
45
        // i.e. the timer increments from 0x00 to 0xFF with an update rate of 2.5 MHz
46
        // hence the timer overflow interrupt frequency is 2.5 MHz / 256 = 9.765 kHz
47
 
48
        // divider 8 (Bits CS02 = 0, CS01 = 1, CS00 = 0)
49
        TCCR0B &= ~((1<<FOC0A)|(1<<FOC0B)|(1<<WGM02));
50
    TCCR0B = (TCCR0B & 0xF8)|(0<<CS02)|(1<<CS01)|(0<<CS00);
51
 
52
        // init Timer/Counter 0 Register
53
    TCNT0 = 0;
54
 
55
        // Timer/Counter 0 Interrupt Mask Register
56
        // enable timer overflow interrupt only
57
        TIMSK0 &= ~((1<<OCIE0B)|(1<<OCIE0A));
58
        TIMSK0 |= (1<<TOIE0);
59
 
274 killagreg 60
 
61
        SystemTime.Year = 0;
62
        SystemTime.Month = 0;
63
        SystemTime.Day = 0;
64
        SystemTime.Hour = 0;
65
        SystemTime.Min = 0;
66
        SystemTime.Sec = 0;
67
        SystemTime.mSec = 0;
68
        SystemTime.Valid = 0;
69
 
70
        CountMilliseconds = 0;
71
 
72
 
231 killagreg 73
        SREG = sreg;
74
}
75
 
76
 
77
 
78
/*****************************************************/
79
/*          Interrupt Routine of Timer 0             */
80
/*****************************************************/
81
ISR(TIMER0_OVF_vect)    // 9.765 kHz
82
{
83
    static uint8_t cnt = 0;
271 killagreg 84
    #ifdef USE_FOLLOWME
85
    uint8_t Beeper_On = 0;
86
        #endif
231 killagreg 87
 
88
        if(!cnt--) // every 10th run (9.765kHz/10 = 976Hz)
89
        {
90
                cnt = 9;
91
                CountMilliseconds++; // increment millisecond counter
92
        }
271 killagreg 93
 
94
         #ifdef USE_FOLLOWME
95
        // beeper on if duration is not over
96
        if(BeepTime)
97
        {
98
                BeepTime--; // decrement BeepTime
99
                if(BeepTime & BeepModulation) Beeper_On = 1;
100
                else Beeper_On = 0;
101
        }
102
        else // beeper off if duration is over
103
        {
104
                Beeper_On = 0;
105
                BeepModulation = 0xFFFF;
106
        }
107
 
108
        // if beeper is on
109
        if(Beeper_On)
110
        {
111
                // set speaker port to high
112
                PORTC |= (1<<PORTC7); // Speaker at PC7
113
        }
114
        else // beeper is off
115
        {
116
                // set speaker port to low
117
                PORTC &= ~(1<<PORTC7);// Speaker at PC7
118
        }
119
        #endif
231 killagreg 120
}
121
 
122
 
123
// -----------------------------------------------------------------------
124
uint16_t SetDelay (uint16_t t)
125
{
126
  return(CountMilliseconds + t - 1);
127
}
128
 
129
// -----------------------------------------------------------------------
130
int8_t CheckDelay(uint16_t t)
131
{
132
  return(((t - CountMilliseconds) & 0x8000) >> 8); // check sign bit
133
}
134
 
135
// -----------------------------------------------------------------------
136
void Delay_ms(uint16_t w)
137
{
138
 unsigned int t_stop;
139
 t_stop = SetDelay(w);
140
 while (!CheckDelay(t_stop));
141
}
142