return NULL;
}
-static unsigned char usbtmc_status(struct scope *sc)
+static unsigned char usb488_status(struct scope *sc)
{
int r;
unsigned char status[3];
(sc->usb.bTag & 0x7f), 0, (char*)status, 3,
USB_TIMEOUT);
- if ((r != 3) || (status[0] != 0x01) || (status[1] != (sc->usb.bTag & 0x7f))) {
+ if ((r != 3) || (status[0] != USBTMC_STATUS_SUCCESS) || (status[1] != (sc->usb.bTag & 0x7f))) {
printf("READ_STATUS_BYTE failed: %d 0x%x 0x%x 0x%x\n", r, status[0], status[1], status[2]);
return 0xff;
}
0, 0, (char*)status, 1,
USB_TIMEOUT);
- if ((r != 1) || status[0] != 0x01) {
- printf("INITIATE_CLEAR failed: %s\n", usb_strerror());
+ if ((r != 1) || status[0] != USBTMC_STATUS_SUCCESS) {
+ printf("INITIATE_CLEAR failed (0x%x): %s\n", status[0], usb_strerror());
return;
}
0, 0, (char*)status, 2,
USB_TIMEOUT);
- if ((r != 2) || status[0] != 0x01) {
+ if (r != 2) {
printf("CHECK_CLEAR failed: %s\n", usb_strerror());
return;
}
- if (status[1] & (1<<0)) {
+ if (USBTMC_STATUS_FAIL(status[0])) {
+ printf("CHECK_CLEAR failed: 0x%x\n", status[0]);
+ return;
+ }
+
+ if ((status[0] == USBTMC_STATUS_SUCCESS) && (status[1] == 0)) {
printf("Success!\n");
break;
}
usbtmc_claim(sc);
sc->usb.cap = usbtmc_get_capabilities(sc);
- printf("Device status: 0x%x\n", usbtmc_status(sc));
+ printf("Device status: 0x%x\n", usb488_status(sc));
/* The following code isn't really necessary, the program works
OK without it too. */
r=usb_control_msg(sc->usb.dev, 0xC8, 9, 0, 0, (char*)&vidpid, 4, USB_TIMEOUT);
#define USB488_CAP_DEV_RL1 (1<<1)
#define USB488_CAP_DEV_DT1 (1<<0)
+#define USBTMC_STATUS_SUCCESS 0x01
+#define USBTMC_STATUS_PENDING 0x02
+#define USBTMC_STATUS_FAILED 0x80
+#define USBTMC_STATUS_TRANS_NIP 0x81
+#define USBTMC_STATUS_SPLIT_NIP 0x82
+#define USBTMC_STATUS_SPLIT_IP 0x83
+
+#define USBTMC_STATUS_SUCC(x) (x == USBTMC_STATUS_SUCCESS)
+#define USBTMC_STATUS_WARN(x) ((x > USBTMC_STATUS_SUCCESS) && (x < USBTMC_STATUS_FAILED))
+#define USBTMC_STATUS_FAIL(x) (x >= USBTMC_STATUS_FAILED)
+
int usbtmc_sendscpi(struct scope *sc, char* cmd, unsigned char *resp, int resplen);
struct scope * usbtmc_initscope(void);
void usbtmc_close(struct scope *sc);