X-Git-Url: http://git.linex4red.de/pub/lufa.git/blobdiff_plain/cca24c8dc90313eba722873df816a7573003a0f1..64f17a679f0d99741fb8101f02dfb3ef084e525c:/Bootloaders/CDC/BootloaderCDC.txt
diff --git a/Bootloaders/CDC/BootloaderCDC.txt b/Bootloaders/CDC/BootloaderCDC.txt
index 177796747..11fefabc3 100644
--- a/Bootloaders/CDC/BootloaderCDC.txt
+++ b/Bootloaders/CDC/BootloaderCDC.txt
@@ -10,10 +10,10 @@
*
* The following list indicates what microcontrollers are compatible with this demo.
*
- * - Series 7 USB AVRs (AT90USBxxx7)
- * - Series 6 USB AVRs (AT90USBxxx6)
- * - Series 4 USB AVRs (ATMEGAxxU4)
- * - Series 2 USB AVRs (AT90USBxx2, ATMEGAxxU2)
+ * \li Series 7 USB AVRs (AT90USBxxx7)
+ * \li Series 6 USB AVRs (AT90USBxxx6)
+ * \li Series 4 USB AVRs (ATMEGAxxU4)
+ * \li Series 2 USB AVRs (AT90USBxx2, ATMEGAxxU2)
*
* \section Sec_Info USB Information:
*
@@ -37,7 +37,7 @@
*
USBIF CDC Class Standard |
*
*
- * | Usable Speeds: |
+ * Supported USB Speeds: |
* Full Speed Mode |
*
*
@@ -111,7 +111,7 @@
* #define BOOTLOADER_MAGIC_SIGNATURE 0xDCFB
*
* #define BOOTLOADER_CLASS_SIGNATURE_START (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 4))
- * #define BOOTLOADER_CDC_SIGNATURE 0xCDC1
+ * #define BOOTLOADER_CDC_SIGNATURE 0xDF20
*
* #define BOOTLOADER_ADDRESS_START (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 8))
* #define BOOTLOADER_ADDRESS_LENGTH 4
@@ -173,25 +173,25 @@
*
*
* | NO_BLOCK_SUPPORT |
- * Makefile LUFA_OPTS |
+ * AppConfig.h |
* Define to disable memory block read/write support in the bootloader, requiring all reads and writes to be made
* using the byte-level commands. |
*
*
* | NO_EEPROM_BYTE_SUPPORT |
- * Makefile LUFA_OPTS |
+ * AppConfig.h |
* Define to disable EEPROM memory byte read/write support in the bootloader, requiring all EEPROM reads and writes
* to be made using the block-level commands. |
*
*
* | NO_FLASH_BYTE_SUPPORT |
- * Makefile LUFA_OPTS |
+ * AppConfig.h |
* Define to disable FLASH memory byte read/write support in the bootloader, requiring all FLASH reads and writes
* to be made using the block-level commands. |
*
*
* | NO_LOCK_BYTE_WRITE_SUPPORT |
- * Makefile LUFA_OPTS |
+ * AppConfig.h |
* Define to disable lock byte write support in the bootloader, preventing the lock bits from being set programmatically. |
*
*