aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/HID/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-01-15 14:07:14 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-01-15 14:07:14 +0000
commitbc3db793e9867567bc881942845c7d84c2b09e37 (patch)
tree61a1f5b0c81e24277890d184e4aa9d1005c3fd70 /Bootloaders/HID/makefile
parent3038ea1c6ea8cbc1a0a61ea1674b6c097b6b006d (diff)
downloadlufa-bc3db793e9867567bc881942845c7d84c2b09e37.tar.gz
lufa-bc3db793e9867567bc881942845c7d84c2b09e37.tar.bz2
lufa-bc3db793e9867567bc881942845c7d84c2b09e37.zip
Minor bootloader tweaks; make some functions static where possible to reduce the compiled binary size, add additional comments to the makefiles.
Diffstat (limited to 'Bootloaders/HID/makefile')
-rw-r--r--Bootloaders/HID/makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Bootloaders/HID/makefile b/Bootloaders/HID/makefile
index 3768320b3..853bcade0 100644
--- a/Bootloaders/HID/makefile
+++ b/Bootloaders/HID/makefile
@@ -96,6 +96,10 @@ F_USB = $(F_CPU)
# bytes, and so will need to be doubled to obtain the byte address needed by AVR-GCC.
FLASH_SIZE_KB = 128
BOOT_SECTION_SIZE_KB = 4
+
+
+# Formulas used to calculate the starting address of the Bootloader section. These formulas
+# should not need to be altered - modify the FLASH_SIZE_KB and BOOT_SECTION_KB values above instead.
BOOT_START = 0x$(shell echo "obase=16; ($(FLASH_SIZE_KB) - $(BOOT_SECTION_SIZE_KB)) * 1024" | bc)