Fix typos in the HID class bootloader makefile.
authorDean Camera <dean@fourwalledcubicle.com>
Fri, 11 Feb 2011 20:00:48 +0000 (20:00 +0000)
committerDean Camera <dean@fourwalledcubicle.com>
Fri, 11 Feb 2011 20:00:48 +0000 (20:00 +0000)
Bootloaders/HID/HostLoaderApp/Makefile
LUFA/ManPages/FutureChanges.txt
Projects/LEDNotifier/LEDNotifier.c

index ab450d2..7b2833e 100644 (file)
@@ -14,7 +14,7 @@ else ifeq ($(OS), WINDOWS)
 CC = i586-mingw32msvc-gcc
 CFLAGS ?= -O2 -Wall
 hid_bootloader_cli.exe: hid_bootloader_cli.c
 CC = i586-mingw32msvc-gcc
 CFLAGS ?= -O2 -Wall
 hid_bootloader_cli.exe: hid_bootloader_cli.c
-       $(CC) $(CFLAGS) -s -DUSE_WIN32 -o thid_bootloader_cli.exe hid_bootloader_cli.c -lhid -lsetupapi
+       $(CC) $(CFLAGS) -s -DUSE_WIN32 -o hid_bootloader_cli.exe hid_bootloader_cli.c -lhid -lsetupapi
 
 
 else ifeq ($(OS), MACOSX)
 
 
 else ifeq ($(OS), MACOSX)
@@ -29,11 +29,11 @@ else ifeq ($(OS), BSD)  # works on NetBSD and OpenBSD
 CC ?= gcct
 CFLAGS ?= -O2 -Wall
 hid_bootloader_cli: hid_bootloader_cli.c
 CC ?= gcct
 CFLAGS ?= -O2 -Wall
 hid_bootloader_cli: hid_bootloader_cli.c
-       $(CC) $(CFLAGS) -s -DUSE_UHID -o teensy_loader_cli hid_bootloader_cli.c
+       $(CC) $(CFLAGS) -s -DUSE_UHID -o hid_bootloader_cli hid_bootloader_cli.c
 
 
 endif
 
 
 clean:
 
 
 endif
 
 
 clean:
-       rm -f thid_bootloader_cli hid_bootloader_cli.exe
+       rm -f hid_bootloader_cli hid_bootloader_cli.exe
index 7c03b90..8212e02 100644 (file)
@@ -19,6 +19,7 @@
   *      -# Re-add interrupt Pipe/Endpoint support
   *      -# Investigate dynamically created device descriptors
   *      -# Re-add in software PDI/TPI support into the AVRISP-MKII project
   *      -# Re-add interrupt Pipe/Endpoint support
   *      -# Investigate dynamically created device descriptors
   *      -# Re-add in software PDI/TPI support into the AVRISP-MKII project
+  *      -# Add makefile includes to reduce boilerplate in user makefiles
   *  - Documentation/Support
   *      -# Add detailed overviews of how each demo works
   *      -# Add board overviews
   *  - Documentation/Support
   *      -# Add detailed overviews of how each demo works
   *      -# Add board overviews
index baf3c16..703b9f2 100644 (file)
@@ -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;
 
 /** 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)
 
 /** 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);
 }
 
        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.
  */
 /** Main program entry point. This routine contains the overall program flow, including initial
  *  setup of all components and the main program loop.
  */