altos/test: Adjust CRC error rate after FEC fix
[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_DEVICE              1
30 #define AO_USB_DESC_STRING              3
31
32 #define AO_ROMCONFIG_VERSION_INDEX      0
33 #define AO_ROMCONFIG_CHECK_INDEX        1
34 #define AO_SERIAL_NUMBER_INDEX          2
35 #define AO_RADIO_CAL_INDEX              3
36 #define AO_USB_DESCRIPTORS_INDEX        4
37
38 #define AO_ROMCONFIG_VERSION    (ao_symbols[AO_ROMCONFIG_VERSION_INDEX].addr)
39 #define AO_ROMCONFIG_CHECK      (ao_symbols[AO_ROMCONFIG_CHECK_INDEX].addr)
40 #define AO_SERIAL_NUMBER        (ao_symbols[AO_SERIAL_NUMBER_INDEX].addr)
41 #define AO_RADIO_CAL            (ao_symbols[AO_RADIO_CAL_INDEX].addr)
42 #define AO_USB_DESCRIPTORS      (ao_symbols[AO_USB_DESCRIPTORS_INDEX].addr)
43
44 struct ao_editaltos_funcs {
45         uint16_t        (*get_uint16)(void *closure, uint32_t addr);
46         uint32_t        (*get_uint32)(void *closure, uint32_t addr);
47 };
48
49 struct ao_usb_id {
50         uint16_t        vid;
51         uint16_t        pid;
52 };
53
54 bool
55 ao_editaltos_find_symbols(struct ao_sym *file_symbols, int num_file_symbols,
56                           struct ao_sym *symbols, int num_symbols);
57
58 bool
59 ao_editaltos(struct ao_hex_image *image,
60              uint16_t serial,
61              uint32_t radio_cal);
62
63 bool
64 ao_heximage_usb_id(struct ao_hex_image *image, struct ao_usb_id *id);
65
66 uint16_t *
67 ao_heximage_usb_product(struct ao_hex_image *image);
68
69 #endif /* _AO_EDITALTOS_H_ */