aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/LEDNotifier
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-02-11 20:00:48 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-02-11 20:00:48 +0000
commit3d232953d90c997e2a7450f9b8aa4766d013f3b3 (patch)
tree3de61e2f21cb62eb7ab540f79fc1376e0f082b68 /Projects/LEDNotifier
parent782614dbb55addcae8c9d4d9e1ce3dec81287282 (diff)
downloadlufa-3d232953d90c997e2a7450f9b8aa4766d013f3b3.tar.gz
lufa-3d232953d90c997e2a7450f9b8aa4766d013f3b3.tar.bz2
lufa-3d232953d90c997e2a7450f9b8aa4766d013f3b3.zip
Fix typos in the HID class bootloader makefile.
Diffstat (limited to 'Projects/LEDNotifier')
-rw-r--r--Projects/LEDNotifier/LEDNotifier.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Projects/LEDNotifier/LEDNotifier.c b/Projects/LEDNotifier/LEDNotifier.c
index baf3c1680..703b9f230 100644
--- a/Projects/LEDNotifier/LEDNotifier.c
+++ b/Projects/LEDNotifier/LEDNotifier.c
@@ -72,6 +72,11 @@ static volatile uint8_t SoftPWM_Channel2_Duty;
/** Duty cycle for the third software PWM channel */
static volatile uint8_t SoftPWM_Channel3_Duty;
+/** Standard file stream for the CDC interface when set up, so that the virtual CDC COM port can be
+ * used like any regular character stream in the C APIs
+ */
+static FILE USBSerialStream;
+
/** Interrupt handler for managing the software PWM channels for the LEDs */
ISR(TIMER0_COMPA_vect, ISR_BLOCK)
@@ -93,11 +98,6 @@ ISR(TIMER0_COMPA_vect, ISR_BLOCK)
LEDs_SetAllLEDs(LEDMask);
}
-/** Standard file stream for the CDC interface when set up, so that the virtual CDC COM port can be
- * used like any regular character stream in the C APIs
- */
-static FILE USBSerialStream;
-
/** Main program entry point. This routine contains the overall program flow, including initial
* setup of all components and the main program loop.
*/