altoslib: Missed a couple of easy mini voltage API changes
[fw/altos] / src / core / ao_beep.h
1 /*
2  * Copyright © 2012 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #ifndef _AO_BEEP_H_
19 #define _AO_BEEP_H_
20
21 /*
22  * ao_beep.c
23  */
24
25 /*
26  * Various pre-defined beep frequencies
27  *
28  * frequency = 1/2 (24e6/32) / beep
29  */
30
31 #define AO_BEEP_LOW     150     /* 2500Hz */
32 #define AO_BEEP_MID     94      /* 3989Hz */
33 #define AO_BEEP_HIGH    75      /* 5000Hz */
34 #define AO_BEEP_OFF     0       /* off */
35
36 #define AO_BEEP_g       240     /* 1562.5Hz */
37 #define AO_BEEP_gs      227     /* 1652Hz (1655Hz) */
38 #define AO_BEEP_aa      214     /* 1752Hz (1754Hz) */
39 #define AO_BEEP_bbf     202     /* 1856Hz (1858Hz) */
40 #define AO_BEEP_bb      190     /* 1974Hz (1969Hz) */
41 #define AO_BEEP_cc      180     /* 2083Hz (2086Hz) */
42 #define AO_BEEP_ccs     170     /* 2205Hz (2210Hz) */
43 #define AO_BEEP_dd      160     /* 2344Hz (2341Hz) */
44 #define AO_BEEP_eef     151     /* 2483Hz (2480Hz) */
45 #define AO_BEEP_ee      143     /* 2622Hz (2628Hz) */
46 #define AO_BEEP_ff      135     /* 2778Hz (2784Hz) */
47 #define AO_BEEP_ffs     127     /* 2953Hz (2950Hz) */
48 #define AO_BEEP_gg      120     /* 3125Hz */
49 #define AO_BEEP_ggs     113     /* 3319Hz (3311Hz) */
50 #define AO_BEEP_aaa     107     /* 3504Hz (3508Hz) */
51 #define AO_BEEP_bbbf    101     /* 3713Hz (3716Hz) */
52 #define AO_BEEP_bbb     95      /* 3947Hz (3937Hz) */
53 #define AO_BEEP_ccc     90      /* 4167Hz (4171Hz) */
54 #define AO_BEEP_cccs    85      /* 4412Hz (4419Hz) */
55 #define AO_BEEP_ddd     80      /* 4688Hz (4682Hz) */
56 #define AO_BEEP_eeef    76      /* 4934Hz (4961Hz) */
57 #define AO_BEEP_eee     71      /* 5282Hz (5256Hz) */
58 #define AO_BEEP_fff     67      /* 5597Hz (5568Hz) */
59 #define AO_BEEP_fffs    64      /* 5859Hz (5899Hz) */
60 #define AO_BEEP_ggg     60      /* 6250Hz */
61
62 /* Set the beeper to the specified tone */
63 void
64 ao_beep(uint8_t beep);
65
66 /* Turn on the beeper for the specified time */
67 void
68 ao_beep_for(uint8_t beep, uint16_t ticks) __reentrant;
69
70 /* Initialize the beeper */
71 void
72 ao_beep_init(void);
73
74 #endif /* _AO_BEEP_H_ */