From 9382bf2f765cfbb8f7a9a48157391cac2bb71780 Mon Sep 17 00:00:00 2001 From: tmk Date: Tue, 14 Aug 2012 00:46:03 +0900 Subject: Add USB_Host_Shield_2.0 and arduino-1.0.1 in usb_hid. --- protocol/usb_hid/README | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 protocol/usb_hid/README (limited to 'protocol/usb_hid/README') diff --git a/protocol/usb_hid/README b/protocol/usb_hid/README new file mode 100644 index 0000000000..0acf677f8b --- /dev/null +++ b/protocol/usb_hid/README @@ -0,0 +1,9 @@ +Third party Libraries +--------------------- +USB_Host_Shield_2.0 + Circuits@Home repository is git-submoduled. Do git submodule init & update to get the content. + https://github.com/felis/USB_Host_Shield_2.0 + +arduino-1.0.1 + Arduino files copied from: + https://github.com/arduino/Arduino/hardware/arduino/{cores,variants} -- cgit v1.2.3 From c5060ea81942b0e3f8577536ff78402a19abe3d3 Mon Sep 17 00:00:00 2001 From: tmk Date: Sat, 25 Aug 2012 15:49:08 +0900 Subject: test build of 'Host shield' in minimal env. --- protocol/usb_hid/README | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'protocol/usb_hid/README') diff --git a/protocol/usb_hid/README b/protocol/usb_hid/README index 0acf677f8b..9750a1cc8d 100644 --- a/protocol/usb_hid/README +++ b/protocol/usb_hid/README @@ -1,3 +1,8 @@ +USB HID protocol +================ +Host side of USB HID keyboard protocol implementation. +Only standard HID Boot mode is supported at this time. This means most of normal keyboards are supported while proprietary >6KRO and NKRO is not. + Third party Libraries --------------------- USB_Host_Shield_2.0 @@ -7,3 +12,17 @@ USB_Host_Shield_2.0 arduino-1.0.1 Arduino files copied from: https://github.com/arduino/Arduino/hardware/arduino/{cores,variants} + + +Test build +---------- +In test directory; + $ make + $ DEV=/dev/ttyACM0 make program + +You can see HID keyboard reports on debug output. + + +Restriction and Bug +------------------- +Not statble yet. -- cgit v1.2.3 From c77c5043a121f195b3a552feb8283424a0652ce2 Mon Sep 17 00:00:00 2001 From: tmk Date: Sun, 2 Sep 2012 23:47:18 +0900 Subject: usb_hid: Fix timer size uint16_t to uint32_t; --- protocol/usb_hid/README | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'protocol/usb_hid/README') diff --git a/protocol/usb_hid/README b/protocol/usb_hid/README index 9750a1cc8d..5d49cc8d20 100644 --- a/protocol/usb_hid/README +++ b/protocol/usb_hid/README @@ -26,3 +26,11 @@ You can see HID keyboard reports on debug output. Restriction and Bug ------------------- Not statble yet. + +Can't bus-reset a keyboard which already attached on bus properly. + Slow start up of Leonardo's bootloader causes this? + Need to unplug/plug a keyboard after firmware starts up. + MAX3421E doesn't work SAMPLEBUS well to know whether device connected or not. + +Keyboard with other endpoints than boot keyboard may go wrong. + On my keyboard with mouse key the converter locks up when using mouse key function. -- cgit v1.2.3 From 232ab308e358e41f3253d66fa009c1ebca0951a2 Mon Sep 17 00:00:00 2001 From: tmk Date: Tue, 4 Sep 2012 13:29:21 +0900 Subject: usb_hid: workaround for compile on Windows. --- protocol/usb_hid/README | 10 ++++++++++ 1 file changed, 10 insertions(+) mode change 100644 => 100755 protocol/usb_hid/README (limited to 'protocol/usb_hid/README') diff --git a/protocol/usb_hid/README b/protocol/usb_hid/README old mode 100644 new mode 100755 index 5d49cc8d20..1357a4c726 --- a/protocol/usb_hid/README +++ b/protocol/usb_hid/README @@ -27,6 +27,11 @@ Restriction and Bug ------------------- Not statble yet. +Switching power on VBUS: + To power reset device. + http://www.circuitsathome.com/camera-control/simulating-cable-disconnect-on-usb-host-shield-2-0 + This is needed for a device which are not initilized with 'USB Bus Reset'(long SE0) + Can't bus-reset a keyboard which already attached on bus properly. Slow start up of Leonardo's bootloader causes this? Need to unplug/plug a keyboard after firmware starts up. @@ -34,3 +39,8 @@ Can't bus-reset a keyboard which already attached on bus properly. Keyboard with other endpoints than boot keyboard may go wrong. On my keyboard with mouse key the converter locks up when using mouse key function. + +Can't compile on Windows filesystem. + On Linux no problem. + Windows doesn't know difference between common/print.h and arduino/Print.h. + Change file name common/print.h to console.h ? -- cgit v1.2.3