-
Notifications
You must be signed in to change notification settings - Fork 3
/
05_main_timer.c
101 lines (75 loc) · 1.89 KB
/
05_main_timer.c
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
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
* 05_main_timer.c
*
* Created on: Mar 9, 2018
* Author: Renan Augusto Starke
*/
#include <avr/interrupt.h>
#include "bits.h"
#include "avr_gpio.h"
#include "avr_timer.h"
#include "avr_extirq.h"
/**
* @brief Configura hardware do timer0 para IRQ em overflow.
* @param Nenhum
*
* @retval Nenhum.
*/
void timer0_hardware_init(){
/* Há três maneiras de configurar o TIMER: *
* - Acesso direto ao registradores;
* - Acesso indireto por struct aos registradores;
* - Acesso indireto por struct utilizando bit fields
*/
/* Acesso direto: sem avr_timer.h */
/* Modo normal: TOP = 0xff; */
TCCR0A = 0;
/* Ligar fonte de clock: prescaler de 1024 */
TCCR0B = SET(CS02) | SET(CS00);
/* Habilitação de IRQ: overflow */
TIMSK0 = SET(TOIE0);
/* ou */
/* Acesso indireto por struct: com avr_timer.h */
TIMER_0->TCCRA = 0;
TIMER_0->TCCRB = SET(CS02) | SET(CS00);
TIMER_IRQS->TC0.MASK = SET(TOIE0);
/* ou */
/* Acesso indireto por struct e bit field: com avr_timer.h */
TIMER_0->TCCRA = 0;
TIMER_0->TCCRB = SET(CS02) | SET(CS00);
TIMER_IRQS->TC0.BITS.TOIE = 1;
}
/* Quando habilitado IRQ de overflow no timer 0*/
ISR(TIMER0_OVF_vect){
GPIO_CplBit(GPIO_B, 0);
}
/**
* @brief Configura hardware do timer1 para IRQ em CTC.
* @param Nenhum
*
* @retval Nenhum.
*/
void timer1_hardware_init(){
/* Acesso indireto por struct e bit field: com avr_timer.h */
TIMER_1->TCCRA = 0;
/* Modo CTC e prescaler 8 */
TIMER_1->TCCRB = SET(WGM12) | SET(CS11);
/* Definição do TOP */
TIMER_1->OCRA = 8535;
/* Habilitação da IRQ: capture pois o top é OCR1A */
TIMER_IRQS->TC1.BITS.OCIEA = 1;
}
ISR(TIMER1_COMPA_vect){
GPIO_CplBit(GPIO_B, 1);
}
int main(){
/* PORTB como saída */
GPIO_B->DDR = 0xff;
/* Inicialização do timer */
timer0_hardware_init();
timer1_hardware_init();
sei();
/* Código de menor prioridade aqui */
while (1){
}
}