aboutsummaryrefslogtreecommitdiff
path: root/Projects
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-08-07 00:27:11 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-08-07 00:27:11 +0000
commit7ce658695ebf30c779d652b345b58ef5369cf1b6 (patch)
treeaffb4d9f9f10ed41df24df3d82cbc6be3959be39 /Projects
parent5535aee2416c3b3099c28063d4e8e42b1f1665fb (diff)
Make Benito ping-pong LED code more explicit, using masks of the TX and RX LED masks for ping-pong toggle rather than the ambiguous LED "Busy" mask.
Fix incorrect event name in MassStorageHost.c. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@727 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Projects')
-rw-r--r--Projects/Benito/Benito.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/Benito/Benito.c b/Projects/Benito/Benito.c
index 100c897f..afe29b4a 100644
--- a/Projects/Benito/Benito.c
+++ b/Projects/Benito/Benito.c
@@ -102,7 +102,7 @@ int main(void)
/* Check if the LEDs should be ping-ponging (during enumeration) */
if (PingPongMSRemaining && !(--PingPongMSRemaining))
{
- LEDs_ToggleLEDs(LEDMASK_BUSY);
+ LEDs_ToggleLEDs(LEDMASK_TX | LEDMASK_RX);
PingPongMSRemaining = PING_PONG_LED_PULSE_MS;
}