projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Fixed incorrect XMEGA DFLL reference frequency (thanks to Martin Aakerberg)
[pub/USBasp.git]
/
LUFA
/
Platform
/
XMEGA
/
ClockManagement.h
diff --git
a/LUFA/Platform/XMEGA/ClockManagement.h
b/LUFA/Platform/XMEGA/ClockManagement.h
index
a39911a
..
9edaa72
100644
(file)
--- a/
LUFA/Platform/XMEGA/ClockManagement.h
+++ b/
LUFA/Platform/XMEGA/ClockManagement.h
@@
-286,7
+286,7
@@
const uint8_t Reference,
const uint32_t Frequency)
{
- uint16_t DFLLCompare = (Frequency / 10
00
);
+ uint16_t DFLLCompare = (Frequency / 10
24
);
switch (Source)
{