Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lufa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Erik Strand
lufa
Commits
3d232953
Commit
3d232953
authored
14 years ago
by
Dean Camera
Browse files
Options
Downloads
Patches
Plain Diff
Fix typos in the HID class bootloader makefile.
parent
782614db
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
Bootloaders/HID/HostLoaderApp/Makefile
+3
-3
3 additions, 3 deletions
Bootloaders/HID/HostLoaderApp/Makefile
LUFA/ManPages/FutureChanges.txt
+1
-0
1 addition, 0 deletions
LUFA/ManPages/FutureChanges.txt
Projects/LEDNotifier/LEDNotifier.c
+5
-5
5 additions, 5 deletions
Projects/LEDNotifier/LEDNotifier.c
with
9 additions
and
8 deletions
Bootloaders/HID/HostLoaderApp/Makefile
+
3
−
3
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
This diff is collapsed.
Click to expand it.
LUFA/ManPages/FutureChanges.txt
+
1
−
0
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
...
...
This diff is collapsed.
Click to expand it.
Projects/LEDNotifier/LEDNotifier.c
+
5
−
5
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.
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment