altoslib: fix computation of TeleGPS battery voltage
[fw/altos] / src / cc1111 / ao_romconfig.c
1 /*
2  * Copyright © 2010 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; either version 2 of the License, or
7  * (at your option) any later version.
8  *
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.
13  *
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.
17  */
18
19 #include "ao.h"
20
21 __code __at (0x00a0) uint16_t ao_romconfig_version = AO_ROMCONFIG_VERSION;
22 __code __at (0x00a2) uint16_t ao_romconfig_check = ~AO_ROMCONFIG_VERSION;
23 __code __at (0x00a4) uint16_t ao_serial_number = 0;
24 /*
25  * For 434.550MHz, the frequency value is:
26  *
27  * 434.550e6 / (24e6 / 2**16) = 1186611.2
28  *
29  * This value is stored in a const variable so that
30  * ao-load can change it during programming for
31  * devices that have no eeprom for config data.
32  */
33 __code __at (0x00a6) uint32_t ao_radio_cal = 1186611;