Changeset 2193471 in mainline
- Timestamp:
- 2010-10-12T16:45:02Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2b887bf7
- Parents:
- bbf79e0
- Location:
- uspace
- Files:
-
- 1 added
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/virtusbkbd/kbdconfig.h
rbbf79e0 r2193471 36 36 #define VUK_KBDCONFIG_H_ 37 37 38 #include <usb/de vice.h>38 #include <usb/descriptor.h> 39 39 #include "report.h" 40 40 #include "descriptor.h" -
uspace/app/virtusbkbd/virtusbkbd.c
rbbf79e0 r2193471 46 46 47 47 #include <usb/hcd.h> 48 #include <usb/de vice.h>48 #include <usb/descriptor.h> 49 49 #include <usb/hid.h> 50 50 #include <usbvirt/device.h> -
uspace/lib/usb/devreq.h
rbbf79e0 r2193471 55 55 } usb_stddevreq_t; 56 56 57 /** Descriptor type. */58 typedef enum {59 USB_DESCTYPE_DEVICE = 1,60 USB_DESCTYPE_CONFIGURATION = 2,61 USB_DESCTYPE_STRING = 3,62 USB_DESCTYPE_INTERFACE = 4,63 USB_DESCTYPE_ENDPOINT = 564 } usb_descriptor_type_t;65 66 57 /** Device request setup packet. 67 58 * The setup packet describes the request. -
uspace/lib/usb/hcd.h
rbbf79e0 r2193471 44 44 /** USB transfer type. */ 45 45 typedef enum { 46 USB_TRANSFER_ ISOCHRONOUS,47 USB_TRANSFER_I NTERRUPT,48 USB_TRANSFER_ CONTROL,49 USB_TRANSFER_ BULK46 USB_TRANSFER_CONTROL = 0, 47 USB_TRANSFER_ISOCHRONOUS = 1, 48 USB_TRANSFER_BULK = 2, 49 USB_TRANSFER_INTERRUPT = 3 50 50 } usb_transfer_type_t; 51 51 -
uspace/lib/usbvirt/device.h
rbbf79e0 r2193471 37 37 38 38 #include <usb/hcd.h> 39 #include <usb/de vice.h>39 #include <usb/descriptor.h> 40 40 #include <usb/devreq.h> 41 41
Note:
See TracChangeset
for help on using the changeset viewer.