aboutsummaryrefslogtreecommitdiff
path: root/LUFA/Drivers
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-02-02 15:31:45 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-02-02 15:31:45 +0000
commitda47d008e27208cb38ba155a52376fddcc72b09a (patch)
tree0492951fe5c60d9d5942fcedfd0006e2a5c72d4e /LUFA/Drivers
parentee56e212fec6a0487b491542094fd411ee511e7e (diff)
Fixed incorect BUTTONS_BUTTON1 definition for the Minimus board.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1650 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Drivers')
-rw-r--r--LUFA/Drivers/Board/MINIMUS/Buttons.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/Board/MINIMUS/Buttons.h b/LUFA/Drivers/Board/MINIMUS/Buttons.h
index d8b5387f..f421f73f 100644
--- a/LUFA/Drivers/Board/MINIMUS/Buttons.h
+++ b/LUFA/Drivers/Board/MINIMUS/Buttons.h
@@ -70,7 +70,7 @@
/* Public Interface - May be used in end-application: */
/* Macros: */
/** Button mask for the first button on the board. */
- #define BUTTONS_BUTTON1 (1 << 8)
+ #define BUTTONS_BUTTON1 (1 << 7)
/* Inline Functions: */
#if !defined(__DOXYGEN__)