Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
3d232953
Commit
3d232953
authored
Feb 11, 2011
by
Dean Camera
Browse files
Fix typos in the HID class bootloader makefile.
parent
782614db
Changes
3
Hide whitespace changes
Inline
Side-by-side
Bootloaders/HID/HostLoaderApp/Makefile
View file @
3d232953
...
...
@@ -14,7 +14,7 @@ else ifeq ($(OS), WINDOWS)
CC
=
i586-mingw32msvc-gcc
CFLAGS
?=
-O2
-Wall
hid_bootloader_cli.exe
:
hid_bootloader_cli.c
$(CC)
$(CFLAGS)
-s
-DUSE_WIN32
-o
t
hid_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)
...
...
@@ -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)
$(CFLAGS)
-s
-DUSE_UHID
-o
teensy_
loader_cli hid_bootloader_cli.c
$(CC)
$(CFLAGS)
-s
-DUSE_UHID
-o
hid_boot
loader_cli hid_bootloader_cli.c
endif
clean
:
rm
-f
t
hid_bootloader_cli hid_bootloader_cli.exe
rm
-f
hid_bootloader_cli hid_bootloader_cli.exe
LUFA/ManPages/FutureChanges.txt
View file @
3d232953
...
...
@@ -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
* -# Add makefile includes to reduce boilerplate in user makefiles
* - Documentation/Support
* -# Add detailed overviews of how each demo works
* -# Add board overviews
...
...
Projects/LEDNotifier/LEDNotifier.c
View file @
3d232953
...
...
@@ -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.
*/
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment