From c28ab2c99a51c61c077695bb80e4044b8c03d028 Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Wed, 3 Nov 2010 09:58:45 -0300 Subject: [PATCH] cntr/fw/include/cntr/usb-ids.h was never checked in. Oops ! --- cntr/fw/include/cntr/usb-ids.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 cntr/fw/include/cntr/usb-ids.h diff --git a/cntr/fw/include/cntr/usb-ids.h b/cntr/fw/include/cntr/usb-ids.h new file mode 100644 index 0000000..1419f8f --- /dev/null +++ b/cntr/fw/include/cntr/usb-ids.h @@ -0,0 +1,30 @@ +/* + * include/cntr/usb-ids.h - USB vendor and product IDs + * + * Written 2010 by Werner Almesberger + * Copyright 2010 Werner Almesberger + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + */ + + +#ifndef USB_IDS_H +#define USB_IDS_H + +/* + * Platform-specific settings + * + * USB_VENDOR = Qi Hardware + * USB_PRODUCT = CNTR + * ^ ^^ = C 72, from "leet", http://en.wikipedia.org/wiki/Leet + * ^ = b, because we dont have a suitable replacement + * in leet and B is next to N on the keyboard + */ + +#define USB_VENDOR 0x20b7 /* Qi Hardware */ +#define USB_PRODUCT 0xcb72 /* Arbitrary-precision frequency counter */ + +#endif /* !USB_IDS_H */