From fe742e35d3fa6d69125e9f463cbbe1c6032969ca Mon Sep 17 00:00:00 2001
From: Florian Jung <flo@windfisch.org>
Date: Sun, 29 Nov 2015 18:15:21 +0100
Subject: meeh

---
 pc/a.out     | Bin 12696 -> 12744 bytes
 pc/usbtest.c |   5 ++++-
 2 files changed, 4 insertions(+), 1 deletion(-)

(limited to 'pc')

diff --git a/pc/a.out b/pc/a.out
index f1b6c1b..fbba741 100755
Binary files a/pc/a.out and b/pc/a.out 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, 
-- 
cgit v1.2.3