From c6c0ad258170d349b9dae8d666e9f5cf9fd02a5a Mon Sep 17 00:00:00 2001 From: Dean Date: Fri, 11 Feb 2011 20:00:48 +0000 Subject: Fix typos in the HID class bootloader makefile. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1662 d5102386-fcda-11dd-9fdb-3debd5008f28 --- Projects/LEDNotifier/LEDNotifier.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Projects/LEDNotifier/LEDNotifier.c') diff --git a/Projects/LEDNotifier/LEDNotifier.c b/Projects/LEDNotifier/LEDNotifier.c index baf3c168..703b9f23 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. */ -- cgit v1.2.3