2 * Copyright © 2012 Keith Packard <keithp@keithp.com>
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; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 #ifndef HAS_BEEP_CONFIG
23 #if defined(USE_EEPROM_CONFIG) && USE_EEPROM_CONFIG || HAS_EEPROM
24 #define HAS_BEEP_CONFIG 1
33 * Various pre-defined beep frequencies
35 * frequency = 1/2 (24e6/32) / beep
38 #define AO_BEEP_MID_DEFAULT 94 /* 3989Hz */
41 #define AO_BEEP_MID ao_config.mid_beep
43 #define AO_BEEP_MID AO_BEEP_MID_DEFAULT
45 #define AO_BEEP_LOW AO_BEEP_MID * 150 / 94 /* 2500Hz */
46 #define AO_BEEP_HIGH AO_BEEP_MID * 75 / 94 /* 5000Hz */
48 #define AO_BEEP_OFF 0 /* off */
50 #define AO_BEEP_g 240 /* 1562.5Hz */
51 #define AO_BEEP_gs 227 /* 1652Hz (1655Hz) */
52 #define AO_BEEP_aa 214 /* 1752Hz (1754Hz) */
53 #define AO_BEEP_bbf 202 /* 1856Hz (1858Hz) */
54 #define AO_BEEP_bb 190 /* 1974Hz (1969Hz) */
55 #define AO_BEEP_cc 180 /* 2083Hz (2086Hz) */
56 #define AO_BEEP_ccs 170 /* 2205Hz (2210Hz) */
57 #define AO_BEEP_dd 160 /* 2344Hz (2341Hz) */
58 #define AO_BEEP_eef 151 /* 2483Hz (2480Hz) */
59 #define AO_BEEP_ee 143 /* 2622Hz (2628Hz) */
60 #define AO_BEEP_ff 135 /* 2778Hz (2784Hz) */
61 #define AO_BEEP_ffs 127 /* 2953Hz (2950Hz) */
62 #define AO_BEEP_gg 120 /* 3125Hz */
63 #define AO_BEEP_ggs 113 /* 3319Hz (3311Hz) */
64 #define AO_BEEP_aaa 107 /* 3504Hz (3508Hz) */
65 #define AO_BEEP_bbbf 101 /* 3713Hz (3716Hz) */
66 #define AO_BEEP_bbb 95 /* 3947Hz (3937Hz) */
67 #define AO_BEEP_ccc 90 /* 4167Hz (4171Hz) */
68 #define AO_BEEP_cccs 85 /* 4412Hz (4419Hz) */
69 #define AO_BEEP_ddd 80 /* 4688Hz (4682Hz) */
70 #define AO_BEEP_eeef 76 /* 4934Hz (4961Hz) */
71 #define AO_BEEP_eee 71 /* 5282Hz (5256Hz) */
72 #define AO_BEEP_fff 67 /* 5597Hz (5568Hz) */
73 #define AO_BEEP_fffs 64 /* 5859Hz (5899Hz) */
74 #define AO_BEEP_ggg 60 /* 6250Hz */
76 /* Set the beeper to the specified tone */
78 ao_beep(uint8_t beep);
80 /* Turn on the beeper for the specified time */
82 ao_beep_for(uint8_t beep, uint16_t ticks) __reentrant;
84 /* Initialize the beeper */
88 #endif /* _AO_BEEP_H_ */