diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-06-21 11:09:12 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-06-21 11:09:12 +0000 |
commit | 7d391eb04c116b8a79c1a99df3708a0b2200fab0 (patch) | |
tree | 41c509e61ca18ede43dbe6438ac335d8ef12beaa /Bootloaders/TeensyHID | |
parent | 730624f745648cbd32bec7da64833cb2aadd44ea (diff) | |
download | lufa-7d391eb04c116b8a79c1a99df3708a0b2200fab0.tar.gz lufa-7d391eb04c116b8a79c1a99df3708a0b2200fab0.tar.bz2 lufa-7d391eb04c116b8a79c1a99df3708a0b2200fab0.zip |
Add NO_INTERNAL_SERIAL compile time option to bootloaders to prevent them from having unneccesary size increases from unused code.
Diffstat (limited to 'Bootloaders/TeensyHID')
-rw-r--r-- | Bootloaders/TeensyHID/makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Bootloaders/TeensyHID/makefile b/Bootloaders/TeensyHID/makefile index ea528fb00..13d28e5d6 100644 --- a/Bootloaders/TeensyHID/makefile +++ b/Bootloaders/TeensyHID/makefile @@ -118,6 +118,7 @@ LUFA_OPTS += -D FIXED_CONTROL_ENDPOINT_SIZE=8 LUFA_OPTS += -D USE_SINGLE_DEVICE_CONFIGURATION
LUFA_OPTS += -D USE_STATIC_OPTIONS="(USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)"
LUFA_OPTS += -D USE_RAM_DESCRIPTORS
+LUFA_OPTS += -D NO_INTERNAL_SERIAL
# List C source files here. (C dependencies are automatically generated.)
|