Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
bb4880a9
Commit
bb4880a9
authored
Mar 27, 2009
by
Dean Camera
Browse files
Fixed incorrect ADC driver init register manipulation (thanks to Tobias).
parent
ca641bba
Changes
2
Hide whitespace changes
Inline
Side-by-side
LUFA/ChangeLog.txt
View file @
bb4880a9
...
...
@@ -44,6 +44,7 @@
* - Fixed CDC demo not sending an empty packet after each transfer to prevent the host from buffering incomming data
* - Fixed documentation typoes and preprocessor checks relating to misspellings of the USE_RAM_DESCRIPTORS token (thanks to Ian Gregg)
* - Fixed USBTask.h not conditionally including HostChapter9.h only when CAN_BE_DEVICE is defined (thanks to Ian Gregg)
* - Fixed incorrect ADC driver init register manipulation (thanks to Tobias)
*
* \section Sec_ChangeLog090209 Version 090209
*
...
...
LUFA/Drivers/AT90USBXXX/AT90USBXXX67/ADC.h
View file @
bb4880a9
...
...
@@ -137,7 +137,7 @@
*/
static
inline
void
ADC_SetupChannel
(
const
uint8_t
Channel
)
{
DDR
D
&=
~
(
1
<<
Channel
);
DDR
F
&=
~
(
1
<<
Channel
);
DIDR0
|=
(
1
<<
Channel
);
}
...
...
Write
Preview
Markdown
is supported
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