⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usbspec.java

📁 usbio Ver 2.40 source code!!! 做USB开发的值得
💻 JAVA
字号:
package de.thesycon.usbio;

public interface UsbSpec {

	// descriptor types
	public static final int	USB_DEVICE_DESCRIPTOR_TYPE                = 0x01;
	public static final int	USB_CONFIGURATION_DESCRIPTOR_TYPE         = 0x02;
	public static final int	USB_STRING_DESCRIPTOR_TYPE                = 0x03;
	public static final int	USB_INTERFACE_DESCRIPTOR_TYPE             = 0x04;
	public static final int	USB_ENDPOINT_DESCRIPTOR_TYPE              = 0x05;

	// descriptor types defined by DWG documents
	public static final int	USB_DEVICE_QUALIFIER_DESCRIPTOR_TYPE              = 0x06;
	public static final int	USB_OTHER_SPEED_CONFIGURATION_DESCRIPTOR_TYPE     = 0x07;
	public static final int	USB_INTERFACE_POWER_DESCRIPTOR_TYPE               = 0x08;
	public static final int	USB_HID_DESCRIPTOR_TYPE                           = 0x21;
	public static final int	AUDIO_CS_INTERFACE_TYPE                           = 0x24;
	public static final int	AUDIO_CS_ENDPOINT_TYPE                            = 0x25;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -