diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-09-11 03:57:43 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-09-11 03:57:43 +0000 |
commit | 41c1fb38434c006fa88b0071f81d65b2330940fc (patch) | |
tree | 95b31cd92844a12a36ddaa73ef7714add3db53c7 /LUFA/ManPages | |
parent | fdcb486e225f75ebc9fdc10685b1bb7570d481e6 (diff) | |
download | lufa-41c1fb38434c006fa88b0071f81d65b2330940fc.tar.gz lufa-41c1fb38434c006fa88b0071f81d65b2330940fc.tar.bz2 lufa-41c1fb38434c006fa88b0071f81d65b2330940fc.zip |
Added new project makefile template to the library and moved board driver stub files into in a new CodeTemplates directory.
Diffstat (limited to 'LUFA/ManPages')
-rw-r--r-- | LUFA/ManPages/ChangeLog.txt | 1 | ||||
-rw-r--r-- | LUFA/ManPages/DirectorySummaries.txt | 22 |
2 files changed, 22 insertions, 1 deletions
diff --git a/LUFA/ManPages/ChangeLog.txt b/LUFA/ManPages/ChangeLog.txt index e26f65865..3120ad357 100644 --- a/LUFA/ManPages/ChangeLog.txt +++ b/LUFA/ManPages/ChangeLog.txt @@ -18,6 +18,7 @@ * handling of USB Start of Frame events while in USB Host mode * - Added new PRNT_Host_BytesReceived() and PRNT_Host_ReceiveByte() functions to the Print Host Class driver * - Added class specific descriptor type defines with standard USB-IF element naming + * - Added new project makefile template to the library and moved board driver stub files into in a new "CodeTemplates" directory * * <b>Changed:</b> * - Removed complicated logic for the Endpoint_ConfigureEndpoint() function to use inlined or function called versions diff --git a/LUFA/ManPages/DirectorySummaries.txt b/LUFA/ManPages/DirectorySummaries.txt index 25f2db064..bb7460321 100644 --- a/LUFA/ManPages/DirectorySummaries.txt +++ b/LUFA/ManPages/DirectorySummaries.txt @@ -161,7 +161,27 @@ * 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 LUFA/DriverStubs + * \dir LUFA/Drivers/Board/OLIMEX162 + * \brief Olimex USB-STK-162 board hardware driver files. + * + * This folder contains drivers for hardware on the Olimex AVR-USB-162 boards (http://www.olimex.com/dev/avr-usb-162.html). + * 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 LUFA/Drivers/Board/USBFOO + * \brief USBFOO board hardware driver files. + * + * This folder contains drivers for hardware on the USBFOO boards (http://shop.kernelconcepts.de/product_info.php?products_id=102). + * 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 LUFA/CodeTemplates + * \brief Code templates for use in LUFA powered applications. + * + * This contains code templates for board drivers, sample LUFA project makefiles and other similar templates that can be copied into + * a LUFA powered application and modified to speed up development. + * + * \dir LUFA/CodeTemplates/DriverStubs * \brief Driver stub header files for custom boards, to allow the LUFA board drivers to operate. * * This contains stub files for the LUFA board drivers. If the LUFA board drivers are used with board hardware other than those |