diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-05-30 14:01:41 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-05-30 14:01:41 +0000 |
commit | 152b2764c3c719e3e9e34ee60b5db8d99ff2611b (patch) | |
tree | ad8580af599e27a1a8e1ca0baa5f1f7e27568ba7 /Bootloaders | |
parent | e95c96ea20117dbf43bd37e4abb5bad974f30816 (diff) | |
download | lufa-152b2764c3c719e3e9e34ee60b5db8d99ff2611b.tar.gz lufa-152b2764c3c719e3e9e34ee60b5db8d99ff2611b.tar.bz2 lufa-152b2764c3c719e3e9e34ee60b5db8d99ff2611b.zip |
Small tweaks to ConfigDescriptor.c/.h to ensure pointers use the correct type, and to remove const attribute from the descriptor comparator callback function pointer type define, and into the function prototype instead.
Diffstat (limited to 'Bootloaders')
-rw-r--r-- | Bootloaders/CDC/makefile | 4 | ||||
-rw-r--r-- | Bootloaders/DFU/makefile | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Bootloaders/CDC/makefile b/Bootloaders/CDC/makefile index 732198942..63e0ed5b1 100644 --- a/Bootloaders/CDC/makefile +++ b/Bootloaders/CDC/makefile @@ -85,7 +85,9 @@ F_CPU = 8000000 F_CLOCK = $(F_CPU) -# Starting byte address of the bootloader +# Starting byte address of the bootloader, as a byte address. Note that the address given +# in the AVRStudio fuse programming dialogue uses word addresses, which will have to be +# doubled to obtain the starting byte address of the bootloader section. BOOT_START = 0x1E000 diff --git a/Bootloaders/DFU/makefile b/Bootloaders/DFU/makefile index 6695ff5ad..164295bd9 100644 --- a/Bootloaders/DFU/makefile +++ b/Bootloaders/DFU/makefile @@ -85,7 +85,9 @@ F_CPU = 8000000 F_CLOCK = $(F_CPU) -# Starting byte address of the bootloader +# Starting byte address of the bootloader, as a byte address. Note that the address given +# in the AVRStudio fuse programming dialogue uses word addresses, which will have to be +# doubled to obtain the starting byte address of the bootloader section. BOOT_START = 0x1E000 |