Files
jlibusb/java/src/ch/ntb/usb/Usb_Endpoint_Descriptor.java
schlaepfer 86ac913d63 - mcdp renamed to java
git-svn-id: https://svn.code.sf.net/p/libusbjava/code/trunk@144 94ad28fe-ef68-46b1-9651-e7ae4fcf1c4c
2006-05-05 08:43:29 +00:00

55 lines
1.6 KiB
Java

package ch.ntb.usb;
public class Usb_Endpoint_Descriptor {
public static final int USB_MAXENDPOINTS = 32;
/* in bEndpointAddress */
public static final int USB_ENDPOINT_ADDRESS_MASK = 0x0f;
public static final int USB_ENDPOINT_DIR_MASK = 0x80;
/* in bmAttributes */
public static final int USB_ENDPOINT_TYPE_MASK = 0x03;
public static final int USB_ENDPOINT_TYPE_CONTROL = 0;
public static final int USB_ENDPOINT_TYPE_ISOCHRONOUS = 1;
public static final int USB_ENDPOINT_TYPE_BULK = 2;
public static final int USB_ENDPOINT_TYPE_INTERRUPT = 3;
public byte bLength;
public byte bDescriptorType;
public byte bEndpointAddress;
public byte bmAttributes;
public short wMaxPacketSize;
public byte bInterval;
public byte bRefresh;
public byte bSynchAddress;
// TODO: Extra descriptors are not interpreted because of their unknown
// structure
public Usb_Endpoint_Descriptor extra; /* Extra descriptors */
public int extralen;
public String toString() {
StringBuffer sb = new StringBuffer();
sb.append("**Usb_Endpoint_Descriptor**\n");
sb.append("\tblenght: " + bLength + "\n");
sb.append("\tbDescriptorType: " + bDescriptorType + "\n");
sb.append("\tbEndpointAddress: 0x"
+ Integer.toHexString(bEndpointAddress & 0xFF) + "\n");
sb.append("\tbmAttributes: 0x"
+ Integer.toHexString(bmAttributes & 0xFF) + "\n");
sb.append("\twMaxPacketSize: " + wMaxPacketSize + "\n");
sb.append("\tbInterval: " + bInterval + "\n");
sb.append("\tbRefresh: " + bRefresh + "\n");
sb.append("\tbSynchAddress: " + bSynchAddress + "\n");
return sb.toString();
}
}