Changeset 6326155b in mainline for uspace/lib/usbdev/include/usb/dev/request.h
- Timestamp:
- 2012-12-22T22:39:05Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 52f9c57
- Parents:
- 971fbfde
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/include/usb/dev/request.h
r971fbfde r6326155b 42 42 #include <usb/descriptor.h> 43 43 #include <usb/request.h> 44 45 /** USB device status - device is self powered (opposed to bus powered). */46 #define USB_DEVICE_STATUS_SELF_POWERED ((uint16_t)(1 << 0))47 48 /** USB device status - remote wake-up signaling is enabled. */49 #define USB_DEVICE_STATUS_REMOTE_WAKEUP ((uint16_t)(1 << 1))50 51 /** USB endpoint status - endpoint is halted (stalled). */52 #define USB_ENDPOINT_STATUS_HALTED ((uint16_t)(1 << 0))53 54 /** USB feature selector - endpoint halt (stall). */55 #define USB_FEATURE_SELECTOR_ENDPOINT_HALT (0)56 57 /** USB feature selector - device remote wake-up. */58 #define USB_FEATURE_SELECTOR_REMOTE_WAKEUP (1)59 60 44 61 45 int usb_control_request_set(usb_pipe_t *,
Note:
See TracChangeset
for help on using the changeset viewer.