diff options
author | Florian Jung <flo@windfisch.org> | 2015-11-29 18:15:21 +0100 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2015-11-29 18:15:21 +0100 |
commit | fe742e35d3fa6d69125e9f463cbbe1c6032969ca (patch) | |
tree | c51a579de6498295cdb2e80edcdb9a162305e81a /pc | |
parent | 84b980994934d54b3dad6dd2184830f4464b9933 (diff) |
meeh
Diffstat (limited to 'pc')
-rwxr-xr-x | pc/a.out | bin | 12696 -> 12744 bytes | |||
-rw-r--r-- | pc/usbtest.c | 5 |
2 files changed, 4 insertions, 1 deletions
Binary files differ diff --git a/pc/usbtest.c b/pc/usbtest.c index 002add4..148fc16 100644 --- a/pc/usbtest.c +++ b/pc/usbtest.c @@ -134,7 +134,10 @@ 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 = \n", nBytes, buffer); + for (int i=0; i<nBytes; i++) + printf("%.2X ",buffer[i] & 0xFF); + printf("\n"); // write to device nBytes = usb_control_msg(handle, |