elFreak
elFreak

Reputation: 133

USB Device Controller Driver Specification

For USB Host Controllers there are the UHCI/OHCI/EHCI/XHCI specification that define how to program a driver. Is there an equivalent specification for USB Device Controllers?

Upvotes: 0

Views: 138

Answers (1)

David Grayson
David Grayson

Reputation: 87486

No. Generally, every USB-capable microcontroller has a USB block that you can control by writing to some registers in your code, but those registers are pretty different on the different microcontrollers and I have not heard of any attempt to standardize them.

Upvotes: 1

Related Questions