-
Notifications
You must be signed in to change notification settings - Fork 75
/
buzzer.h
52 lines (34 loc) · 1.25 KB
/
buzzer.h
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
/*
buzzer include file
Copyright (C) 2011 Pavel Semerad
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 3 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef _BUZZER_INCLUDED
#define _BUZZER_INCLUDED
#include "gt3b.h"
// setting on/off
#define BUZZER0 BRES(PD_ODR, 4)
#define BUZZER1 BSET(PD_ODR, 4)
#define BUZZER_CHK BCHK(PD_ODR, 4)
// functions to use
#define BUZZER_MAX (u16)(0xffff)
extern void buzzer_on(u8 on_5ms, u8 off_5ms, u16 count);
extern void buzzer_off(void);
extern void beep(u8 len_5ms);
extern void key_beep(void);
// variables used at timer
extern _Bool buzzer_running;
extern u8 buzzer_cnt_on;
extern u8 buzzer_cnt_off;
extern u16 buzzer_count;
extern u8 buzzer_cnt;
#endif