diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-06-01 14:33:40 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-06-01 14:33:40 +0000 |
commit | f01a05415c03b0dd61297849ece2cfcce7f8d3e8 (patch) | |
tree | e46fd811bc29edaa3764a2d2a89e760621c8f794 /Projects | |
parent | 6d2a08f1b77208de1f71dd4035d21f13e3f90462 (diff) | |
download | lufa-f01a05415c03b0dd61297849ece2cfcce7f8d3e8.tar.gz lufa-f01a05415c03b0dd61297849ece2cfcce7f8d3e8.tar.bz2 lufa-f01a05415c03b0dd61297849ece2cfcce7f8d3e8.zip |
Spell check library source code files.
Diffstat (limited to 'Projects')
-rw-r--r-- | Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c | 2 | ||||
-rw-r--r-- | Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c | 4 | ||||
-rw-r--r-- | Projects/AVRISP-MKII/Lib/V2Protocol.c | 2 | ||||
-rw-r--r-- | Projects/MediaController/MediaController.c | 2 | ||||
-rw-r--r-- | Projects/Webserver/Lib/uIPManagement.c | 2 | ||||
-rw-r--r-- | Projects/XPLAINBridge/Lib/SoftUART.c | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c b/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c index ccd31f3d2..42e436cdf 100644 --- a/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c +++ b/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c @@ -230,7 +230,7 @@ void ISPProtocol_ProgramMemory(uint8_t V2Command) if (ProgrammingStatus != STATUS_CMD_OK) break; - /* Must reset the polling address afterwards, so it is not erronously used for the next byte */ + /* Must reset the polling address afterwards, so it is not erroneously used for the next byte */ PollAddress = 0; } diff --git a/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c b/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c index 373e19149..f08ee6a0e 100644 --- a/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c +++ b/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c @@ -140,7 +140,7 @@ ISR(TIMER1_COMPA_vect, ISR_BLOCK) PINB |= (1 << 1); } -/** Initialises the appropriate SPI driver (hardware or software, depending on the selected ISP speed) ready for +/** Initializes the appropriate SPI driver (hardware or software, depending on the selected ISP speed) ready for * communication with the attached target. */ void ISPTarget_EnableTargetISP(void) @@ -186,7 +186,7 @@ void ISPTarget_DisableTargetISP(void) } /** Configures the AVR to produce a .5MHz rescue clock out of the OCR1A pin of the AVR, so - * that it can be fed into the XTAL1 pin of an AVR whose fuses have been misconfigured for + * that it can be fed into the XTAL1 pin of an AVR whose fuses have been mis-configured for * an external clock rather than a crystal. When used, the ISP speed must be 125KHz for this * functionality to work correctly. */ diff --git a/Projects/AVRISP-MKII/Lib/V2Protocol.c b/Projects/AVRISP-MKII/Lib/V2Protocol.c index f763d6333..4c8f0585a 100644 --- a/Projects/AVRISP-MKII/Lib/V2Protocol.c +++ b/Projects/AVRISP-MKII/Lib/V2Protocol.c @@ -50,7 +50,7 @@ ISR(WDT_vect, ISR_BLOCK) wdt_disable(); } -/** Initialises the hardware and software associated with the V2 protocol command handling. */ +/** Initializes the hardware and software associated with the V2 protocol command handling. */ void V2Protocol_Init(void) { #if defined(ADC) diff --git a/Projects/MediaController/MediaController.c b/Projects/MediaController/MediaController.c index 0abb4541a..4fcbf911f 100644 --- a/Projects/MediaController/MediaController.c +++ b/Projects/MediaController/MediaController.c @@ -147,7 +147,7 @@ bool CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDIn uint8_t JoyStatus_LCL = Joystick_GetStatus();
uint8_t ButtonStatus_LCL = Buttons_GetStatus();
- /* Update the Media Control report with the user button pressess */
+ /* Update the Media Control report with the user button presses */
MediaReport->Mute = ((ButtonStatus_LCL & BUTTONS_BUTTON1) ? true : false);
MediaReport->PlayPause = ((JoyStatus_LCL & JOY_PRESS) ? true : false);
MediaReport->VolumeUp = ((JoyStatus_LCL & JOY_UP) ? true : false);
diff --git a/Projects/Webserver/Lib/uIPManagement.c b/Projects/Webserver/Lib/uIPManagement.c index 8bc27afb7..c0ffcd4a3 100644 --- a/Projects/Webserver/Lib/uIPManagement.c +++ b/Projects/Webserver/Lib/uIPManagement.c @@ -164,7 +164,7 @@ void uIPManagement_UDPCallback(void) /** Processes Incoming packets to the server from the connected RNDIS device, creating responses as needed. */ static void uIPManagement_ProcessIncomingPacket(void) { - /* Determine which USB mode the system is currently initialised in */ + /* Determine which USB mode the system is currently initialized in */ if (USB_CurrentMode == USB_MODE_Device) { /* If no packet received, exit processing routine */ diff --git a/Projects/XPLAINBridge/Lib/SoftUART.c b/Projects/XPLAINBridge/Lib/SoftUART.c index 370e806ac..9ee103d92 100644 --- a/Projects/XPLAINBridge/Lib/SoftUART.c +++ b/Projects/XPLAINBridge/Lib/SoftUART.c @@ -52,7 +52,7 @@ static uint8_t RX_BitsRemaining; static uint8_t RX_Data; -/** Initialises the software UART, ready for data transmission and reception into the global ring buffers. */ +/** Initializes the software UART, ready for data transmission and reception into the global ring buffers. */ void SoftUART_Init(void) { /* Set TX pin to output high, enable RX pull-up */ |