altos/test: Adjust CRC error rate after FEC fix
[fw/altos] / ao-tools / lib / cc-usb.h
1 /*
2  * Copyright © 2009 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 _CC_USB_H_
20 #define _CC_USB_H_
21
22 #include <stdint.h>
23
24 struct cc_usb;
25
26 extern int cc_default_timeout;
27
28 struct cc_usb *
29 cc_usb_open(char *tty);
30
31 void
32 cc_usb_close(struct cc_usb *cc);
33
34 int
35 cc_usb_send_bytes(struct cc_usb *cc, uint8_t *bytes, int len);
36
37 int
38 cc_usb_recv_bytes(struct cc_usb *cc, uint8_t *bytes, int len);
39
40 int
41 cc_usb_write_memory(struct cc_usb *cc, uint16_t addr, uint8_t *bytes, int len);
42
43 int
44 cc_usb_read_memory(struct cc_usb *cc, uint16_t addr, uint8_t *bytes, int len);
45
46 int
47 cc_usb_debug_mode(struct cc_usb *cc);
48
49 int
50 cc_usb_reset(struct cc_usb *cc);
51
52 void
53 cc_usb_sync(struct cc_usb *cc);
54
55 void
56 cc_queue_read(struct cc_usb *cc, uint8_t *buf, int len);
57
58 int
59 cc_usb_getchar_timeout(struct cc_usb *cc, int timeout);
60
61 int
62 cc_usb_getchar(struct cc_usb *cc);
63
64 void
65 cc_usb_getline(struct cc_usb *cc, char *line, int max);
66
67 void
68 cc_usb_printf(struct cc_usb *cc, char *format, ...);
69
70 int
71 cc_usb_write(struct cc_usb *cc, void *buf, int c);
72
73 void
74 cc_usb_open_remote(struct cc_usb *cc, int freq, char *call);
75
76 void
77 cc_usb_close_remote(struct cc_usb *cc);
78
79 #endif /* _CC_USB_H_ */