diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-10-06 10:16:02 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-10-06 10:16:02 +0000 |
commit | 3ae9e6042fc1ebc876e32142dde606f7890518b2 (patch) | |
tree | dc543d0f197986bafee383442e147acd3254ddd4 /LUFA/ManPages/SoftwareBootloaderJump.txt | |
parent | 93793679c95198e3272de565c6904f14ab257795 (diff) | |
download | lufa-3ae9e6042fc1ebc876e32142dde606f7890518b2.tar.gz lufa-3ae9e6042fc1ebc876e32142dde606f7890518b2.tar.bz2 lufa-3ae9e6042fc1ebc876e32142dde606f7890518b2.zip |
Cache the USB_DeviceState variable internally in the library core when multiple checks are required in a single loop iteration, to reduce compiled code size.
Diffstat (limited to 'LUFA/ManPages/SoftwareBootloaderJump.txt')
-rw-r--r-- | LUFA/ManPages/SoftwareBootloaderJump.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/ManPages/SoftwareBootloaderJump.txt b/LUFA/ManPages/SoftwareBootloaderJump.txt index 6e7ea584e..574398c8f 100644 --- a/LUFA/ManPages/SoftwareBootloaderJump.txt +++ b/LUFA/ManPages/SoftwareBootloaderJump.txt @@ -35,7 +35,7 @@ * void Bootloader_Jump_Check(void) * { * // If the reset source was the bootloader and the key is correct, clear it and jump to the bootloader - * if ((MCUSR & (1<<WDRF)) && (Boot_Key == MAGIC_BOOT_KEY)) + * if ((MCUSR & (1 << WDRF)) && (Boot_Key == MAGIC_BOOT_KEY)) * { * Boot_Key = 0; * ((void (*)(void))BOOTLOADER_START_ADDRESS)(); |