3 * This file contains special DoxyGen information for the generation of the main page and other special
4 * documentation pages. It is not a project source file.
7 /** \page Page_BuildSystem The LUFA Build System
9 * \section Sec_BuildSystemOverview Overview of the LUFA Build System
10 * The LUFA build system is an attempt at making a set of re-usable, modular build make files which
11 * can be referenced in a LUFA powered project, to minimise the amount of code required in an
12 * application makefile. The system is written in GNU Make, and each module is independant of
15 * For details on the prerequisites needed for Linux and Windows machines to be able to use the LUFA
16 * build system, see \ref Sec_Prerequisites.
18 * To use a LUFA build system module, simply add an include to your project makefile:
20 * include $(LUFA_PATH)/Build/lufa.core.in
23 * And the associated build module targets will be added to your project's build makefile automatically.
24 * To call a build target, run <tt>make {TARGET_NAME}</tt> from the command line, substituting in
25 * the appropriate target name.
27 * \see \ref Sec_AppConfigParams for a copy of the sample LUFA project makefile.
29 * Each build module may have one or more mandatory parameters (GNU Make variables) which <i>must</i>
30 * be supplied in the project makefile for the module to work, and one or more optional parameters which
31 * may be defined and which will assume a sensible default if not.
33 * \section SSec_BuildSystemModules Available Modules
35 * The following modules are included in this LUFA release:
37 * \li \subpage Page_BuildModule_ATPROGRAM - Device Programming
38 * \li \subpage Page_BuildModule_AVRDUDE - Device Programming
39 * \li \subpage Page_BuildModule_BUILD - Compiling/Assembling/Linking
40 * \li \subpage Page_BuildModule_CORE - Core Build System Functions
41 * \li \subpage Page_BuildModule_CPPCHECK - Static Code Analysis
42 * \li \subpage Page_BuildModule_DFU - Device Programming
43 * \li \subpage Page_BuildModule_DOXYGEN - Automated Source Code Documentation
44 * \li \subpage Page_BuildModule_HID - Device Programming
45 * \li \subpage Page_BuildModule_SOURCES - LUFA Module Source Code Variables
48 /** \page Page_BuildModule_BUILD The BUILD build module
50 * The BUILD LUFA build system module, providing targets for the compilation,
51 * assembling and linking of an application from source code into binary files
52 * suitable for programming into a target device.
54 * To use this module in your application makefile, add the following code:
56 * include $(LUFA_PATH)/Build/lufa.build.in
59 * \section SSec_BuildModule_BUILD_Requirements Requirements
60 * This module requires the the architecture appropriate binaries of the GCC compiler are available in your
61 * system's <b>PATH</b> variable. The GCC compiler and associated toolchain is distributed in Atmel AVR Studio
62 * 5.x and Atmel Studio 6.x installation directories, as well as in many third party distribution packages.
64 * \section SSec_BuildModule_BUILD_Targets Targets
68 * <td><tt>size</tt></td>
69 * <td>Display size of the compiled application FLASH and SRAM segments.</td>
72 * <td><tt>symbol-sizes</tt></td>
73 * <td>Display a size-sorted list of symbols from the compiled application, in decimal bytes.</td>
76 * <td><tt>check-source</tt></td>
77 * <td>Display a list of input SRC source files which cannot be found (if any).</td>
80 * <td><tt>lib</tt></td>
81 * <td>Build and archive all source files into a library A binary file.</td>
84 * <td><tt>all</tt></td>
85 * <td>Build and link the application into ELF debug and HEX binary files.</td>
88 * <td><tt>elf</tt></td>
89 * <td>Build and link the application into an ELF debug file.</td>
92 * <td><tt>hex</tt></td>
93 * <td>Build and link the application and produce HEX and EEP binary files.</td>
96 * <td><tt>lss</tt></td>
97 * <td>Build and link the application and produce a LSS source code/assembly code mixed listing file.</td>
100 * <td><tt>clean</tt></td>
101 * <td>Remove all intermediatary files and binary output files.</td>
104 * <td><tt>mostlyclean</tt></td>
105 * <td>Remove all intermediatary files but preserve any binary output files.</td>
109 * \section SSec_BuildModule_BUILD_MandatoryParams Mandatory Parameters
113 * <td><tt>TARGET</tt></td>
114 * <td>Name of the application output file prefix (e.g. <tt>TestApplication</tt>).</td>
117 * <td><tt>ARCH</tt></td>
118 * <td>Architecture of the target processor (see \ref Page_DeviceSupport).</td>
121 * <td><tt>MCU</tt></td>
122 * <td>Name of the Atmel processor model (e.g. <tt>at90usb1287</tt>).</td>
125 * <td><tt>SRC</tt></td>
126 * <td>List of relative or absolute paths to the application C (.c), C++ (.cpp) and Assembly (.S) source files.</td>
129 * <td><tt>F_USB</tt></td>
130 * <td>Speed in Hz of the input clock frequency to the target's USB controller.</td>
133 * <td><tt>LUFA_PATH</tt></td>
134 * <td>Path to the LUFA library core, either relative or absolute (e.g. <tt>../LUFA-000000/LUFA/</tt>).</td>
138 * \section SSec_BuildModule_BUILD_OptionalParams Optional Parameters
142 * <td><tt>BOARD</tt></td>
143 * <td>LUFA board hardware drivers to use (see \ref Page_DeviceSupport).</td>
146 * <td><tt>OPTIMIZATION</tt></td>
147 * <td>Optimization level to use when compiling source files (see GCC manual).</td>
150 * <td><tt>C_STANDARD</tt></td>
151 * <td>Version of the C standard to apply when compiling C++ source files (see GCC manual).</td>
154 * <td><tt>CPP_STANDARD</tt></td>
155 * <td>Version of the C++ standard to apply when compiling C++ source files (see GCC manual).</td>
158 * <td><tt>F_CPU</tt></td>
159 * <td>Speed of the processor CPU clock, in Hz.</td>
162 * <td><tt>C_FLAGS</tt></td>
163 * <td>Flags to pass to the C compiler only, after the automatically generated flags.</td>
166 * <td><tt>CPP_FLAGS</tt></td>
167 * <td>Flags to pass to the C++ compiler only, after the automatically generated flags.</td>
170 * <td><tt>ASM_FLAGS</tt></td>
171 * <td>Flags to pass to the assembler only, after the automatically generated flags.</td>
174 * <td><tt>CC_FLAGS</tt></td>
175 * <td>Common flags to pass to the compiler, assembler and linker, after the automatically generated flags.</td>
178 * <td><tt>LD_FLAGS</tt></td>
179 * <td>Flags to pass to the linker, after the automatically generated flags.</td>
182 * <td><tt>OBJDIR</tt></td>
183 * <td>Directory to place the generated object and dependency files. If set to "." the same folder as the source file will be used.
184 * \note When this option is enabled, all source filenames <b>must</b> be unique.</td>
187 * <td><tt>OBJECT_FILES</tt></td>
188 * <td>List of additional object files that should be linked into the resulting binary.</td>
192 * \section SSec_BuildModule_BUILD_ProvidedVariables Module Provided Variables
196 * <td><i>None</i></td>
200 * \section SSec_BuildModule_BUILD_ProvidedMacros Module Provided Macros
204 * <td><i>None</i></td>
209 /** \page Page_BuildModule_CORE The CORE build module
211 * The core LUFA build system module, providing common build system help and information targets.
213 * To use this module in your application makefile, add the following code:
215 * include $(LUFA_PATH)/Build/lufa.core.in
218 * \section SSec_BuildModule_CORE_Requirements Requirements
219 * This module has no requirements outside a standard *nix shell like environment; the <tt>sh</tt>
220 * shell, GNU <tt>make</tt> and *nix CoreUtils (<tt>echo</tt>, <tt>printf</tt>, etc.).
222 * \section SSec_BuildModule_CORE_Targets Targets
226 * <td><tt>help</tt></td>
227 * <td>Display build system help and configuration information.</td>
230 * <td><tt>list_targets</tt></td>
231 * <td>List all available build targets from the build system.</td>
234 * <td><tt>list_modules</tt></td>
235 * <td>List all available build modules from the build system.</td>
238 * <td><tt>list_mandatory</tt></td>
239 * <td>List all mandatory parameters required by the included modules.</td>
242 * <td><tt>list_optional</tt></td>
243 * <td>List all optional parameters required by the included modules.</td>
246 * <td><tt>list_provided</tt></td>
247 * <td>List all variables provided by the included modules.</td>
250 * <td><tt>list_macros</tt></td>
251 * <td>List all macros provided by the included modules.</td>
255 * \section SSec_BuildModule_CORE_MandatoryParams Mandatory Parameters
259 * <td><i>None</i></td>
263 * \section SSec_BuildModule_CORE_OptionalParams Optional Parameters
267 * <td><i>None</i></td>
271 * \section SSec_BuildModule_CORE_ProvidedVariables Module Provided Variables
275 * <td><i>None</i></td>
279 * \section SSec_BuildModule_CORE_ProvidedMacros Module Provided Macros
283 * <td><i>None</i></td>
288 /** \page Page_BuildModule_ATPROGRAM The ATPROGRAM build module
290 * The ATPROGRAM programming utility LUFA build system module, providing targets to reprogram an
291 * Atmel processor FLASH and EEPROM memories with a project's compiled binary output files.
293 * To use this module in your application makefile, add the following code:
295 * include $(LUFA_PATH)/Build/lufa.atprogram.in
298 * \section SSec_BuildModule_ATPROGRAM_Requirements Requirements
299 * This module requires the <tt>atprogram.exe</tt> utility to be available in your system's <b>PATH</b>
300 * variable. The <tt>atprogram.exe</tt> utility is distributed in Atmel AVR Studio 5.x and Atmel Studio 6.x
301 * inside the application install folder's "\avrdbg" subdirectory.
303 * \section SSec_BuildModule_ATPROGRAM_Targets Targets
307 * <td><tt>atprogram</tt></td>
308 * <td>Program the device FLASH memory with the application's executable data.</td>
311 * <td><tt>atprogram-ee</tt></td>
312 * <td>Program the device EEPROM memory with the application's EEPROM data.</td>
316 * \section SSec_BuildModule_ATPROGRAM_MandatoryParams Mandatory Parameters
320 * <td><tt>MCU</tt></td>
321 * <td>Name of the Atmel processor model (e.g. <tt>at90usb1287</tt>).</td>
324 * <td><tt>TARGET</tt></td>
325 * <td>Name of the application output file prefix (e.g. <tt>TestApplication</tt>).</td>
329 * \section SSec_BuildModule_ATPROGRAM_OptionalParams Optional Parameters
333 * <td><tt>ATPROGRAM_PROGRAMMER</tt></td>
334 * <td>Name of the Atmel programmer or debugger tool to communicate with (e.g. <tt>jtagice3</tt>).</td>
337 * <td><tt>ATPROGRAM_INTERFACE</tt></td>
338 * <td>Name of the programming interface to use when programming the target (e.g. <tt>spi</tt>).</td>
341 * <td><tt>ATPROGRAM_PORT</tt></td>
342 * <td>Name of the communication port to use when when programming with a serially connected tool (e.g. <tt>COM2</tt>).</td>
346 * \section SSec_BuildModule_ATPROGRAM_ProvidedVariables Module Provided Variables
350 * <td><i>None</i></td>
354 * \section SSec_BuildModule_ATPROGRAM_ProvidedMacros Module Provided Macros
358 * <td><i>None</i></td>
363 /** \page Page_BuildModule_AVRDUDE The AVRDUDE build module
365 * The AVRDUDE programming utility LUFA build system module, providing targets to reprogram an
366 * Atmel processor FLASH and EEPROM memories with a project's compiled binary output files.
368 * To use this module in your application makefile, add the following code:
370 * include $(LUFA_PATH)/Build/lufa.avrdude.in
373 * \section SSec_BuildModule_AVRDUDE_Requirements Requirements
374 * This module requires the <tt>avrdude</tt> utility to be available in your system's <b>PATH</b>
375 * variable. The <tt>avrdude</tt> utility is distributed in the old WinAVR project releases for
376 * Windows (<a>winavr.sourceforge.net</a>) or can be installed on *nix systems via the project's
377 * source code (<a>https://savannah.nongnu.org/projects/avrdude</a>) or through the package manager.
379 * \section SSec_BuildModule_AVRDUDE_Targets Targets
383 * <td><tt>avrdude</tt></td>
384 * <td>Program the device FLASH memory with the application's executable data.</td>
387 * <td><tt>avrdude</tt></td>
388 * <td>Program the device EEPROM memory with the application's EEPROM data.</td>
392 * \section SSec_BuildModule_AVRDUDE_MandatoryParams Mandatory Parameters
396 * <td><tt>MCU</tt></td>
397 * <td>Name of the Atmel processor model (e.g. <tt>at90usb1287</tt>).</td>
400 * <td><tt>TARGET</tt></td>
401 * <td>Name of the application output file prefix (e.g. <tt>TestApplication</tt>).</td>
405 * \section SSec_BuildModule_AVRDUDE_OptionalParams Optional Parameters
409 * <td><tt>AVRDUDE_PROGRAMMER</tt></td>
410 * <td>Name of the programmer or debugger tool to communicate with (e.g. <tt>jtagicemkii</tt>).</td>
413 * <td><tt>ATPROGRAM_PORT</tt></td>
414 * <td>Name of the communication port to use when when programming with the connected tool (e.g. <tt>COM2</tt>, <tt>/dev/ttyUSB0</tt> or <tt>usb</tt>).</td>
417 * <td><tt>ATPROGRAM_FLAGS</tt></td>
418 * <td>Additional flags to pass to avrdude when programming, applied after the automatically generated flags.</td>
422 * \section SSec_BuildModule_AVRDUDE_ProvidedVariables Module Provided Variables
426 * <td><i>None</i></td>
430 * \section SSec_BuildModule_AVRDUDE_ProvidedMacros Module Provided Macros
434 * <td><i>None</i></td>
439 /** \page Page_BuildModule_CPPCHECK The CPPCHECK build module
441 * The CPPCHECK programming utility LUFA build system module, providing targets to statically
442 * analyze C and C++ source code for errors and performance/style issues.
444 * To use this module in your application makefile, add the following code:
446 * include $(LUFA_PATH)/Build/lufa.cppcheck.in
449 * \section SSec_BuildModule_CPPCHECK_Requirements Requirements
450 * This module requires the <tt>cppcheck</tt> utility to be available in your system's <b>PATH</b>
451 * variable. The <tt>cppcheck</tt> utility is distributed through the project's home page
452 * (<a>http://cppcheck.sourceforge.net</a>) for Windows, and can be installed on *nix systems via
453 * the project's source code or through the package manager.
455 * \section SSec_BuildModule_CPPCHECK_Targets Targets
459 * <td><tt>cppcheck</tt></td>
460 * <td>Statically analyze the project source code for issues.</td>
463 * <td><tt>cppcheck-config</tt></td>
464 * <td>Check the <tt>cppcheck</tt> configuration - scan source code and warn about missing header files and other issues.</td>
468 * \section SSec_BuildModule_CPPCHECK_MandatoryParams Mandatory Parameters
472 * <td><tt>SRC</tt></td>
473 * <td>List of source files to statically analyze.</td>
477 * \section SSec_BuildModule_CPPCHECK_OptionalParams Optional Parameters
481 * <td><tt>CPPCHECK_INCLUDES</tt></td>
482 * <td>Path of extra directories to check when attemting to resolve C/C++ header file includes.</td>
485 * <td><tt>CPPCHECK_EXCLUDES</tt></td>
486 * <td>Paths or path fragments to exclude when analyzing.</td>
489 * <td><tt>CPPCHECK_MSG_TEMPLATE</tt></td>
490 * <td>Output message template to use when printing errors, warnings and information (see <tt>cppcheck</tt> documentation).</td>
493 * <td><tt>CPPCHECK_ENABLE</tt></td>
494 * <td>Analysis rule categories to enable (see <tt>cppcheck</tt> documentation).</td>
497 * <td><tt>CPPCHECK_SUPPRESS</tt></td>
498 * <td>Specific analysis rules to suppress (see <tt>cppcheck</tt> documentation).</td>
501 * <td><tt>CPPCHECK_FAIL_ON_WARNING</tt></td>
502 * <td>Set to <b>Y</b> to fail the analysis job with an error exit code if warnings are found, <b>N</b> to continue without failing.</td>
505 * <td><tt>CPPCHECK_QUIET</tt></td>
506 * <td>Set to <b>Y</b> to suppress all output except warnings and errors, <b>N</b> to show verbose output information.</td>
509 * <td><tt>CPPCHECK_FLAGS</tt></td>
510 * <td>Extra flags to pass to <tt>cppcheck</tt>, after the automatically generated flags.</td>
514 * \section SSec_BuildModule_CPPCHECK_ProvidedVariables Module Provided Variables
518 * <td><i>None</i></td>
522 * \section SSec_BuildModule_CPPCHECK_ProvidedMacros Module Provided Macros
526 * <td><i>None</i></td>
531 /** \page Page_BuildModule_DFU The DFU build module
533 * The DFU programming utility LUFA build system module, providing targets to reprogram an
534 * Atmel processor FLASH and EEPROM memories with a project's compiled binary output files.
535 * This module requires a DFU class bootloader to be running in the target, compatible with
536 * the DFU bootloader protocol as published by Atmel.
538 * To use this module in your application makefile, add the following code:
540 * include $(LUFA_PATH)/Build/lufa.dfu.in
543 * \section SSec_BuildModule_DFU_Requirements Requirements
544 * This module requires either the <tt>batchisp</tt> utility from Atmel's FLIP utility, or the open
545 * source <tt>dfu-programmer</tt> utility (<a>http://dfu-programmer.sourceforge.net/</a>) to be
546 * available in your system's <b>PATH</b> variable. On *nix systems the <tt>dfu-programmer</tt> utility
547 * can be installed via the project's source code or through the package manager.
549 * \section SSec_BuildModule_DFU_Targets Targets
553 * <td><tt>dfu</tt></td>
554 * <td>Program the device FLASH memory with the application's executable data using <tt>dfu-programmer</tt>.</td>
557 * <td><tt>dfu-ee</tt></td>
558 * <td>Program the device EEPROM memory with the application's EEPROM data using <tt>dfu-programmer</tt>.</td>
561 * <td><tt>flip</tt></td>
562 * <td>Program the device FLASH memory with the application's executable data using <tt>batchisp</tt>.</td>
565 * <td><tt>flip-ee</tt></td>
566 * <td>Program the device EEPROM memory with the application's EEPROM data using <tt>batchisp</tt>.</td>
570 * \section SSec_BuildModule_DFU_MandatoryParams Mandatory Parameters
574 * <td><tt>MCU</tt></td>
575 * <td>Name of the Atmel processor model (e.g. <tt>at90usb1287</tt>).</td>
578 * <td><tt>TARGET</tt></td>
579 * <td>Name of the application output file prefix (e.g. <tt>TestApplication</tt>).</td>
583 * \section SSec_BuildModule_DFU_OptionalParams Optional Parameters
587 * <td><i>None</i></td>
591 * \section SSec_BuildModule_DFU_ProvidedVariables Module Provided Variables
595 * <td><i>None</i></td>
599 * \section SSec_BuildModule_DFU_ProvidedMacros Module Provided Macros
603 * <td><i>None</i></td>
608 /** \page Page_BuildModule_DOXYGEN The DOXYGEN build module
610 * The DOXYGEN code documentation utility LUFA build system module, providing targets to generate
611 * project HTML and other format documentation from a set of source files that include special
614 * To use this module in your application makefile, add the following code:
616 * include $(LUFA_PATH)/Build/lufa.doxygen.in
619 * \section SSec_BuildModule_DOXYGEN_Requirements Requirements
620 * This module requires the <tt>doxygen</tt> utility from the Doxygen website
621 * (<a>http://www.stack.nl/~dimitri/doxygen/</a>) to be available in your system's <b>PATH</b>
622 * variable. On *nix systems the <tt>doxygen</tt> utility can be installed via the project's source
623 * code or through the package manager.
625 * \section SSec_BuildModule_DOXYGEN_Targets Targets
629 * <td><tt>doxygen</tt></td>
630 * <td>Generate project documentation.</td>
634 * \section SSec_BuildModule_DOXYGEN_MandatoryParams Mandatory Parameters
638 * <td><tt>LUFA_PATH</tt></td>
639 * <td>Path to the LUFA library core, either relative or absolute (e.g. <tt>../LUFA-000000/LUFA/</tt>).</td>
643 * \section SSec_BuildModule_DOXYGEN_OptionalParams Optional Parameters
647 * <td><tt>DOXYGEN_CONF</tt></td>
648 * <td>Name and path of the base Doxygen configuration file for the project.</td>
651 * <td><tt>DOXYGEN_FAIL_ON_WARNING</tt></td>
652 * <td>Set to <b>Y</b> to fail the generation with an error exit code if warnings are found other than unsupported configuration parameters, <b>N</b> to continue without failing.</td>
655 * <td><tt>DOXYGEN_OVERRIDE_PARAMS</tt></td>
656 * <td>Extra Doxygen configuration parameters to apply, overriding the corresponding config entry in the project's configuration file (e.g. <tt>QUIET=YES</tt>).</td>
660 * \section SSec_BuildModule_DOXYGEN_ProvidedVariables Module Provided Variables
664 * <td><i>None</i></td>
668 * \section SSec_BuildModule_DOXYGEN_ProvidedMacros Module Provided Macros
672 * <td><i>None</i></td>
677 /** \page Page_BuildModule_HID The HID build module
679 * The HID programming utility LUFA build system module, providing targets to reprogram an
680 * Atmel processor's FLASH memory with a project's compiled binary output file. This module
681 * requires a HID class bootloader to be running in the target, using a protocol compatible
682 * with the PJRC "HalfKay" protocol (<a>http://www.pjrc.com/teensy/halfkay_protocol.html</a>).
684 * To use this module in your application makefile, add the following code:
686 * include $(LUFA_PATH)/Build/lufa.hid.in
689 * \section SSec_BuildModule_HID_Requirements Requirements
690 * This module requires either the <tt>hid_bootloader_cli</tt> utility from the included LUFA HID
691 * class bootloader API subdirectory, or the <tt>teensy_loader_cli</tt> utility from PJRC
692 * (<a>http://www.pjrc.com/teensy/loader_cli.html</a>) to be available in your system's <b>PATH</b>
695 * \section SSec_BuildModule_HID_Targets Targets
699 * <td><tt>hid</tt></td>
700 * <td>Program the device FLASH memory with the application's executable data using <tt>hid_bootloader_cli</tt>.</td>
703 * <td><tt>hid-ee</tt></td>
704 * <td>Program the device EEPROM memory with the application's EEPROM data using <tt>hid_bootloader_cli</tt> and
705 * a temporary AVR application programmed into the target's FLASH.
706 * \note This will erase the currently loaded application in the target.</td>
709 * <td><tt>hid-teensy</tt></td>
710 * <td>Program the device FLASH memory with the application's executable data using <tt>teensy_loader_cli</tt>.</td>
713 * <td><tt>hid-teensy-ee</tt></td>
714 * <td>Program the device EEPROM memory with the application's EEPROM data using <tt>teensy_loader_cli</tt> and
715 * a temporary AVR application programmed into the target's FLASH.
716 * \note This will erase the currently loaded application in the target.</td>
720 * \section SSec_BuildModule_HID_MandatoryParams Mandatory Parameters
724 * <td><tt>MCU</tt></td>
725 * <td>Name of the Atmel processor model (e.g. <tt>at90usb1287</tt>).</td>
728 * <td><tt>TARGET</tt></td>
729 * <td>Name of the application output file prefix (e.g. <tt>TestApplication</tt>).</td>
733 * \section SSec_BuildModule_HID_OptionalParams Optional Parameters
737 * <td><i>None</i></td>
741 * \section SSec_BuildModule_HID_ProvidedVariables Module Provided Variables
745 * <td><i>None</i></td>
749 * \section SSec_BuildModule_HID_ProvidedMacros Module Provided Macros
753 * <td><i>None</i></td>
758 /** \page Page_BuildModule_SOURCES The SOURCES build module
760 * The SOURCES LUFA build system module, providing variables listing the various LUFA source files
761 * required to be build by a project for a given LUFA module. This module gives a way to reference
762 * LUFA source files symbollically, so that changes to the library structure do not break the library
765 * To use this module in your application makefile, add the following code:
767 * include $(LUFA_PATH)/Build/lufa.sources.in
770 * \section SSec_BuildModule_SOURCES_Requirements Requirements
773 * \section SSec_BuildModule_SOURCES_Targets Targets
777 * <td><i>None</i></td>
781 * \section SSec_BuildModule_SOURCES_MandatoryParams Mandatory Parameters
785 * <td><tt>LUFA_PATH</tt></td>
786 * <td>Path to the LUFA library core, either relative or absolute (e.g. <tt>../LUFA-000000/LUFA/</tt>).</td>
789 * <td><tt>ARCH</tt></td>
790 * <td>Architecture of the target processor (see \ref Page_DeviceSupport).</td>
794 * \section SSec_BuildModule_SOURCES_OptionalParams Optional Parameters
798 * <td><i>None</i></td>
802 * \section SSec_BuildModule_SOURCES_ProvidedVariables Module Provided Variables
806 * <td><tt>LUFA_SRC_USB</tt></td>
807 * <td>List of LUFA USB driver source files.</td>
810 * <td><tt>LUFA_SRC_USBCLASS</tt></td>
811 * <td>List of LUFA USB Class driver source files.</td>
814 * <td><tt>LUFA_SRC_TEMPERATURE</tt></td>
815 * <td>List of LUFA temperature sensor driver source files.</td>
818 * <td><tt>LUFA_SRC_SERIAL</tt></td>
819 * <td>List of LUFA Serial U(S)ART driver source files.</td>
822 * <td><tt>LUFA_SRC_TWI</tt></td>
823 * <td>List of LUFA TWI driver source files.</td>
826 * <td><tt>LUFA_SRC_PLATFORM</tt></td>
827 * <td>List of LUFA architecture specific platform management source files.</td>
831 * \section SSec_BuildModule_SOURCES_ProvidedMacros Module Provided Macros
835 * <td><i>None</i></td>