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