summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/usb.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/usb.c b/firmware/usb.c
index 866ca53..58656b5 100644
--- a/firmware/usb.c
+++ b/firmware/usb.c
@@ -353,6 +353,11 @@ bool usb_detect(void)
#ifdef USB_GMINISTYLE
current_status = (P5 & 0x10)?true:false;
#endif
+#ifdef IRIVER_H300
+ /* TODO: add proper code code for H300 USB style */
+ current_status = false;
+#endif
+
return current_status;
}