diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-04-23 17:39:53 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-04-23 17:39:53 +0000 |
commit | c7bfcf2cbb5f87b0154e3a1e743bc7d0059cd1c9 (patch) | |
tree | 3b348ed33a75f192c8faffea0d5ae5dd6d783b5f | |
parent | cfa399a533e40b15a96a90e3e18390d4ae595306 (diff) | |
download | lufa-c7bfcf2cbb5f87b0154e3a1e743bc7d0059cd1c9.tar.gz lufa-c7bfcf2cbb5f87b0154e3a1e743bc7d0059cd1c9.tar.bz2 lufa-c7bfcf2cbb5f87b0154e3a1e743bc7d0059cd1c9.zip |
Fix documentation of the board LED driver (thanks to Karl Lunt).
-rw-r--r-- | LUFA/Drivers/Board/LEDs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/LUFA/Drivers/Board/LEDs.h b/LUFA/Drivers/Board/LEDs.h index 46589c28d..9b8ebffb6 100644 --- a/LUFA/Drivers/Board/LEDs.h +++ b/LUFA/Drivers/Board/LEDs.h @@ -80,11 +80,11 @@ * // Turn on each of the four LEDs in turn * LEDs_SetAllLEDs(LEDS_LED1); * Delay_MS(500); - * LEDs_SetAllLEDs(LEDS_LED1); + * LEDs_SetAllLEDs(LEDS_LED2); * Delay_MS(500); - * LEDs_SetAllLEDs(LEDS_LED1); + * LEDs_SetAllLEDs(LEDS_LED3); * Delay_MS(500); - * LEDs_SetAllLEDs(LEDS_LED1); + * LEDs_SetAllLEDs(LEDS_LED4); * Delay_MS(500); * * // Turn on all LEDs |