diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-09 13:15:28 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-09 13:15:28 +0000 |
commit | d6edfe35c8a9490407e4a5e34f8e5108c6a260a3 (patch) | |
tree | 50a869497c7eab5d031af4a74ab3192dac5c9d5b /Bootloaders | |
parent | c647c2763980b374da1c4314c752295d72228d4c (diff) | |
download | lufa-d6edfe35c8a9490407e4a5e34f8e5108c6a260a3.tar.gz lufa-d6edfe35c8a9490407e4a5e34f8e5108c6a260a3.tar.bz2 lufa-d6edfe35c8a9490407e4a5e34f8e5108c6a260a3.zip |
Spell check all source code variables, comments and strings.
Diffstat (limited to 'Bootloaders')
-rw-r--r-- | Bootloaders/CDC/BootloaderCDC.c | 2 | ||||
-rw-r--r-- | Bootloaders/CDC/BootloaderCDC.h | 2 | ||||
-rw-r--r-- | Bootloaders/DFU/Descriptors.c | 2 | ||||
-rw-r--r-- | Bootloaders/DFU/Descriptors.h | 2 | ||||
-rw-r--r-- | Bootloaders/Incomplete/MIDI/Descriptors.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/Bootloaders/CDC/BootloaderCDC.c b/Bootloaders/CDC/BootloaderCDC.c index 925385d8c..e681fbf5a 100644 --- a/Bootloaders/CDC/BootloaderCDC.c +++ b/Bootloaders/CDC/BootloaderCDC.c @@ -343,7 +343,7 @@ static void WriteNextResponseByte(const uint8_t Response) /* Select the IN endpoint so that the next data byte can be written */
Endpoint_SelectEndpoint(CDC_TX_EPNUM);
- /* If IN endpoint full, clear it and wait util ready for the next packet to the host */
+ /* If IN endpoint full, clear it and wait until ready for the next packet to the host */
if (!(Endpoint_IsReadWriteAllowed()))
{
Endpoint_ClearIN();
diff --git a/Bootloaders/CDC/BootloaderCDC.h b/Bootloaders/CDC/BootloaderCDC.h index 6a46a55da..d83b27f5e 100644 --- a/Bootloaders/CDC/BootloaderCDC.h +++ b/Bootloaders/CDC/BootloaderCDC.h @@ -104,7 +104,7 @@ };
/** Enum for the possible parity modes on a CDC-ACM virtual serial port */
- enum BootloaderCDC_CDC_LineCodeingParity_t
+ enum BootloaderCDC_CDC_LineCodingParity_t
{
Parity_None = 0, /**< No data parity checking */
Parity_Odd = 1, /**< Odd data parity checking */
diff --git a/Bootloaders/DFU/Descriptors.c b/Bootloaders/DFU/Descriptors.c index 1510c7e86..6fcdc4bce 100644 --- a/Bootloaders/DFU/Descriptors.c +++ b/Bootloaders/DFU/Descriptors.c @@ -108,7 +108,7 @@ USB_Descriptor_Configuration_t ConfigurationDescriptor = .Attributes = (ATTR_CAN_UPLOAD | ATTR_CAN_DOWNLOAD),
- .DetatchTimeout = 0x0000,
+ .DetachTimeout = 0x0000,
.TransferSize = 0x0c00,
.DFUSpecification = VERSION_BCD(01.01)
diff --git a/Bootloaders/DFU/Descriptors.h b/Bootloaders/DFU/Descriptors.h index 9eadf9d4e..61d44ec96 100644 --- a/Bootloaders/DFU/Descriptors.h +++ b/Bootloaders/DFU/Descriptors.h @@ -137,7 +137,7 @@ uint8_t Attributes; /**< DFU device attributes, a mask comprising of the
* ATTR_* macros listed in this source file
*/
- uint16_t DetatchTimeout; /**< Timeout in milliseconds between a USB_DETACH
+ uint16_t DetachTimeout; /**< Timeout in milliseconds between a USB_DETACH
* command being issued and the device detaching
* from the USB bus
*/
diff --git a/Bootloaders/Incomplete/MIDI/Descriptors.h b/Bootloaders/Incomplete/MIDI/Descriptors.h index 86da65725..93b6ac935 100644 --- a/Bootloaders/Incomplete/MIDI/Descriptors.h +++ b/Bootloaders/Incomplete/MIDI/Descriptors.h @@ -113,7 +113,7 @@ USB_Descriptor_Endpoint_t Endpoint; /**< Standard endpoint descriptor describing the audio endpoint */
uint8_t Refresh; /**< Always set to zero */
- uint8_t SyncEndpointNumber; /**< Endpoint address to send synchronisation information to, if needed (zero otherwise) */
+ uint8_t SyncEndpointNumber; /**< Endpoint address to send synchronization information to, if needed (zero otherwise) */
} USB_Audio_StreamEndpoint_Std_t;
/** Type define for an Audio class specific MIDI IN jack. This gives information to the host on a MIDI input, either
|