aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Board
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-06-09 20:33:56 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-06-09 20:33:56 +0000
commit3808f5c36d0ee183e9825e645cc984f1c6047ef5 (patch)
treea7830d3c19aeb6a2461d701245458217e8829767 /LUFA/Drivers/Board
parent544027da185fbfb51461460c607f956ccee9e54b (diff)
downloadlufa-3808f5c36d0ee183e9825e645cc984f1c6047ef5.tar.gz
lufa-3808f5c36d0ee183e9825e645cc984f1c6047ef5.tar.bz2
lufa-3808f5c36d0ee183e9825e645cc984f1c6047ef5.zip
Spell check source code, fix mistakes.
Diffstat (limited to 'LUFA/Drivers/Board')
-rw-r--r--LUFA/Drivers/Board/Buttons.h2
-rw-r--r--LUFA/Drivers/Board/Joystick.h2
-rw-r--r--LUFA/Drivers/Board/LEDs.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/LUFA/Drivers/Board/Buttons.h b/LUFA/Drivers/Board/Buttons.h
index 1b70a6bd5..73ccb4194 100644
--- a/LUFA/Drivers/Board/Buttons.h
+++ b/LUFA/Drivers/Board/Buttons.h
@@ -160,7 +160,7 @@
*/
static inline void Buttons_Init(void);
- /** Disables the buttons driver, releasing the I/O pins back to their default high-impedence input mode. */
+ /** Disables the buttons driver, releasing the I/O pins back to their default high-impedance input mode. */
static inline void Buttons_Disable(void);
/** Returns a mask indicating which board buttons are currently pressed.
diff --git a/LUFA/Drivers/Board/Joystick.h b/LUFA/Drivers/Board/Joystick.h
index 63d28e837..2f90a9ca3 100644
--- a/LUFA/Drivers/Board/Joystick.h
+++ b/LUFA/Drivers/Board/Joystick.h
@@ -126,7 +126,7 @@
*/
static inline void Joystick_Init(void);
- /** Disables the joystick driver, releasing the I/O pins back to their default high-impedence input mode. */
+ /** Disables the joystick driver, releasing the I/O pins back to their default high-impedance input mode. */
static inline void Joystick_Disable(void);
/** Returns the current status of the joystick, as a mask indicating the direction the joystick is
diff --git a/LUFA/Drivers/Board/LEDs.h b/LUFA/Drivers/Board/LEDs.h
index 97cb81a50..21f89aa58 100644
--- a/LUFA/Drivers/Board/LEDs.h
+++ b/LUFA/Drivers/Board/LEDs.h
@@ -63,7 +63,7 @@
*
* \note To make code as compatible as possible, it is assumed that all boards carry a minimum of four LEDs. If
* a board contains less than four LEDs, the remaining LED masks are defined to 0 so as to have no effect.
- * If other behaviour is desired, either alias the remaining LED masks to existing LED masks via the -D
+ * If other behavior is desired, either alias the remaining LED masks to existing LED masks via the -D
* switch in the project makefile, or alias them to nothing in the makefile to cause compilation errors when
* a non-existing LED is referenced in application code. Note that this means that it is possible to make
* compatible code for a board with no LEDs by making a board LED driver (see \ref Page_WritingBoardDrivers)
@@ -221,7 +221,7 @@
*/
static inline void LEDs_Init(void);
- /** Disables the board LED driver, releasing the I/O pins back to their default high-impedence input mode. */
+ /** Disables the board LED driver, releasing the I/O pins back to their default high-impedance input mode. */
static inline void LEDs_Disable(void);
/** Turns on the LEDs specified in the given LED mask.