summaryrefslogtreecommitdiff
path: root/tinyusb/host
diff options
context:
space:
mode:
authorhathach <[email protected]>2012-11-29 16:32:49 +0700
committerhathach <[email protected]>2012-11-29 16:32:49 +0700
commitb8b92e120220ee19f623809673323344e257bd4b (patch)
tree6f3248e5da2d684d41be5f27e84e8beb6f023382 /tinyusb/host
parent8f57cb6ccb65c0519d78661cb36be12e6079f965 (diff)
hid mouse working
Diffstat (limited to 'tinyusb/host')
-rw-r--r--tinyusb/host/hcd.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tinyusb/host/hcd.c b/tinyusb/host/hcd.c
index 77175d573..481dc91ae 100644
--- a/tinyusb/host/hcd.c
+++ b/tinyusb/host/hcd.c
@@ -37,9 +37,13 @@
#include "hcd.h"
+#ifdef CFG_TUSB_HOST
+
TUSB_Error_t hcd_init()
{
return tERROR_NONE;
}
+
+#endif