10 #define USB_TIMEOUT 50000
12 #if BYTE_ORDER == LITTLE_ENDIAN
14 #elif BYTE_ORDER == BIG_ENDIAN
15 #define LE32(x) ((uint32_t)((((uint32_t)x)>>24) | ((((uint32_t)x)>>8) & 0xff00) | ((((uint32_t)x)<<8) & 0xff0000) | (((uint32_t)x)<<24)))
17 #error BYTE_ORDER not defined/known!
20 /* TODO: fix memory leak here: */
21 #define USB_ERROR(s, x) do { if (x < 0) { fprintf(stderr, "usb %s: %s\n", s, usb_strerror()); usb_reset(sc->usb.dev); return 0; } } while(0)
23 /* This routine locates a scope by VID/PID and returns a struct scope* for it */
24 static struct scope
* usbtmc_find_scope() {
26 struct usb_device
*dev
=NULL
;
27 struct usb_dev_handle
*devh
;
34 for (bus
=usb_busses
; bus
; bus
=bus
->next
) {
35 for (dev
=bus
->devices
; dev
; dev
=dev
->next
) {
36 if (dev
->descriptor
.idVendor
== 0x400 && dev
->descriptor
.idProduct
== 0x5dc) {
41 sc
= calloc(1, sizeof(struct scope
));
50 sc
->usb
.brokenRigol
= 1;
51 sc
->usb
.ep_bulk_out
= 0x01;
52 sc
->usb
.ep_bulk_in
= 0x82;
53 sc
->usb
.wMaxPacketSize_in
= 0x40;
63 static unsigned char usbtmc_status(struct scope
*sc
)
66 unsigned char status
[3];
70 r
= usb_control_msg(sc
->usb
.dev
, 0xA1,
71 USB488_CTL_READ_STATUS_BYTE
,
72 (sc
->usb
.bTag
& 0x7f), 0, (char*)status
, 3,
75 if ((r
!= 3) || (status
[0] != 0x01) || (status
[1] != (sc
->usb
.bTag
& 0x7f))) {
76 printf("READ_STATUS_BYTE failed: %d 0x%x 0x%x 0x%x\n", r
, status
[0], status
[1], status
[2]);
83 static struct usbtmc_capabilities
* usbtmc_get_capabilities(struct scope
*sc
)
86 static struct usbtmc_capabilities res
;
88 r
= usb_control_msg(sc
->usb
.dev
, 0xA1,
89 USBTMC_CTL_GET_CAPABILITIES
,
90 0, 0, (char*)&res
, sizeof(struct usbtmc_capabilities
),
92 if (r
!= sizeof(struct usbtmc_capabilities
)) {
93 printf("GET_CAPABILITIES failed: %s\n", usb_strerror());
97 printf("USBTMC Version %x.%x Capabilities:\n", res
.bcdUSBTMC
[0], res
.bcdUSBTMC
[1]);
98 if (res
.USBTMCIFcapabilities
& USBTMC_CAP_IF_INDICATOR_PULSE
)
99 printf("\tInterface supports indicator pulse\n");
101 if (res
.USBTMCIFcapabilities
& USBTMC_CAP_IF_TALKONLY
)
102 printf("\tInterface is talk only\n");
104 if (res
.USBTMCIFcapabilities
& USBTMC_CAP_IF_LISTENONLY
)
105 printf("\tInterface is listen only\n");
107 if (res
.USBTMCDEVcapabilities
& USBTMC_CAP_DEV_TERMCHAR_SUPP
)
108 printf("\tDevice supports Termchar\n");
110 printf("USB488 Version %x.%x Capabilities:\n", res
.bcdUSB488
[0], res
.bcdUSB488
[1]);
112 if (res
.USB488IFcapabilities
& USB488_CAP_IF_4882
)
113 printf("\tInterface is 488.2 compliant\n");
115 if (res
.USB488IFcapabilities
& USB488_CAP_IF_LOCKOUT
)
116 printf("\tInterface supports local lockout\n");
118 if (res
.USB488IFcapabilities
& USB488_CAP_IF_TRIGGER
)
119 printf("\tInterface supports TRIGGER\n");
121 if (res
.USB488DEVcapabilities
& USB488_CAP_DEV_SCPI
)
122 printf("\tDevice is SCPI compliant\n");
124 if (res
.USB488DEVcapabilities
& USB488_CAP_DEV_SR1
)
125 printf("\tDevice is SR1 capable\n");
127 if (res
.USB488DEVcapabilities
& USB488_CAP_DEV_RL1
)
128 printf("\tDevice is RL1 capable\n");
130 if (res
.USB488DEVcapabilities
& USB488_CAP_DEV_DT1
)
131 printf("\tDevice is DT1 capable\n");
137 * Send a scpi-command to the scope. The response goes into the buffer
138 * called resp, with a size of resplen. If resp==NULL, no response
141 int usbtmc_sendscpi(struct scope
*sc
, char* cmd
,
142 unsigned char *resp
, int resplen
) {
144 int cmdlen
= strlen(cmd
);
145 struct usbtmc_header
*req
;
149 len
= sizeof(struct usbtmc_header
) + cmdlen
;
153 req
= calloc(1, len
);
159 req
->MsgID
= USBTMC_DEV_DEP_MSG_OUT
;
160 req
->bTag
= sc
->usb
.bTag
;
161 req
->bTagInverse
= ~sc
->usb
.bTag
;
162 req
->TransferSize
= LE32(cmdlen
);
163 req
->bmTransferAttributes
= USBTMC_TRANSFERATTRIB_EOM
;
164 memcpy(req
->msg
, cmd
, cmdlen
);
166 if (sc
->usb
.brokenRigol
) {
167 r
=usb_bulk_write(sc
->usb
.dev
, sc
->usb
.ep_bulk_out
,
168 (char*)req
, sizeof(struct usbtmc_header
),
170 USB_ERROR("USBTMC_DEV_DEP_MSG_OUT1", r
);
172 r
=usb_bulk_write(sc
->usb
.dev
, sc
->usb
.ep_bulk_out
,
173 (char*)&(req
->msg
), len
- sizeof(struct usbtmc_header
),
175 USB_ERROR("USBTMC_DEV_DEP_MSG_OUT2", r
);
177 r
=usb_bulk_write(sc
->usb
.dev
, sc
->usb
.ep_bulk_out
,
178 (char*)req
, len
, USB_TIMEOUT
);
179 USB_ERROR("USBTMC_DEV_DEP_MSG_OUT", r
);
184 if (resp
!= NULL
&& resplen
!= 0) {
186 struct usbtmc_header
*res
;
191 req
= calloc(1, sizeof(struct usbtmc_header
));
197 req
->MsgID
= USBTMC_REQUEST_DEV_DEP_MSG_IN
;
198 req
->bTag
= sc
->usb
.bTag
;
199 req
->bTagInverse
= ~sc
->usb
.bTag
;
200 req
->TransferSize
= LE32(sc
->usb
.wMaxPacketSize_in
);
201 req
->bmTransferAttributes
= USBTMC_TRANSFERATTRIB_EOM
;
204 /* send read command */
205 r
=usb_bulk_write(sc
->usb
.dev
, sc
->usb
.ep_bulk_out
,
206 (char*)req
, sizeof(struct usbtmc_header
), USB_TIMEOUT
);
207 USB_ERROR("USBTMC_REQUEST_DEV_DEP_MSG_IN", r
);
211 buff
=malloc(sc
->usb
.wMaxPacketSize_in
);
217 r
=usb_bulk_read(sc
->usb
.dev
, sc
->usb
.ep_bulk_in
,
218 (char*)buff
, sc
->usb
.wMaxPacketSize_in
, USB_TIMEOUT
);
219 USB_ERROR("USBTMC_DEV_DEP_MSG_IN1", r
);
221 if (r
< sizeof(struct usbtmc_header
)) {
222 fprintf(stderr
, "Short read!\n");
226 bytes_read
= r
- sizeof(struct usbtmc_header
);
228 res
= (struct usbtmc_header
*)buff
;
229 len
= LE32(res
->TransferSize
);
231 memmove(buff
, buff
+ sizeof(struct usbtmc_header
), bytes_read
);
233 buff
= realloc(buff
, len
);
239 while ((len
- bytes_read
) > 0) {
240 r
=usb_bulk_read(sc
->usb
.dev
, sc
->usb
.ep_bulk_in
,
241 (char*)buff
+ bytes_read
, len
- bytes_read
,
243 USB_ERROR("USBTMC_DEV_DEP_MSG_INx", r
);
249 if (bytes_read
> resplen
) {
250 fprintf(stderr
, "Response buffer to small: %d instead of %d bytes!\n",
251 resplen
, bytes_read
);
252 bytes_read
= resplen
;
255 memcpy(resp
, buff
, bytes_read
);
263 void usbtmc_claim(struct scope
*sc
)
265 usb_claim_interface(sc
->usb
.dev
, 0);
268 void usbtmc_release(struct scope
*sc
)
270 usb_release_interface(sc
->usb
.dev
, 0);
273 /* Initialize the scope. */
274 struct scope
* usbtmc_initscope(void) {
281 /* Locate and open the scope */
282 sc
= usbtmc_find_scope();
288 usbtmc_get_capabilities(sc
);
289 printf("Device status: 0x%x\n", usbtmc_status(sc
));
290 /* The following code isn't really necessary, the program works
291 OK without it too. */
292 r
=usb_control_msg(sc
->usb
.dev
, 0xC8, 9, 0, 0, (char*)&vidpid
, 4, USB_TIMEOUT
);
295 fprintf (stderr
, "Error %d sending init message: %s\n",
297 fprintf (stderr
, "Do you have permission on the USB device?\n");
300 if (LE32(vidpid
)!=0x40005dc) {
301 fprintf(stderr
,"Init: buff[%i]=%x\n",r
,LE32(vidpid
));
306 void usbtmc_close(struct scope
*sc
)
308 /* Free up and exit */
309 usb_close(sc
->usb
.dev
);