obzkure
New member
Hello,
Teensy seems to have implemented the USB High Speed Protocol given the 480 Mbit/sec device capability.
On the description of the USB Keyboard functionality here - https://www.pjrc.com/teensy/td_keyboard.html in the section towards the end "Bandwidth - Less Than You Might Expect" it states that:
If the Teensy has implemented USB High Speed to achieve 480MBit/sec capability, wouldn't the transfer time for the keyboard packet be transferred every 0.125ms per the USB High Speed protocol? I'm curious if there is a limitation of the HID device drivers where interrupt endpoints can't be sent more frequently than 1ms, and are not able to take advantage of the 0.125ms microframes of USB HS? Or perhaps this USB Keyboard documentation was written before USB High Speed protocol was implemented?
Teensy seems to have implemented the USB High Speed Protocol given the 480 Mbit/sec device capability.
On the description of the USB Keyboard functionality here - https://www.pjrc.com/teensy/td_keyboard.html in the section towards the end "Bandwidth - Less Than You Might Expect" it states that:
..."There is nothing you can do about these limits"...
"The HID protocol is used by USB keyboards, and HID uses the USB "interrupt" transfer type, which allocates 1 packet per a configurable number of USB frames. Each USB frame is 1ms, and the Teensyduino USB keyboard code requests the interval to be every frame. If the operating system honors this request, bandwidth is available for 1000 packets per second."
If the Teensy has implemented USB High Speed to achieve 480MBit/sec capability, wouldn't the transfer time for the keyboard packet be transferred every 0.125ms per the USB High Speed protocol? I'm curious if there is a limitation of the HID device drivers where interrupt endpoints can't be sent more frequently than 1ms, and are not able to take advantage of the 0.125ms microframes of USB HS? Or perhaps this USB Keyboard documentation was written before USB High Speed protocol was implemented?