我正在尝试提高 ION IED05 鼓控制器的 USB 轮询速率,以减少敲击通鼓时的延迟。这个鼓控制器实际上就像一个 USB 游戏手柄,而不是一个 MIDI 乐器。因此我正在编写一个 midi 代理。
首先让我给你一些信息。
/dev/input/js0
我从击打汤姆斯时收到事件。
我正在运行最新的 Arch Linux 安装,带有实时内核Linux instrument 5.4.19-rt11-1-rt #1 SMP PREEMPT_RT Fri, 21 Feb 2020 08:55:59 +0000 x86_64 GNU/Linux
连接控制器时,我得到以下 dmesg 输出:
[ 3502.121825] usb 2-4.1: new low-speed USB device number 13 using xhci_hcd
[ 3502.238814] usb 2-4.1: New USB device found, idVendor=15e4, idProduct=0100, bcdDevice= 1.00
[ 3502.238817] usb 2-4.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3502.238819] usb 2-4.1: Product: DRUM VDX-150
[ 3502.238820] usb 2-4.1: Manufacturer: DRUM VDX-150
[ 3502.257116] input: DRUM VDX-150 DRUM VDX-150 as /devices/pci0000:00/0000:00:14.0/usb2/2-4/2-4.1/2-4.1:1.0/0003:15E4:0100.000D/input/input44
[ 3502.257407] hid-generic 0003:15E4:0100.000D: input,hidraw1: USB HID v1.00 Joystick [DRUM VDX-150 DRUM VDX-150] on usb-0000:00:14.0-4.1/input0
内核对设备有这样的说法:
instrument# cat /sys/kernel/debug/usb/devices | grep DRUM -B3 -A3
T: Bus=02 Lev=02 Prnt=03 Port=00 Cnt=01 Dev#= 11 Spd=1.5 MxCh= 0
D: Ver= 1.10 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 8 #Cfgs= 1
P: Vendor=15e4 ProdID=0100 Rev= 1.00
S: Manufacturer=DRUM VDX-150
S: Product=DRUM VDX-150
C:* #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=100mA
I:* If#= 0 Alt= 0 #EPs= 1 Cls=03(HID ) Sub=00 Prot=00 Driver=usbhid
E: Ad=81(I) Atr=03(Int.) MxPS= 8 Ivl=10ms
USB设备信息:
instrument# lsusb -vd 15e4:0100
Bus 002 Device 011: ID 15e4:0100 Numark
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 1.10
bDeviceClass 0
bDeviceSubClass 0
bDeviceProtocol 0
bMaxPacketSize0 8
idVendor 0x15e4 Numark
idProduct 0x0100
bcdDevice 1.00
iManufacturer 1 DRUM VDX-150
iProduct 2 DRUM VDX-150
iSerial 0
bNumConfigurations 1
Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength 0x0022
bNumInterfaces 1
bConfigurationValue 1
iConfiguration 0
bmAttributes 0x80
(Bus Powered)
MaxPower 100mA
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 0
bAlternateSetting 0
bNumEndpoints 1
bInterfaceClass 3 Human Interface Device
bInterfaceSubClass 0
bInterfaceProtocol 0
iInterface 0
HID Device Descriptor:
bLength 9
bDescriptorType 33
bcdHID 1.00
bCountryCode 0 Not supported
bNumDescriptors 1
bDescriptorType 34 Report
wDescriptorLength 86
Report Descriptors:
** UNAVAILABLE **
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81 EP 1 IN
bmAttributes 3
Transfer Type Interrupt
Synch Type None
Usage Type Data
wMaxPacketSize 0x0008 1x 8 bytes
bInterval 10
目前,鼓组每 8 毫秒轮询一次(我相信内核将 10 解释为 8?),如下所示Ivl=10ms
之上研究如果发现我可以强制轮询率,我已设置 usbhid.jspoll 参数,如下所示:
instrument# cat /etc/modprobe.d/usbhid.conf
options usbhid jspoll=1
这似乎被采纳了:
instrument# cat /sys/module/usbhid/parameters/jspoll
1
但这个参数似乎并没有改变轮询率的任何内容。
我正在测试这一切吉尔斯,当我创建一个MIDI代理对于这个鼓组,我看到事件之间的最短持续时间是 8 毫秒。
我已经尝试了我能想到的一切,但我不知道下一步该尝试什么。
如何提高该设备的轮询率?
答案1
这是因为 bInterval 它是 USB 设备固有的,它是一个规范,除非您对设备本身进行编程,否则您无法更改它。通过降低操作系统轮询率,您做得很好,这对您的情况有一点帮助。
您可以阅读有关输入延迟的更多信息https://inputlag.science/controller