diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-04-25 07:28:36 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-04-25 07:28:36 +0000 |
commit | f670bdeff83ee519b67c661cbe794d787c2a5403 (patch) | |
tree | b92a94dc8195e498981bc33a704b5be381ba40d7 /LUFA/CodeTemplates | |
parent | 7b0cebc1d7c3fe55fa10acb66de60e52c2478195 (diff) | |
download | lufa-f670bdeff83ee519b67c661cbe794d787c2a5403.tar.gz lufa-f670bdeff83ee519b67c661cbe794d787c2a5403.tar.bz2 lufa-f670bdeff83ee519b67c661cbe794d787c2a5403.zip |
Add __VA_ARGS__ support to the LUFA supplied ISR macro. Add proper result typecasting to the SWAPENDIAN_* macros.
Switch to using -1 on the UC3 target to obtain a register mask with all bits set (for clearing interrupts and status flags).
Fix incorrect USB controller mode on the UC3 when a fixed mode is specified as a compile time option due to AVR32_USBB.USBCON.uide being set by default.
Make USB_Descriptor_String_t use a uint16_t for Unicode strings on all targets except the AVR8 (retained for backwards compatibility).
Diffstat (limited to 'LUFA/CodeTemplates')
-rw-r--r-- | LUFA/CodeTemplates/makefile_template.uc3 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/LUFA/CodeTemplates/makefile_template.uc3 b/LUFA/CodeTemplates/makefile_template.uc3 index 843d775af..e56cb324a 100644 --- a/LUFA/CodeTemplates/makefile_template.uc3 +++ b/LUFA/CodeTemplates/makefile_template.uc3 @@ -236,9 +236,7 @@ ASFLAGS = $(ADEFS) -Wa,-adhlns=$(<:%.S=$(OBJDIR)/%.lst),-gstabs,--listing-cont-l # -Map: create map file
# --cref: add cross reference to map file
LDFLAGS = -Wl,-Map=$(TARGET).map,--cref
-LDFLAGS += -Wl,--relax
-LDFLAGS += -Wl,--gc-sections
-LDFLAGS += -Wl,--rodata-writable
+LDFLAGS += -Wl,--gc-sections --rodata-writable
LDFLAGS += -Wl,--direct-data
#LDFLAGS += -T linker_script.x
|