diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-08-18 14:54:37 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-08-18 14:54:37 +0000 |
commit | 1cb60c1214c82ac117a7ede9e29351e902ee7c35 (patch) | |
tree | df4d07eaaa9fb6eeff71e62039d1ac78e41ffff8 /LUFA | |
parent | 8d8e5c06b9c6c7410ec6a08c530dfaf6e4bf213f (diff) | |
download | lufa-1cb60c1214c82ac117a7ede9e29351e902ee7c35.tar.gz lufa-1cb60c1214c82ac117a7ede9e29351e902ee7c35.tar.bz2 lufa-1cb60c1214c82ac117a7ede9e29351e902ee7c35.zip |
Spell-check latest trunk source code.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h | 6 | ||||
-rw-r--r-- | LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c | 2 | ||||
-rw-r--r-- | LUFA/Platform/UC3/ClockManagement.h | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h b/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h index e3083aa50..f56c01b34 100644 --- a/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h +++ b/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h @@ -29,7 +29,7 @@ */ /** \file - * \brief Board specific LED driver header for the Arduino Leondardo board. + * \brief Board specific LED driver header for the Arduino Leonardo board. * \copydetails Group_LEDs_LEONDARDO * * \note This file should not be included directly. It is automatically included as needed by the LEDs driver @@ -38,9 +38,9 @@ /** \ingroup Group_LEDs * \defgroup Group_LEDs_LEONDARDO LEONDARDO - * \brief Board specific LED driver header for the Arduino Leondardo board. + * \brief Board specific LED driver header for the Arduino Leonardo board. * - * Board specific LED driver header for the Arduino Leondardo board (http://arduino.cc/en/Main/arduinoBoardLeonardo). + * Board specific LED driver header for the Arduino Leonardo board (http://arduino.cc/en/Main/arduinoBoardLeonardo). * * <table> * <tr><th>Name</th><th>Color</th><th>Info</th><th>Active Level</th><th>Port Pin</th></tr> diff --git a/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c b/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c index 09d4ab620..86df5c825 100644 --- a/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c +++ b/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c @@ -76,7 +76,7 @@ void USB_Init( USB.CAL1 = pgm_read_byte(offsetof(NVM_PROD_SIGNATURES_t, USBCAL1)); NVM.CMD = 0; - /* Ugly workaround to ensure an aligned table, since __BIGGEST_ALIGNMENT__ == 1 for the 8-bit AVR-GCC toochain */ + /* Ugly workaround to ensure an aligned table, since __BIGGEST_ALIGNMENT__ == 1 for the 8-bit AVR-GCC toolchain */ USB.EPPTR = ((intptr_t)&USB_EndpointTable[1] & ~(1 << 0)); USB.CTRLA = (USB_STFRNUM_bm | ((ENDPOINT_TOTAL_ENDPOINTS - 1) << USB_MAXEP_gp)); diff --git a/LUFA/Platform/UC3/ClockManagement.h b/LUFA/Platform/UC3/ClockManagement.h index b6b6ece27..7be71e19c 100644 --- a/LUFA/Platform/UC3/ClockManagement.h +++ b/LUFA/Platform/UC3/ClockManagement.h @@ -119,7 +119,7 @@ * * \param[in] Channel Index of the external oscillator to start. * \param[in] Type Type of clock attached to the given oscillator channel, a value from \ref UC3_Extern_OSC_ClockTypes_t. - * \param[in] Startup Statup time of the external oscillator, a value from \ref UC3_Extern_OSC_ClockStartup_t. + * \param[in] Startup Startup time of the external oscillator, a value from \ref UC3_Extern_OSC_ClockStartup_t. * * \return Boolean \c true if the external oscillator was successfully started, \c false if invalid parameters specified. */ @@ -270,7 +270,7 @@ * * \param[in] Channel Index of the generic clock to stop. * - * \return Boolean \c true if the generic clock was sucessfully stopped, \c false if invalid parameters specified. + * \return Boolean \c true if the generic clock was successfully stopped, \c false if invalid parameters specified. */ static inline bool AVR32CLK_StopGenericClock(const uint8_t Channel) ATTR_ALWAYS_INLINE; static inline bool AVR32CLK_StopGenericClock(const uint8_t Channel) @@ -291,7 +291,7 @@ * \param[in] Source Clock source for the CPU core, a value from \ref UC3_System_ClockSource_t. * \param[in] SourceFreq Frequency of the CPU core's clock source, in Hz. * - * \return Boolean \c true if the CPU core clock was sucessfully altered, \c false if invalid parameters specified. + * \return Boolean \c true if the CPU core clock was successfully altered, \c false if invalid parameters specified. */ static inline bool AVR32CLK_SetCPUClockSource(const uint8_t Source, const uint32_t SourceFreq) ATTR_ALWAYS_INLINE; |