diff options
author | Christian Pointner <equinox@spreadspace.org> | 2014-03-15 21:16:23 +0000 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2014-03-15 21:16:23 +0000 |
commit | 565d4aa1a4f838c17520a58071c7d51dcc556aa7 (patch) | |
tree | dded009885b64d74daee136ceab44a83a55a9aa6 /any-led/Makefile | |
parent | added deps to Makefile (diff) |
fixed usb string length
git-svn-id: https://svn.spreadspace.org/avr/trunk@254 aa12f405-d877-488e-9caf-2d797e2a1cc7
Diffstat (limited to 'any-led/Makefile')
-rw-r--r-- | any-led/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/any-led/Makefile b/any-led/Makefile index 1fbb6d6..ddfcc00 100644 --- a/any-led/Makefile +++ b/any-led/Makefile @@ -38,8 +38,8 @@ LUFA_OPTS += -D USE_FLASH_DESCRIPTORS LUFA_OPTS += -D USE_STATIC_OPTIONS="(USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)"
LUFA_OPTS += -D INTERRUPT_CONTROL_ENDPOINT
-LUFA_OPTS += -D USB_MANUFACTURER="L\"equinox\""
-LUFA_OPTS += -D USB_PRODUCT="L\"$(NAME)\""
+LUFA_OPTS += -D USB_MANUFACTURER="L\"equinox\"" -D USB_MANUFACTURER_LEN=7
+LUFA_OPTS += -D USB_PRODUCT="L\"spreadspace any-led example\"" -D USB_PRODUCT_LEN=27
LUFA_COMPONENTS := USB USBCLASS SERIAL
|