ao-tools: Add --wait option to ao-usbload
[fw/altos] / ao-tools / lib / cc-usb.h
index 7b6be350f02e6badefe61b5142fdd660f51e8a06..9ed198cd290c9ecad29fa2b15717fdae042bd9d4 100644 (file)
@@ -23,6 +23,8 @@
 
 struct cc_usb;
 
+extern int cc_default_timeout;
+
 struct cc_usb *
 cc_usb_open(char *tty);
 
@@ -53,6 +55,9 @@ cc_usb_sync(struct cc_usb *cc);
 void
 cc_queue_read(struct cc_usb *cc, uint8_t *buf, int len);
 
+int
+cc_usb_getchar_timeout(struct cc_usb *cc, int timeout);
+
 int
 cc_usb_getchar(struct cc_usb *cc);
 
@@ -62,4 +67,13 @@ cc_usb_getline(struct cc_usb *cc, char *line, int max);
 void
 cc_usb_printf(struct cc_usb *cc, char *format, ...);
 
+int
+cc_usb_write(struct cc_usb *cc, void *buf, int c);
+
+void
+cc_usb_open_remote(struct cc_usb *cc, int freq, char *call);
+
+void
+cc_usb_close_remote(struct cc_usb *cc);
+
 #endif /* _CC_USB_H_ */