aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Board/Buttons.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-01-29 14:33:36 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-01-29 14:33:36 +0000
commit5563da6a626a7301e5064a8df8b3a9b03421f8aa (patch)
tree0d5ffd18c3d061f7b91443417ce61ff07b02af3e /LUFA/Drivers/Board/Buttons.h
parenta147cee95f5373902242e7b34b92f7103fc05ae4 (diff)
downloadlufa-5563da6a626a7301e5064a8df8b3a9b03421f8aa.tar.gz
lufa-5563da6a626a7301e5064a8df8b3a9b03421f8aa.tar.bz2
lufa-5563da6a626a7301e5064a8df8b3a9b03421f8aa.zip
Added new LEDs_Disable(), Buttons_Disable() and Joystick_Disable() functions to the board hardware drivers.
Diffstat (limited to 'LUFA/Drivers/Board/Buttons.h')
-rw-r--r--LUFA/Drivers/Board/Buttons.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/LUFA/Drivers/Board/Buttons.h b/LUFA/Drivers/Board/Buttons.h
index f60dbb50b..3dd89a943 100644
--- a/LUFA/Drivers/Board/Buttons.h
+++ b/LUFA/Drivers/Board/Buttons.h
@@ -141,13 +141,16 @@
/* Pseudo-Functions for Doxygen: */
#if defined(__DOXYGEN__)
- /** Initializes the BUTTONS driver, so that the current button position can be read. This sets the appropriate
+ /** Initializes the buttons driver, so that the current button position can be read. This sets the appropriate
* I/O pins to an inputs with pull-ups enabled.
*
* This must be called before any Button driver functions are used.
*/
static inline void Buttons_Init(void);
+ /** Disables the buttons driver, releasing the I/O pins back to their default high-impedence input mode. */
+ static inline void Buttons_Disable(void);
+
/** Returns a mask indicating which board buttons are currently pressed.
*
* \return Mask indicating which board buttons are currently pressed.