diff options
Diffstat (limited to 'Projects')
-rw-r--r-- | Projects/AVRISP-MKII/AVRISP-MKII.txt | 8 | ||||
-rw-r--r-- | Projects/Benito/Benito.txt | 8 | ||||
-rw-r--r-- | Projects/Incomplete/StandaloneProgrammer/Lib/SCSI.h | 6 | ||||
-rw-r--r-- | Projects/MissileLauncher/MissileLauncher.txt | 2 | ||||
-rw-r--r-- | Projects/TempDataLogger/Lib/SCSI.h | 6 | ||||
-rw-r--r-- | Projects/TempDataLogger/TemperatureDataLogger.txt | 6 | ||||
-rw-r--r-- | Projects/USBtoSerial/USBtoSerial.txt | 8 | ||||
-rw-r--r-- | Projects/Webserver/Lib/SCSI.h | 6 | ||||
-rw-r--r-- | Projects/Webserver/Webserver.txt | 2 |
9 files changed, 26 insertions, 26 deletions
diff --git a/Projects/AVRISP-MKII/AVRISP-MKII.txt b/Projects/AVRISP-MKII/AVRISP-MKII.txt index c278c5cdf..750b4695f 100644 --- a/Projects/AVRISP-MKII/AVRISP-MKII.txt +++ b/Projects/AVRISP-MKII/AVRISP-MKII.txt @@ -10,10 +10,10 @@ * * The following list indicates what microcontrollers are compatible with this project. * - * - Series 7 USB AVRs - * - Series 6 USB AVRs - * - Series 4 USB AVRs - * - Series 2 USB AVRs (8KB versions with reduced features only) + * - Series 7 USB AVRs (AT90USBxxx7) + * - Series 6 USB AVRs (AT90USBxxx6) + * - Series 4 USB AVRs (ATMEGAxxU4) + * - Series 2 USB AVRs (AT90USBxx6, ATMEGAxxU2) - <i>8KB versions with reduced features only</i> * * \section SSec_Info USB Information: * diff --git a/Projects/Benito/Benito.txt b/Projects/Benito/Benito.txt index af37284ff..5f94e5872 100644 --- a/Projects/Benito/Benito.txt +++ b/Projects/Benito/Benito.txt @@ -10,10 +10,10 @@ * * The following list indicates what microcontrollers are compatible with this project. * - * - Series 7 USB AVRs - * - Series 6 USB AVRs - * - Series 4 USB AVRs - * - Series 2 USB AVRs + * - Series 7 USB AVRs (AT90USBxxx7) + * - Series 6 USB AVRs (AT90USBxxx6) + * - Series 4 USB AVRs (ATMEGAxxU4) + * - Series 2 USB AVRs (AT90USBxx6, ATMEGAxxU2) * * \section SSec_Info USB Information: * diff --git a/Projects/Incomplete/StandaloneProgrammer/Lib/SCSI.h b/Projects/Incomplete/StandaloneProgrammer/Lib/SCSI.h index 6932a8152..6a90cb962 100644 --- a/Projects/Incomplete/StandaloneProgrammer/Lib/SCSI.h +++ b/Projects/Incomplete/StandaloneProgrammer/Lib/SCSI.h @@ -52,9 +52,9 @@ * is for convenience, as it allows for all three sense values (returned upon request to the host to give information about * the last command failure) in a quick and easy manner. * - * \param[in] key New SCSI sense key to set the sense code to - * \param[in] acode New SCSI additional sense key to set the additional sense code to - * \param[in] aqual New SCSI additional sense key qualifier to set the additional sense qualifier code to + * \param[in] Key New SCSI sense key to set the sense code to + * \param[in] Acode New SCSI additional sense key to set the additional sense code to + * \param[in] Aqual New SCSI additional sense key qualifier to set the additional sense qualifier code to */ #define SCSI_SET_SENSE(Key, Acode, Aqual) MACROS{ SenseData.SenseKey = (Key); \ SenseData.AdditionalSenseCode = (Acode); \ diff --git a/Projects/MissileLauncher/MissileLauncher.txt b/Projects/MissileLauncher/MissileLauncher.txt index d93c21da1..3b344281a 100644 --- a/Projects/MissileLauncher/MissileLauncher.txt +++ b/Projects/MissileLauncher/MissileLauncher.txt @@ -10,7 +10,7 @@ * * The following list indicates what microcontrollers are compatible with this project. * - * - Series 7 USB AVRs + * - Series 7 USB AVRs (AT90USBxxx7) * * \section SSec_Info USB Information: * diff --git a/Projects/TempDataLogger/Lib/SCSI.h b/Projects/TempDataLogger/Lib/SCSI.h index 5c2112b2c..f3aea7222 100644 --- a/Projects/TempDataLogger/Lib/SCSI.h +++ b/Projects/TempDataLogger/Lib/SCSI.h @@ -52,9 +52,9 @@ * is for convenience, as it allows for all three sense values (returned upon request to the host to give information about * the last command failure) in a quick and easy manner. * - * \param[in] key New SCSI sense key to set the sense code to - * \param[in] acode New SCSI additional sense key to set the additional sense code to - * \param[in] aqual New SCSI additional sense key qualifier to set the additional sense qualifier code to + * \param[in] Key New SCSI sense key to set the sense code to + * \param[in] Acode New SCSI additional sense key to set the additional sense code to + * \param[in] Aqual New SCSI additional sense key qualifier to set the additional sense qualifier code to */ #define SCSI_SET_SENSE(Key, Acode, Aqual) MACROS{ SenseData.SenseKey = (Key); \ SenseData.AdditionalSenseCode = (Acode); \ diff --git a/Projects/TempDataLogger/TemperatureDataLogger.txt b/Projects/TempDataLogger/TemperatureDataLogger.txt index f15733850..1bf38dc7e 100644 --- a/Projects/TempDataLogger/TemperatureDataLogger.txt +++ b/Projects/TempDataLogger/TemperatureDataLogger.txt @@ -10,9 +10,9 @@ * * The following list indicates what microcontrollers are compatible with this demo. * - * - Series 7 USB AVRs - * - Series 6 USB AVRs - * - Series 4 USB AVRs (with >16KB of FLASH) + * - Series 7 USB AVRs (AT90USBxxx7) + * - Series 6 USB AVRs (AT90USBxxx6) + * - Series 4 USB AVRs (ATMEGAxxU4) - <i>those with >16KB of FLASH memory only</i> * * \section SSec_Info USB Information: * diff --git a/Projects/USBtoSerial/USBtoSerial.txt b/Projects/USBtoSerial/USBtoSerial.txt index 57802ecc8..cedb0f4f9 100644 --- a/Projects/USBtoSerial/USBtoSerial.txt +++ b/Projects/USBtoSerial/USBtoSerial.txt @@ -10,10 +10,10 @@ * * The following list indicates what microcontrollers are compatible with this project. * - * - Series 7 USB AVRs - * - Series 6 USB AVRs - * - Series 4 USB AVRs - * - Series 2 USB AVRs + * - Series 7 USB AVRs (AT90USBxxx7) + * - Series 6 USB AVRs (AT90USBxxx6) + * - Series 4 USB AVRs (ATMEGAxxU4) + * - Series 2 USB AVRs (AT90USBxx6, ATMEGAxxU2) * * \section SSec_Info USB Information: * diff --git a/Projects/Webserver/Lib/SCSI.h b/Projects/Webserver/Lib/SCSI.h index 64836c4a6..01afd373e 100644 --- a/Projects/Webserver/Lib/SCSI.h +++ b/Projects/Webserver/Lib/SCSI.h @@ -51,9 +51,9 @@ * is for convenience, as it allows for all three sense values (returned upon request to the host to give information about * the last command failure) in a quick and easy manner. * - * \param[in] key New SCSI sense key to set the sense code to - * \param[in] acode New SCSI additional sense key to set the additional sense code to - * \param[in] aqual New SCSI additional sense key qualifier to set the additional sense qualifier code to + * \param[in] Key New SCSI sense key to set the sense code to + * \param[in] Acode New SCSI additional sense key to set the additional sense code to + * \param[in] Aqual New SCSI additional sense key qualifier to set the additional sense qualifier code to */ #define SCSI_SET_SENSE(Key, Acode, Aqual) MACROS{ SenseData.SenseKey = (Key); \ SenseData.AdditionalSenseCode = (Acode); \ diff --git a/Projects/Webserver/Webserver.txt b/Projects/Webserver/Webserver.txt index c89810fbd..34b542e23 100644 --- a/Projects/Webserver/Webserver.txt +++ b/Projects/Webserver/Webserver.txt @@ -10,7 +10,7 @@ * * The following list indicates what microcontrollers are compatible with this project. * - * - Series 7 USB AVRs + * - Series 7 USB AVRs (AT90USBxxx7) * * \section SSec_Info USB Information: * |