diff --git a/firmware/usb.c b/firmware/usb.c index 866ca5319c..58656b585f 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; }