diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-04-01 13:53:58 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-04-01 13:53:58 +0000 |
| commit | eb7cbee0404f418aca321c1cec9423a20894590f (patch) | |
| tree | a8fd03c986accab9fa79e43d835e047fb5b0e254 /Bootloaders/DFU/BootloaderDFU.h | |
| parent | dd079d12ee152fa6289b859a69fd526cf3512dca (diff) | |
All comments in the library, bootloaders, demos and projects have now been spell-checked and spelling mistakes/typos corrected.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@492 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Bootloaders/DFU/BootloaderDFU.h')
| -rw-r--r-- | Bootloaders/DFU/BootloaderDFU.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Bootloaders/DFU/BootloaderDFU.h b/Bootloaders/DFU/BootloaderDFU.h index 5a83403d..d0a82544 100644 --- a/Bootloaders/DFU/BootloaderDFU.h +++ b/Bootloaders/DFU/BootloaderDFU.h @@ -63,7 +63,7 @@ /** Minor bootloader version number. */
#define BOOTLOADER_VERSION_REV 0
- /** Complete bootloder version number expressed as a packed byte, constructed from the
+ /** Complete bootloader version number expressed as a packed byte, constructed from the
* two individual bootloader version macros.
*/
#define BOOTLOADER_VERSION ((BOOTLOADER_VERSION_MINOR << 4) | BOOTLOADER_VERSION_REV)
@@ -100,7 +100,7 @@ */
#define DFU_FILLER_BYTES_SIZE 26
- /** DFU class command request to detatch from the host. */
+ /** DFU class command request to detach from the host. */
#define DFU_DETATCH 0x00
/** DFU class command request to send data from the host to the bootloader. */
@@ -141,7 +141,7 @@ /** Type define for a non-returning function pointer to the loaded application. */
typedef void (*AppPtr_t)(void) ATTR_NO_RETURN;
- /** Type define for a strucuture containing a complete DFU command issued by the host. */
+ /** Type define for a structure containing a complete DFU command issued by the host. */
typedef struct
{
uint8_t Command; /**< Single byte command to perform, one of the COMMAND_* macro values */
|
