summaryrefslogtreecommitdiff
path: root/protocol
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2012-09-04 13:29:21 +0900
committertmk <nobody@nowhere>2012-09-04 13:29:21 +0900
commit232ab308e358e41f3253d66fa009c1ebca0951a2 (patch)
tree737827112555c00a7f2ebbb88e61079c460be71a /protocol
parentc77c5043a121f195b3a552feb8283424a0652ce2 (diff)
usb_hid: workaround for compile on Windows.
Diffstat (limited to 'protocol')
-rw-r--r--protocol/usb_hid.mk6
-rwxr-xr-x[-rw-r--r--]protocol/usb_hid/README10
2 files changed, 16 insertions, 0 deletions
diff --git a/protocol/usb_hid.mk b/protocol/usb_hid.mk
index f3149f7f4b..fb4916d562 100644
--- a/protocol/usb_hid.mk
+++ b/protocol/usb_hid.mk
@@ -65,3 +65,9 @@ VPATH += $(TOP_DIR)/$(ARDUINO_CORES_DIR)
# for #include "pins_arduino.h"
VPATH += $(TOP_DIR)/$(ARDUINO_DIR)/variants/leonardo
+
+# ad hoc workaround for compile problem on Windows:
+# Windows doesn't know difference between common/print.h and arduino/Print.h.
+# On Linux no problem.
+# Change file name common/print.h to console.h ?
+VPATH := $(TOP_DIR)/common $(VPATH)
diff --git a/protocol/usb_hid/README b/protocol/usb_hid/README
index 5d49cc8d20..1357a4c726 100644..100755
--- 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 ?