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.
27 cc_usb_open(char *tty);
30 cc_usb_close(struct cc_usb *cc);
33 cc_usb_send_bytes(struct cc_usb *cc, uint8_t *bytes, int len);
36 cc_usb_recv_bytes(struct cc_usb *cc, uint8_t *bytes, int len);
39 cc_usb_write_memory(struct cc_usb *cc, uint16_t addr, uint8_t *bytes, int len);
42 cc_usb_read_memory(struct cc_usb *cc, uint16_t addr, uint8_t *bytes, int len);
45 cc_usb_debug_mode(struct cc_usb *cc);
48 cc_usb_reset(struct cc_usb *cc);
51 cc_usb_sync(struct cc_usb *cc);
54 cc_queue_read(struct cc_usb *cc, uint8_t *buf, int len);
57 cc_usb_getchar_timeout(struct cc_usb *cc, int timeout);
60 cc_usb_getchar(struct cc_usb *cc);
63 cc_usb_getline(struct cc_usb *cc, char *line, int max);
66 cc_usb_printf(struct cc_usb *cc, char *format, ...);
69 cc_usb_open_remote(struct cc_usb *cc, int freq, char *call);
72 cc_usb_close_remote(struct cc_usb *cc);
74 #endif /* _CC_USB_H_ */