forked from mfulz_github/qmk_firmware
Add new page to the documentation listing existing LUFA powered projects, fix up some inaccuracies in the documentation.
This commit is contained in:
parent
ab3de47420
commit
2acae9b0a3
File diff suppressed because one or more lines are too long
@ -28,7 +28,7 @@
|
||||
* - Added ATTR_ALWAYS_INLINE attribute to several key inlined library components, to ensure they are inlined in all circumstances
|
||||
* - Removed SetSystemClockPrescaler() macro, the clock_prescale_set() avr-libc macro has been corrected in recent avr-libc versions
|
||||
* - Fixed incorrect/missing control status stage transfers on demos, bootloaders and applications (thanks to Nate Lawson)
|
||||
* - The NO_CLEARSET_FEATURE_REQUEST compile time token has been renamed to NO_FEATURELESS_CONTROL_ONLY_DEVICE, and its function expanded
|
||||
* - The NO_CLEARSET_FEATURE_REQUEST compile time token has been renamed to FEATURELESS_CONTROL_ONLY_DEVICE, and its function expanded
|
||||
* to also remove parts of the Get Status chapter 9 request to further reduce code usage
|
||||
* - Makefile updated to include output giving the currently selected BOARD parameter value
|
||||
* - Board Dataflash driver now allows for dataflash ICs which use different shifts for setting the current page/byte address (thanks
|
||||
|
@ -109,6 +109,13 @@
|
||||
* files in this folder should not be included directly in user applications; the similarly named dispatch header files located in
|
||||
* the parent Board directory should be included instead.
|
||||
*
|
||||
* \dir Drivers/Board/ATAVRUSBRF01
|
||||
* \brief ATAVRUSBRF01 board hardware driver files.
|
||||
*
|
||||
* This folder contains drivers for hardware on the Atmel ATAVRUSBRF01 board, as used in several Atmel wireless demo kits. The header
|
||||
* files in this folder should not be included directly in user applications; the similarly named dispatch header files located in
|
||||
* the parent Board directory should be included instead.
|
||||
*
|
||||
* \dir DriverStubs
|
||||
* \brief Driver stub header files for custom boards, to allow the LUFA board drivers to operate.
|
||||
*
|
||||
|
@ -34,7 +34,8 @@
|
||||
*
|
||||
* - <b>MCU</b>, the target AVR processor.
|
||||
* - <b>BOARD</b>, the target board hardware
|
||||
* - <b>F_CPU</b>, the target AVR master clock frequency
|
||||
* - <b>F_CLOCK</b>, the target raw master clock frequency, before any prescaling is performed
|
||||
* - <b>F_CPU</b>, the target AVR CPU master clock frequency, after any prescaling
|
||||
* - <b>CDEFS</b>, the C preprocessor defines which configure the source code
|
||||
*
|
||||
* These values should be changed to reflect the build hardware.
|
||||
|
31
LUFA/LUFAPoweredProjects.txt
Normal file
31
LUFA/LUFAPoweredProjects.txt
Normal file
@ -0,0 +1,31 @@
|
||||
/** \file
|
||||
*
|
||||
* This file contains special DoxyGen information for the generation of the main page and other special
|
||||
* documentation pages. It is not a project source file.
|
||||
*/
|
||||
|
||||
/** \page LUFAPoweredProjects User Projects Powered by LUFA
|
||||
*
|
||||
* LUFA is currently in use all around the world, in many applications both commercial and non-commercial. Below is a
|
||||
* list of known public LUFA powered projects, which all use the LUFA library in some way. Feel free to visit each project's
|
||||
* home page for more information on each project.
|
||||
*
|
||||
* If you have a project that you would like to add to this list, please contact my via the details on the main page of this
|
||||
* documentation.
|
||||
*
|
||||
*
|
||||
* Benito #7, an AVR Programmer: http://www.dorkbotpdx.org/blog/feurig/benito_7_the_next_big_thing \n
|
||||
* Stripe Snoop, a Magnetic Card reader: http://www.ossguy.com/ss_usb/ \n
|
||||
* USB10 AKA "The Ferret", a USB162 development board: http://www.soc-machines.com \n
|
||||
* Bicycle POV: http://www.code.google.com/p/bicycleledpov/ \n
|
||||
* Digital Survey Instruments Magnetometer and Pointer: http://www.digitalsurveyinstruments.com/ \n
|
||||
* ARPS Locator: http://la3t.hamradio.no/lab//?id=tracker_en \n
|
||||
* Lightweight CC110x USB dongle for 868MHz Protocols: http://busware.de/tiki-index.php?page=CUL \n
|
||||
* AVROpendous, an open design/source AT90USB162 development board: http://avropendous.org/ \n
|
||||
* USB Interface for Playstation Portable Devices: http://forums.ps2dev.org/viewtopic.php?t=11001 \n
|
||||
* USB to Serial Bridge, via SPI and I2C: http://www.tty1.net/userial/ \n
|
||||
* Teensy, another tiny AT90USB162 development board: http://www.pjrc.com/teensy/index.html \n
|
||||
* SEGA Megadrive/Genesis Development Cartridge: http://www.spritesmind.net/_GenDev/forum/viewtopic.php?t=464 \n
|
||||
* CAMTRIG, a remote Camera Trigger device: http://code.astraw.com/projects/motmot/camtrig \n
|
||||
*
|
||||
*/
|
@ -31,9 +31,9 @@
|
||||
* - Custom board Dataflash drivers now require the implementation of Dataflash_SelectChipFromPage() and Dataflash_SendAddressBytes().
|
||||
*
|
||||
* <b>Device Mode</b>
|
||||
* - The NO_CLEARSET_FEATURE_REQUEST compile time token has been renamed to NO_FEATURELESS_CONTROL_ONLY_DEVICE, and its function expanded
|
||||
* - The NO_CLEARSET_FEATURE_REQUEST compile time token has been renamed to FEATURELESS_CONTROL_ONLY_DEVICE, and its function expanded
|
||||
* to also remove parts of the Get Status chapter 9 request to further reduce code usage. On all applications currently using the
|
||||
* NO_CLEARSET_FEATURE_REQUEST compile time token, it can be replaced with the NO_FEATURELESS_CONTROL_ONLY_DEVICE token with no further
|
||||
* NO_CLEARSET_FEATURE_REQUEST compile time token, it can be replaced with the FEATURELESS_CONTROL_ONLY_DEVICE token with no further
|
||||
* modifications required.
|
||||
*
|
||||
* \section Sec_Migration090209 Migrating from 081217 to 090209
|
||||
|
Loading…
x
Reference in New Issue
Block a user