2 * Copyright © 2009 Keith Packard <keithp@keithp.com>
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.
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.
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.
26 extern int cc_default_timeout;
29 cc_usb_open(char *tty);
32 cc_usb_close(struct cc_usb *cc);
35 cc_usb_send_bytes(struct cc_usb *cc, uint8_t *bytes, int len);
38 cc_usb_recv_bytes(struct cc_usb *cc, uint8_t *bytes, int len);
41 cc_usb_write_memory(struct cc_usb *cc, uint16_t addr, uint8_t *bytes, int len);
44 cc_usb_read_memory(struct cc_usb *cc, uint16_t addr, uint8_t *bytes, int len);
47 cc_usb_debug_mode(struct cc_usb *cc);
50 cc_usb_reset(struct cc_usb *cc);
53 cc_usb_sync(struct cc_usb *cc);
56 cc_queue_read(struct cc_usb *cc, uint8_t *buf, int len);
59 cc_usb_getchar_timeout(struct cc_usb *cc, int timeout);
62 cc_usb_getchar(struct cc_usb *cc);
65 cc_usb_getline(struct cc_usb *cc, char *line, int max);
68 cc_usb_printf(struct cc_usb *cc, char *format, ...);
71 cc_usb_write(struct cc_usb *cc, void *buf, int c);
74 cc_usb_open_remote(struct cc_usb *cc, int freq, char *call);
77 cc_usb_close_remote(struct cc_usb *cc);
79 #endif /* _CC_USB_H_ */