1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-11-22 07:16:15 +02:00

atusb/fw: Bump version to 0.3 after adding EUI64 read/write handling

This commit is contained in:
Stefan Schmidt 2015-12-30 11:55:24 +01:00
parent 583a7b72ee
commit fde38d59e3
2 changed files with 3 additions and 2 deletions

View File

@ -30,7 +30,7 @@ SIZE = $(AVR_PREFIX)size
# BCD notion is 0xJJMM with JJ being major and MM being minor. Thus 0x0020 is # BCD notion is 0xJJMM with JJ being major and MM being minor. Thus 0x0020 is
# version 0.2 */ # version 0.2 */
USB_BCD_VERSION = 0020 USB_BCD_VERSION = 0030
USB_VENDOR_ID = 20b7 USB_VENDOR_ID = 20b7
USB_PRODUCT_ID = 1540 USB_PRODUCT_ID = 1540
USB_ID = $(USB_VENDOR_ID):$(USB_PRODUCT_ID) USB_ID = $(USB_VENDOR_ID):$(USB_PRODUCT_ID)

View File

@ -23,10 +23,11 @@
* 0.0 initial release * 0.0 initial release
* 0.1 addition of ATUSB_TEST * 0.1 addition of ATUSB_TEST
* 0.2 First public release * 0.2 First public release
* 0.3 ATUSB_EUI64_READ/WRITE for permanent EUI64 handling
*/ */
#define EP0ATUSB_MAJOR 0 /* EP0 protocol, major revision */ #define EP0ATUSB_MAJOR 0 /* EP0 protocol, major revision */
#define EP0ATUSB_MINOR 2 /* EP0 protocol, minor revision */ #define EP0ATUSB_MINOR 3 /* EP0 protocol, minor revision */
#define HW_TYPE_100813 0 /* 2010-08-13 */ #define HW_TYPE_100813 0 /* 2010-08-13 */
#define HW_TYPE_101216 1 /* 2010-12-16 */ #define HW_TYPE_101216 1 /* 2010-12-16 */