aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/TeensyHID/TeensyHID.txt
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-05-06 07:27:13 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-05-06 07:27:13 +0000
commitc3db72afdc9928afbf2a8986f6970aa85dd9902a (patch)
treecd69c9f45e00bd2788f6bfbffc2aa05878d69519 /Bootloaders/TeensyHID/TeensyHID.txt
parentadd51923661b5df5985bcd76e33f89835a9ead55 (diff)
downloadlufa-c3db72afdc9928afbf2a8986f6970aa85dd9902a.tar.gz
lufa-c3db72afdc9928afbf2a8986f6970aa85dd9902a.tar.bz2
lufa-c3db72afdc9928afbf2a8986f6970aa85dd9902a.zip
Make CDC class bootloader hard-reset the AVR when exited instead of a soft-reset. Reduce size of the TeensyHID bootloader slightly.
Fix the TeensyHID bootloader for the larger USB AVR devices, since Paul uses a different (undocumented) addressing scheme on these devices.
Diffstat (limited to 'Bootloaders/TeensyHID/TeensyHID.txt')
-rw-r--r--Bootloaders/TeensyHID/TeensyHID.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/Bootloaders/TeensyHID/TeensyHID.txt b/Bootloaders/TeensyHID/TeensyHID.txt
index 9dac8f5d0..1034c1c49 100644
--- a/Bootloaders/TeensyHID/TeensyHID.txt
+++ b/Bootloaders/TeensyHID/TeensyHID.txt
@@ -13,7 +13,7 @@
* - AT90USB162 (Teensy 1.0)
* - AT90USB646 (Teensy++ 1.0)
* - ATMEGA32U4 (Teensy 2.0)
- * - AT90USB1287 (Teensy++ 2.0)
+ * - AT90USB1286 (Teensy++ 2.0)
*
* \section SSec_Info USB Information:
*
@@ -51,7 +51,9 @@
*
* Out of the box this bootloader builds for the ATMEGA32U4, and will fit into 2-4KB of bootloader space. For other
* devices, the makefile will need to be updated to reflect the altered MCU model and bootloader start address. When
- * calculating the bootloader start address, use (TARGET_FLASH_SIZE_BYTES - 4096).
+ * calculating the bootloader start address, use (TARGET_FLASH_SIZE_BYTES - 4096) for targets where the bootloader
+ * compiles larger than 2KB, or (TARGET_FLASH_SIZE_BYTES - 2048) for smaller targets where the bootloader compiles
+ * under 2KB.
*
* This spoofs (with permission) the official Teensy bootloader's VID and PID, so that the software remains
* compatible with no changes.