X-Git-Url: http://git.linex4red.de/pub/lufa.git/blobdiff_plain/c31fdbd03eee95660d65adb0f1bf7c0c397fd435..4707ffc5e5a67c8bf2d8b21390e248b60f857b63:/Bootloaders/DFU/BootloaderDFU.txt
diff --git a/Bootloaders/DFU/BootloaderDFU.txt b/Bootloaders/DFU/BootloaderDFU.txt
index 13dd05b63..2ada35ea2 100644
--- a/Bootloaders/DFU/BootloaderDFU.txt
+++ b/Bootloaders/DFU/BootloaderDFU.txt
@@ -38,7 +38,8 @@
*
*
* | Supported USB Speeds: |
- * Full Speed Mode |
+ * Low Speed Mode \n
+ * Full Speed Mode |
*
*
*
@@ -67,7 +68,7 @@
* manually change them in Descriptors.c and alter your driver's INF file accordingly.
*
* \section Sec_HostApp Host Controller Application
- *
+ *
* This bootloader is compatible with Atmel's FLIP utility on Windows machines, and dfu-programmer on Linux machines.
*
* \subsection SSec_FLIP FLIP (Windows)
@@ -116,7 +117,7 @@
* #define BOOTLOADER_MAGIC_SIGNATURE 0xDCFB
*
* #define BOOTLOADER_CLASS_SIGNATURE_START (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 4))
- * #define BOOTLOADER_CDC_SIGNATURE 0xDFB1
+ * #define BOOTLOADER_DFU_SIGNATURE 0xDFB1
*
* #define BOOTLOADER_ADDRESS_START (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 8))
* #define BOOTLOADER_ADDRESS_LENGTH 4
@@ -125,7 +126,7 @@
* From the application the API support of the bootloader can be detected by reading the FLASH memory bytes located at address
* \c BOOTLOADER_MAGIC_SIGNATURE_START and comparing them to the value \c BOOTLOADER_MAGIC_SIGNATURE. The class of bootloader
* can be determined by reading the FLASH memory bytes located at address \c BOOTLOADER_CLASS_SIGNATURE_START and comparing them
- * to the value \c BOOTLOADER_CDC_SIGNATURE. The start address of the bootloader can be retrieved by reading the bytes of FLASH
+ * to the value \c BOOTLOADER_DFU_SIGNATURE. The start address of the bootloader can be retrieved by reading the bytes of FLASH
* memory starting from address \c BOOTLOADER_ADDRESS_START.
*
* \subsection SSec_API_MemLayout Device Memory Map
@@ -178,10 +179,10 @@
*
*
* | SECURE_MODE |
- * BootloaderDFU.h |
- * If defined to true, the bootloader will not accept any memory commands other than a chip erase on start-up, until an
+ * | AppConfig.h |
+ * If defined to \c true, the bootloader will not accept any memory commands other than a chip erase on start-up, until an
* erase has been performed. This can be used in conjunction with the AVR's lockbits to prevent the AVRs firmware from
- * being dumped by unauthorized persons. |
+ * being dumped by unauthorized persons. When false, all memory operations are allowed at any time.
*
*
*/