mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-07 13:45:03 -05:00
M:Robe 500/M66591 USB improvements: Interrupts now work, a bug in odd-length transfers has been fixed. Buffers that are not initially short aligned are also now supported. Enable USB HID mouse mode.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23483 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
451f9d58f3
commit
02385cb5b0
6 changed files with 193 additions and 80 deletions
|
|
@ -98,10 +98,18 @@ enum {
|
|||
#ifdef HAVE_USBSTACK
|
||||
/* USB class drivers */
|
||||
enum {
|
||||
#ifdef USB_ENABLE_STORAGE
|
||||
USB_DRIVER_MASS_STORAGE,
|
||||
#endif
|
||||
#ifdef USB_ENABLE_SERIAL
|
||||
USB_DRIVER_SERIAL,
|
||||
#endif
|
||||
#ifdef USB_ENABLE_CHARGING_ONLY
|
||||
USB_DRIVER_CHARGING_ONLY,
|
||||
#endif
|
||||
#ifdef USB_ENABLE_HID
|
||||
USB_DRIVER_HID,
|
||||
#endif
|
||||
USB_NUM_DRIVERS
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue