aboutsummaryrefslogtreecommitdiff
path: root/speaker.c
blob: ec5da3665176089c351f2e8c16d5ffcc44f1eaf6 (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
/*	speaker control, uses timer2
 */

#include "common.h"

#include <avr/io.h>
#include <avr/interrupt.h>
#include <util/delay.h>
#include <stdbool.h>
#include <stdlib.h>

#include "speaker.h"

ISR(TIMER2_OVF_vect) {
	PORTD ^= (1 << PD6);
}

void speakerInit () {
	/* set PD6 to output */
	DDRD |= (1 << PD6);
	/* turn off */
	PORTD = PORTD & ~(1 << PD6);
}

void speakerStart (const speakerMode mode) {
	/* reset timer value */
	TCNT2 = 0;
	/* set normal mode */
	TCCR2A = 0;
	/* enable overflow interrupt */
	TIMSK2 = (1 << TOIE2);
	/* io clock with 1024 prescaler */
	TCCR2B = ((TCCR2B & ~(1 << CS21)) | (1 << CS22) | (1 << CS20));
	_delay_ms (50);
	speakerStop ();
}

void speakerStop () {
	/* zero clock source */
	TCCR2B = 0;
	/* turn off */
	PORTD = PORTD & ~(1 << PD6);
}