altos: Add telerepeat-v1.0
[fw/altos] / src / kernel / 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 #ifndef HAS_BEEP_CONFIG
22 #if defined(USE_EEPROM_CONFIG) && USE_EEPROM_CONFIG || HAS_EEPROM
23 #define HAS_BEEP_CONFIG 1
24 #endif
25 #endif
26
27 /*
28  * ao_beep.c
29  */
30
31 /*
32  * Various pre-defined beep frequencies
33  *
34  * frequency = 1/2 (24e6/32) / beep
35  */
36
37 #define AO_BEEP_MID_DEFAULT     94      /* 3989Hz */
38
39 #if HAS_BEEP_CONFIG
40 #define AO_BEEP_MID     ao_config.mid_beep
41 #else
42 #define AO_BEEP_MID     AO_BEEP_MID_DEFAULT
43 #endif
44 #define AO_BEEP_LOW     AO_BEEP_MID * 150 / 94  /* 2500Hz */
45 #define AO_BEEP_HIGH    AO_BEEP_MID * 75 / 94   /* 5000Hz */
46
47 #define AO_BEEP_OFF     0       /* off */
48
49 #define AO_BEEP_g       240     /* 1562.5Hz */
50 #define AO_BEEP_gs      227     /* 1652Hz (1655Hz) */
51 #define AO_BEEP_aa      214     /* 1752Hz (1754Hz) */
52 #define AO_BEEP_bbf     202     /* 1856Hz (1858Hz) */
53 #define AO_BEEP_bb      190     /* 1974Hz (1969Hz) */
54 #define AO_BEEP_cc      180     /* 2083Hz (2086Hz) */
55 #define AO_BEEP_ccs     170     /* 2205Hz (2210Hz) */
56 #define AO_BEEP_dd      160     /* 2344Hz (2341Hz) */
57 #define AO_BEEP_eef     151     /* 2483Hz (2480Hz) */
58 #define AO_BEEP_ee      143     /* 2622Hz (2628Hz) */
59 #define AO_BEEP_ff      135     /* 2778Hz (2784Hz) */
60 #define AO_BEEP_ffs     127     /* 2953Hz (2950Hz) */
61 #define AO_BEEP_gg      120     /* 3125Hz */
62 #define AO_BEEP_ggs     113     /* 3319Hz (3311Hz) */
63 #define AO_BEEP_aaa     107     /* 3504Hz (3508Hz) */
64 #define AO_BEEP_bbbf    101     /* 3713Hz (3716Hz) */
65 #define AO_BEEP_bbb     95      /* 3947Hz (3937Hz) */
66 #define AO_BEEP_ccc     90      /* 4167Hz (4171Hz) */
67 #define AO_BEEP_cccs    85      /* 4412Hz (4419Hz) */
68 #define AO_BEEP_ddd     80      /* 4688Hz (4682Hz) */
69 #define AO_BEEP_eeef    76      /* 4934Hz (4961Hz) */
70 #define AO_BEEP_eee     71      /* 5282Hz (5256Hz) */
71 #define AO_BEEP_fff     67      /* 5597Hz (5568Hz) */
72 #define AO_BEEP_fffs    64      /* 5859Hz (5899Hz) */
73 #define AO_BEEP_ggg     60      /* 6250Hz */
74
75 /* Set the beeper to the specified tone */
76 void
77 ao_beep(uint8_t beep);
78
79 /* Turn on the beeper for the specified time */
80 void
81 ao_beep_for(uint8_t beep, uint16_t ticks) __reentrant;
82
83 /* Initialize the beeper */
84 void
85 ao_beep_init(void);
86
87 #endif /* _AO_BEEP_H_ */