Skip to content
GitLab
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
d29a408f
Commit
d29a408f
authored
Jun 25, 2010
by
Dean Camera
Browse files
Add default "all" makefile targets to the demo tree makefiles.
parent
016a4c06
Changes
6
Hide whitespace changes
Inline
Side-by-side
Demos/Device/makefile
View file @
d29a408f
...
...
@@ -13,6 +13,8 @@
# custom LUFA library build options are reflected in the compiled
# code.
all
:
%
:
$(MAKE)
-C
ClassDriver
$@
$(MAKE)
-C
LowLevel
$@
Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c
View file @
d29a408f
...
...
@@ -144,4 +144,4 @@ void CALLBACK_HID_Device_ProcessHIDReport(USB_ClassInfo_HID_Device_t* const HIDI
const
uint8_t
ReportType
,
const
void
*
ReportData
,
const
uint16_t
ReportSize
)
{
// Unused (but mandatory for the HID class driver) in this demo, since there are no Host->Device reports
}
\ No newline at end of file
}
Demos/DualRole/makefile
View file @
d29a408f
...
...
@@ -13,5 +13,7 @@
# custom LUFA library build options are reflected in the compiled
# code.
all
:
%
:
$(MAKE)
-C
ClassDriver/
$@
Demos/Host/makefile
View file @
d29a408f
...
...
@@ -13,6 +13,8 @@
# custom LUFA library build options are reflected in the compiled
# code.
all
:
%
:
$(MAKE)
-C
ClassDriver
$@
$(MAKE)
-C
LowLevel
$@
Demos/makefile
View file @
d29a408f
...
...
@@ -13,6 +13,8 @@
# custom LUFA library build options are reflected in the compiled
# code.
all
:
%
:
$(MAKE)
-C
Device
$@
$(MAKE)
-C
Host
$@
...
...
Projects/AVRISP-MKII/makefile
View file @
d29a408f
...
...
@@ -194,9 +194,9 @@ CDEFS += -DAUX_LINE_PORT=PORTB
CDEFS
+=
-DAUX_LINE_PIN
=
PINB
CDEFS
+=
-DAUX_LINE_DDR
=
DDRB
CDEFS
+=
-DAUX_LINE_MASK
=
"(1 << 4)"
CDEFS
+=
-DVTARGET_ADC_CHANNEL
=
2
CDEFS
+=
-DENABLE_ISP_PROTOCOL
CDEFS
+=
-DENABLE_XPROG_PROTOCOL
CDEFS
+=
-DVTARGET_ADC_CHANNEL
=
2
CDEFS
+=
-DVTARGET_REF_VOLTS
=
5
CDEFS
+=
-DVTARGET_SCALE_FACTOR
=
1
#CDEFS += -DNO_VTARGET_DETECT
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment