X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/rigol/blobdiff_plain/fc648ed83d8211054d4d1231260435858e0c7f11..bd29c60e53e501684134598436c05bb25915cb1c:/scope.h diff --git a/scope.h b/scope.h index 9feef05..2f3a61a 100644 --- a/scope.h +++ b/scope.h @@ -2,9 +2,11 @@ struct scope { struct { struct usb_dev_handle *dev; int ep_bulk_out; - unsigned int wMaxPacketSize_out; int ep_bulk_in; unsigned int wMaxPacketSize_in; + unsigned char bTag; + int brokenRigol; + struct usbtmc_capabilities *cap; } usb; char idn[128]; }; @@ -14,4 +16,5 @@ struct scope* initscope(void); void closescope(struct scope* sc); void claimscope(struct scope* sc); void releasescope(struct scope* sc); +void resetscope(struct scope* sc); char *scope_idn(struct scope *sc);