aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Starkjohann <cs+github@obdev.at>2009-08-22 11:42:22 +0000
committerChristian Starkjohann <cs+github@obdev.at>2009-08-22 11:42:22 +0000
commit17611a19600378c157e68c8808f476e4753f50a4 (patch)
tree3dead3c3c383e8476c6f1c9195f16020713de61e
parent0d51bdaf9b7b853571a35ac98190e1df47cb37db (diff)
downloadv-usb-17611a19600378c157e68c8808f476e4753f50a4.tar.gz
v-usb-17611a19600378c157e68c8808f476e4753f50a4.tar.bz2
v-usb-17611a19600378c157e68c8808f476e4753f50a4.zip
- updates in comments
-rw-r--r--usbdrv/usbdrv.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/usbdrv/usbdrv.h b/usbdrv/usbdrv.h
index 5c520c8..b4a49e6 100644
--- a/usbdrv/usbdrv.h
+++ b/usbdrv/usbdrv.h
@@ -519,16 +519,16 @@ int usbDescriptorStringSerialNumber[];
/* make sure we have a VID and PID defined, byte order is lowbyte, highbyte */
#ifndef USB_CFG_VENDOR_ID
-# define USB_CFG_VENDOR_ID 0xc0, 0x16 /* 5824 in dec, stands for VOTI */
+# define USB_CFG_VENDOR_ID 0xc0, 0x16 /* = 0x16c0 = 5824 = voti.nl */
#endif
#ifndef USB_CFG_DEVICE_ID
# if USB_CFG_HID_REPORT_DESCRIPTOR_LENGTH
-# define USB_CFG_DEVICE_ID 0xdf, 0x05 /* 1503 in dec, shared PID for HIDs */
+# define USB_CFG_DEVICE_ID 0xdf, 0x05 /* = 0x5df = 1503, shared PID for HIDs */
# elif USB_CFG_INTERFACE_CLASS == 2
-# define USB_CFG_DEVICE_ID 0xe1, 0x05 /* 1505 in dec, shared PID for CDC Modems */
+# define USB_CFG_DEVICE_ID 0xe1, 0x05 /* = 0x5e1 = 1505, shared PID for CDC Modems */
# else
-# define USB_CFG_DEVICE_ID 0xdc, 0x05 /* 1500 in dec, obdev's free PID */
+# define USB_CFG_DEVICE_ID 0xdc, 0x05 /* = 0x5dc = 1500, obdev's free PID */
# endif
#endif