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
fab16786
Commit
fab16786
authored
Jun 06, 2012
by
Dean Camera
Browse files
Fix typo in the UC3 host pipe driver. Improve library TAR export exclusion filetype filter.
parent
000c4c6c
Changes
2
Hide whitespace changes
Inline
Side-by-side
LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h
View file @
fab16786
...
...
@@ -204,7 +204,7 @@
static
inline
uint8_t
Pipe_GetPipeDirection
(
void
)
ATTR_WARN_UNUSED_RESULT
ATTR_ALWAYS_INLINE
;
static
inline
uint8_t
Pipe_GetPipeDirection
(
void
)
{
return
(((
&
AVR32_USBB
.
UPCFG0
)[
USB_
Endpoint
_Selected
Endpoint
].
ptoken
==
PIPE_TOKEN_OUT
)
?
PIPE_DIR_OUT
:
PIPE_DIR_IN
);
return
(((
&
AVR32_USBB
.
UPCFG0
)[
USB_
Pipe
_Selected
Pipe
].
ptoken
==
PIPE_TOKEN_OUT
)
?
PIPE_DIR_OUT
:
PIPE_DIR_IN
);
}
/** Returns the pipe address of the currently selected pipe. This is typically used to save the
...
...
LUFA/makefile
View file @
fab16786
...
...
@@ -10,7 +10,7 @@
# ---------------------------------------
LUFA_VERSION_NUM
:=
$(
shell
grep
LUFA_VERSION_STRING Version.h |
cut
-d
'"'
-f2
)
EXCLUDE_FROM_EXPORT
:=
Documentation DoxygenPages CodeTemplates Build
*
.conf
*
.tar
*
.o
*
.lss
*
.lst
*
.hex
*
.elf
*
.
bin
EXCLUDE_FROM_EXPORT
:=
Documentation DoxygenPages CodeTemplates Build
*
.conf
*
.tar
*
.o
*
.lss
*
.lst
*
.hex
*
.elf
*
.
hex
*
.eep
*
.map
*
.bin
*
.d
*
.o.d
DOXYGEN_OVERRIDE_PARAMS
=
PROJECT_NUMBER
=
$(LUFA_VERSION_NUM)
...
...
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