USB Complete Fourth Edition by Jan Axelson
While this book remains my first reference for everything USB, it is a little short on the bits and bytes level information required for assembler coded firmware. The best single example of Microchip assembler source code for a USB HID I have found is the following:http://www.marcansoft.com/subidos/sdgp.zip
I understand that this source code was based on a similar work produced by Bradley Minch, who is worth a google since he appears in a number of public forums. Also worth a look is the following brief but very informative website:http://www.usbmadesimple.co.uk/
And of course the Microchip data sheet is essential:Microchip PIC18F2455/2550/4455/4550 Data Sheet
CONFIG PLLDIV=5,CPUDIV=OSC1_PLL2,USBDIV=2,FOSC=HSPLL_HS
Referring to the Microchip PIC18F2455/2550/4455/4550 Data Sheet on Page 174, there are 32 end points ranging from EP0 to EP31. Each end point has two sets of the registers BDnSTART, BDnCNT, BDnADRL and BDnADRH. In each case one set is for IN messages and the other set is for OUT messages. For the sake of confusion USB terminology is PC centric, so IN refers to messages being sent by the device and OUT refers to messages being received by the device.Value | Variable | Description |
---|---|---|
0x12 | bLength | Size of this message in bytes |
0x01 | USB_DESCRIPTOR_DEVICE | Descriptor Type - Device |
0x0111 | bcdUSB | USB Specification release number 1.11 |
00 | bDeviceClass | Class is specified in interface descriptor |
00 | bDeviceSubClass | |
00 | bDeviceProtocol | |
0x40 | bMaxPacketSize | EP0 maximum packet size |
0x04D8 | idVendor | Microchip vendor id |
0x4242 | idProduct | any number really - refer to text below |
0x0100 | bcdDevice | device release number |
0x01 | iManufacturer | used to reference string in string descriptors |
0x02 | iProduct | used to reference string in string descriptors |
00 | iSerialNumber | A zero indicates that there is no serial number |
0x01 | bNumVConfigurations | Number of configurations |
Value | Variable | Description |
---|---|---|
0x09 | bLength | Size of this message component in bytes |
0x02 | USB_DESCRIPTOR_CONFIGURATION | Descriptor Type - Configuration |
0x0029 | wTotalLength | Total length of the long response |
0x01 | bNumInterfaces | Number of interface in this configuration |
0x01 | bConfigurationValue | Index of this configuration |
0 | iConfiguration | Configuration string index |
0xC0 | bmAttributes | Attributes - in this case self powered only |
0x32 | bMaxPower | Maximum power consumption (100mA) |
0x09 | bLength | Size of this message component in bytes |
0x04 | USB_DESCRIPTOR_INTERFACE | Descriptor Type - Interface |
0 | bInterfaceNumber | Interface number |
0 | bAlternateSetting | Alternate setting number |
0x02 | bNumEndpoints | Number of endpoints in this interface |
0x03 | bInterfaceClass | Interface class (HID) |
0 | bInterfaceSubclass | Interface subclass |
0 | bInterfaceProtocol | Interface protocol |
0 | iInterface | Interface string index |
0x09 | bLength | Size of this message component in bytes |
0x21 | DSC_HID | Descriptor Type - HID |
0x0111 | bcdHID | HID specification release number |
0 | bCountryCode | Country code |
0x01 | bNumDescriptors | Number of subordinate class descriptors |
0x22 | bDescriptorType (DSC_RPT) | Descriptor type (report) |
0x0022 | wDescriptorLength | Report descriptor size in bytes |
0x07 | bLength | Size of this message component in bytes |
0x05 | USB_DESCRIPTOR_ENDPOINT | Descriptor Type - endpoint |
0x01 | bEndpointAddress | Endpoint number and direction (1 OUT) |
0x03 | bmAttributes | Transfer type - interrupt |
0x000F | wMaxPacketSize | Maximum packet size |
0x0A | bInterval | Polling interval (milliseconds) |
0x07 | bLength | Size of this message component in bytes |
0x05 | USB_DESCRIPTOR_ENDPOINT | Descriptor Type - endpoint |
0x81 | bEndpointAddress | Endpoint number and direction (1 IN) |
0x03 | bmAttributes | Transfer type - interrupt |
0x000F | wMaxPacketSize | Maximum packet size |
0x0A | bInterval | Polling interval (milliseconds) |
Code | Value | Description |
---|---|---|
0x06 | 0xFFA0 | Usage page |
0x09 | 0x01 | Usage |
0xA1 | 0x01 | Collection |
0x09 | 0x03 | Usage |
0x15 | 0 | Logical minimum |
0x26 | 0x00FF | Logical maximum |
0x75 | 0x08 | Report size |
0x95 | 0x0F | Report count |
0x81 | 0x02 | Input |
0x09 | 0x04 | Usage |
0x15 | 0 | Logical minimum |
0x26 | 0x00FF | Logical maximum |
0x75 | 0x08 | Report size |
0x95 | 0x0F | Report count |
0x91 | 0x02 | Output |
0x0C | End collection |
Value | Variable | Description |
---|---|---|
0x04 | bLength | Size of this message in bytes |
0x03 | USB_DESCRIPTOR_STRING | Descriptor Type - String |
0x0409 | wLangId | Language Id |