diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2007-08-27 16:04:32 +0000 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2007-08-27 16:04:32 +0000 |
commit | 8181a0c905a591caef684a2d7487feedbec84c10 (patch) | |
tree | 3939183e8e73928d1b5dcfc97b40f33b6baa309b /apps/settings.h | |
parent | 9305c86f5b8fdfd60882428f884ba29bded8da78 (diff) |
Usb Stack: only setup packet handling, and not enabled by default as there is a lot to do.
* settings code is not fully ready -> changing device driver has no effect
* clean ups
* check copyriths
* find a way to detect IN transfers
* support for full and highspeed
* ...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14470 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r-- | apps/settings.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h index 987709ce72..c4cb917c1f 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -748,6 +748,10 @@ struct user_settings int list_accel_start_delay; /* ms before we start increaseing step size */ int list_accel_wait; /* ms between increases */ #endif +#ifdef HAVE_USBSTACK + int usb_stack_mode; /* device or host */ + unsigned char usb_stack_device_driver[32]; /* usb device driver to load */ +#endif }; /** global variables **/ |