diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2014-05-21 19:55:27 +1000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2014-05-21 19:55:27 +1000 |
commit | c4e85215bff8363ae9a9a79581cc3e7427b597c7 (patch) | |
tree | 2127d64607c68a6b583670aae49221fafeb10045 /LUFA | |
parent | 77689358894e45e63e5d48aa519c04fcb773a9ac (diff) | |
download | lufa-c4e85215bff8363ae9a9a79581cc3e7427b597c7.tar.gz lufa-c4e85215bff8363ae9a9a79581cc3e7427b597c7.tar.bz2 lufa-c4e85215bff8363ae9a9a79581cc3e7427b597c7.zip |
Fixed incorrect XMEGA DFLL reference frequency (thanks to Martin Aakerberg)
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/DoxygenPages/ChangeLog.txt | 1 | ||||
-rw-r--r-- | LUFA/DoxygenPages/LUFAPoweredProjects.txt | 3 | ||||
-rw-r--r-- | LUFA/Platform/XMEGA/ClockManagement.h | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/LUFA/DoxygenPages/ChangeLog.txt b/LUFA/DoxygenPages/ChangeLog.txt index b5f70add7..c1dcef955 100644 --- a/LUFA/DoxygenPages/ChangeLog.txt +++ b/LUFA/DoxygenPages/ChangeLog.txt @@ -12,6 +12,7 @@ * - Fixed device class driver pipe configuration routines returning success with a partially constructed instance * when a pipe configuration failed (thanks to Helge Suess) * - Fixed incorrect LED driver definitions for the Arduino Leonardo board (thanks to Zoltán Szőke) + * - Fixed incorrect XMEGA DFLL reference frequency (thanks to Martin Aakerberg) * * \section Sec_ChangeLog140302 Version 140302 * <b>New:</b> diff --git a/LUFA/DoxygenPages/LUFAPoweredProjects.txt b/LUFA/DoxygenPages/LUFAPoweredProjects.txt index aac397afb..3c463ea9e 100644 --- a/LUFA/DoxygenPages/LUFAPoweredProjects.txt +++ b/LUFA/DoxygenPages/LUFAPoweredProjects.txt @@ -44,7 +44,7 @@ * \li AM Radio transmitter: http://amcinnes.info/2012/uc_am_xmit/ * \li Arcade Controller: http://fletchtronics.net/arcade-controller-made-petunia * \li Arcade Joystick: http://jamie.lentin.co.uk/embedded/arcade-joystick/ - * \li AttoBasic AVR BASIC interpreter: http://www.cappels.org/dproj/AttoBasic2_1/AttoBasic_2.1_with_USB_and_Arduino_support.html + * \li AttoBasic AVR BASIC interpreter: http://cappels.org/dproj/AttoBasic_Home/AttoBasic_Home.html * \li AVR USB Modem, a 3G Wireless Modem host: http://code.google.com/p/avrusbmodem/ * \li Bicycle POV: http://www.code.google.com/p/bicycleledpov/ * \li Bluetooth Explorerbot: http://code.google.com/p/bluetooth-explorerbot/ @@ -60,6 +60,7 @@ * \li Dashkey, a custom PC keyboard controller: http://geekhack.org/showwiki.php?title=Island:19096 * \li DIY PS3 controller emulator: https://code.google.com/p/diyps3controller/ * \li EMuSer, a USB-RS422 adapter for E-Mu samplers: http://www.emxp.net/EMuSer.htm + * \li EQ Track, a telescope mount controller: http://sourceforge.net/projects/eqtrack/ * \li Estick JTAG, an ARM JTAG debugger: http://code.google.com/p/estick-jtag/ * \li "Fingerlicking Wingdinger" (WARNING: Bad language if no Javascript), a MIDI controller: http://noisybox.net/electronics/wingdinger/ * \li Flyatar, a real-time fly tracking system: https://github.com/peterpolidoro/Flyatar diff --git a/LUFA/Platform/XMEGA/ClockManagement.h b/LUFA/Platform/XMEGA/ClockManagement.h index a39911a0e..9edaa7223 100644 --- 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 / 1000); + uint16_t DFLLCompare = (Frequency / 1024); switch (Source) { |