diff options
Diffstat (limited to 'pc')
-rwxr-xr-x | pc/a.out | bin | 12856 -> 0 bytes | |||
-rw-r--r-- | pc/usbtest.c | 10 |
2 files changed, 8 insertions, 2 deletions
diff --git a/pc/a.out b/pc/a.out Binary files differdeleted file mode 100755 index c271ddd..0000000 --- a/pc/a.out +++ /dev/null diff --git a/pc/usbtest.c b/pc/usbtest.c index 137180f..8ea2a62 100644 --- a/pc/usbtest.c +++ b/pc/usbtest.c @@ -176,9 +176,12 @@ int main(int argc, char **argv) nBytes = usb_control_msg(handle, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_ENDPOINT_IN, 0x21, 0, 0, (char *)buffer, sizeof(buffer), 1000); - printf("Got %d bytes: %s = \n", nBytes, buffer); + printf("Got %d bytes: %s = ", nBytes, buffer); for (int i=0; i<nBytes; i++) + { + if (i%16 == 0) printf("\n"); printf("%.2X ",buffer[i] & 0xFF); + } printf("\n"); } else if (mode == MODE_WRITE) @@ -198,9 +201,12 @@ int main(int argc, char **argv) nBytes = usb_control_msg(handle, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_ENDPOINT_IN, 0x21, 0, 0, (char *)buffer, sizeof(buffer), 1000); - printf("Got %d bytes: %s = \n", nBytes, buffer); + printf("Got %d bytes: %s = ", nBytes, buffer); for (int i=0; i<nBytes; i++) + { + if (i%16 == 0) printf("\n"); printf("%.2X ",buffer[i] & 0xFF); + } printf("\n"); } |