]>
Commit | Line | Data |
---|---|---|
713be7a4 MG |
1 | struct scope { |
2 | struct usb_dev_handle *usbdev; | |
3 | char idn[128]; | |
4 | }; | |
5 | ||
6 | int sendscpi(struct scope* sc, char* cmd, unsigned char *resp, int resplen); | |
7 | struct scope* initscope(void); | |
8 | void closescope(struct scope* sc); | |
9 | void claimscope(struct scope* sc); | |
10 | void releasescope(struct scope* sc); | |
11 | char *scope_idn(struct scope *sc); |