diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-09 13:39:56 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-09 13:39:56 +0000 |
| commit | ad2b3c93e721c01b3c659c8ae2b4db969211b40b (patch) | |
| tree | 5add73e0b3a9819013d8a47d75a7eb47a3cfece2 /Bootloaders/HID | |
| parent | ef4c84eafe165753e40cb1080bc8599e20072e1f (diff) | |
Clean up bootloader makefile comments.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2320 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Bootloaders/HID')
| -rw-r--r-- | Bootloaders/HID/makefile | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/Bootloaders/HID/makefile b/Bootloaders/HID/makefile index b8f385ce..8df1c3f4 100644 --- a/Bootloaders/HID/makefile +++ b/Bootloaders/HID/makefile @@ -9,19 +9,16 @@ # LUFA Project Makefile. # -------------------------------------- -# Starting byte address of the bootloader, as a byte address - computed via the formula -# BOOT_START = ((FLASH_SIZE_KB - BOOT_SECTION_SIZE_KB) * 1024) -# -# Note that the bootloader size and start address given in AVRStudio is in words and not -# bytes, and so will need to be doubled to obtain the byte address needed by AVR-GCC. +# Flash size and bootloader section sizes of the target, in KB. These must +# match the target's total FLASH size and the bootloader size set in the +# device's fuses. FLASH_SIZE_KB := 128 BOOT_SECTION_SIZE_KB := 8 -# Formulas used to calculate the starting address of the Bootloader section, and the User Application -# API jump table (for more information on the latter, see the bootloader documentation). These formulas -# should not need to be altered - modify the FLASH_SIZE_KB and BOOT_SECTION_KB values above instead. +# Bootloader address calculations (requires the "bc" unix utility) - do +# not modify these calculations, but rather modify the depedant values above. BOOT_START := 0x$(shell echo "obase=16; ($(FLASH_SIZE_KB) - $(BOOT_SECTION_SIZE_KB)) * 1024" | bc) -BOOT_API_TABLESTART := 0x$(shell echo "obase=16; (($(FLASH_SIZE_KB) * 1024) - 96)" | bc) + MCU = at90usb1287 ARCH = AVR8 |
