Switch from GPLv2 to GPLv2+
[fw/altos] / ao-tools / lib / ao-editaltos.h
1 /*
2  * Copyright © 2013 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 #ifndef _AO_EDITALTOS_H_
20 #define _AO_EDITALTOS_H_
21
22 #include <stdint.h>
23 #include <stdbool.h>
24 #include "ao-hex.h"
25
26 extern struct ao_sym ao_symbols[];
27 extern int ao_num_symbols;
28
29 #define AO_USB_DESC_STRING              3
30
31 #define AO_ROMCONFIG_VERSION    (ao_symbols[0].addr)
32 #define AO_ROMCONFIG_CHECK      (ao_symbols[1].addr)
33 #define AO_SERIAL_NUMBER        (ao_symbols[2].addr)
34 #define AO_RADIO_CAL            (ao_symbols[3].addr)
35 #define AO_USB_DESCRIPTORS      (ao_symbols[4].addr)
36
37 struct ao_editaltos_funcs {
38         uint16_t        (*get_uint16)(void *closure, uint32_t addr);
39         uint32_t        (*get_uint32)(void *closure, uint32_t addr);
40 };
41
42 bool
43 ao_editaltos_find_symbols(struct ao_sym *file_symbols, int num_file_symbols,
44                           struct ao_sym *symbols, int num_symbols);
45
46 bool
47 ao_editaltos(struct ao_hex_image *image,
48              uint16_t serial,
49              uint32_t radio_cal);
50
51 #endif /* _AO_EDITALTOS_H_ */