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 * To use a LUFA build system module, simply add an include to your project makefile:
17 * include $(LUFA_PATH)/Build/lufa.core.in
20 * And the associated build module targets will be added to your project's build makefile automatically.
21 * To call a build target, run <tt>make {TARGET_NAME}</tt> from the command line, substituting in
22 * the appropriate target name.
24 * \see \ref Sec_AppConfigParams for a copy of the sample LUFA project makefile.
26 * Each build module may have one or more mandatory parameters (GNU Make variables) which <i>must</i>
27 * be supplied in the project makefile for the module to work, and one or more optional parameters which
28 * may be defined and which will assume a sensible default if not.
30 * \section SSec_BuildSystemModules Available Modules
32 * The following modules are included in this LUFA release:
34 * \li \subpage Page_BuildModule_ATPROGRAM - Device Programming
35 * \li \subpage Page_BuildModule_AVRDUDE - Device Programming
36 * \li \subpage Page_BuildModule_BUILD - Compiling/Assembling/Linking
37 * \li \subpage Page_BuildModule_CORE - Core Build System Functions
38 * \li \subpage Page_BuildModule_CPPCHECK - Static Code Analysis
39 * \li \subpage Page_BuildModule_DFU - Device Programming
40 * \li \subpage Page_BuildModule_DOXYGEN - Automated Source Code Documentation
41 * \li \subpage Page_BuildModule_HID - Device Programming
42 * \li \subpage Page_BuildModule_SOURCES - LUFA Module Source Code Variables
45 /** \page Page_BuildModule_BUILD The BUILD build module
47 * The BUILD LUFA build system module, providing targets for the compilation,
48 * assembling and linking of an application from source code into binary files
49 * suitable for programming into a target device.
51 * To use this module in your application makefile, add the following code:
53 * include $(LUFA_PATH)/Build/lufa.build.in
56 * \section SSec_BuildModule_BUILD_Requirements Requirements
57 * This module requires the the architecture appropriate binaries of the GCC compiler are available in your
58 * system's <b>PATH</b> variable. The GCC compiler and associated toolchain is distributed in Atmel AVR Studio
59 * 5.x and Atmel Studio 6.x installation directories, as well as in many third party distribution packages.
61 * \section SSec_BuildModule_BUILD_Targets Targets
65 * <td><tt>size</tt></td>
66 * <td>Display size of the compiled application FLASH and SRAM segments.</td>
69 * <td><tt>symbol-sizes</tt></td>
70 * <td>Display a size-sorted list of symbols from the compiled application, in decimal bytes.</td>
73 * <td><tt>lib</tt></td>
74 * <td>Build and archive all source files into a library A binary file.</td>
77 * <td><tt>all</tt></td>
78 * <td>Build and link the application into ELF debug and HEX binary files.</td>
81 * <td><tt>elf</tt></td>
82 * <td>Build and link the application into an ELF debug file.</td>
85 * <td><tt>hex</tt></td>
86 * <td>Build and link the application and produce HEX and EEP binary files.</td>
89 * <td><tt>lss</tt></td>
90 * <td>Build and link the application and produce a LSS source code/assembly code mixed listing file.</td>
93 * <td><tt>clean</tt></td>
94 * <td>Remove all intermediatary files and binary output files.</td>
98 * \section SSec_BuildModule_BUILD_MandatoryParams Mandatory Parameters
102 * <td><tt>TARGET</tt></td>
103 * <td>Name of the application output file prefix (e.g. <tt>TestApplication</tt>).</td>
106 * <td><tt>ARCH</tt></td>
107 * <td>Architecture of the target processor (see \ref Page_DeviceSupport).</td>
110 * <td><tt>MCU</tt></td>
111 * <td>Name of the Atmel processor model (e.g. <tt>at90usb1287</tt>).</td>
114 * <td><tt>SRC</tt></td>
115 * <td>List of relative or absolute paths to the application C (.c), C++ (.cpp) and Assembly (.S) source files.</td>
118 * <td><tt>F_USB</tt></td>
119 * <td>Speed in Hz of the input clock frequency to the target's USB controller.</td>
122 * <td><tt>LUFA_PATH</tt></td>
123 * <td>Path to the LUFA library core, either relative or absolute (e.g. <tt>../LUFA-000000/LUFA/</tt>).</td>
127 * \section SSec_BuildModule_BUILD_OptionalParams Optional Parameters
131 * <td><tt>BOARD</tt></td>
132 * <td>LUFA board hardware drivers to use (see \ref Page_DeviceSupport).</td>
135 * <td><tt>OPTIMIZATION</tt></td>
136 * <td>Optimization level to use when compiling source files (see GCC manual).</td>
139 * <td><tt>C_STANDARD</tt></td>
140 * <td>Version of the C standard to apply when compiling C++ source files (see GCC manual).</td>
143 * <td><tt>CPP_STANDARD</tt></td>
144 * <td>Version of the C++ standard to apply when compiling C++ source files (see GCC manual).</td>
147 * <td><tt>F_CPU</tt></td>
148 * <td>Speed of the processor CPU clock, in Hz.</td>
151 * <td><tt>C_FLAGS</tt></td>
152 * <td>Flags to pass to the C compiler only, after the automatically generated flags.</td>
155 * <td><tt>CPP_FLAGS</tt></td>
156 * <td>Flags to pass to the C++ compiler only, after the automatically generated flags.</td>
159 * <td><tt>ASM_FLAGS</tt></td>
160 * <td>Flags to pass to the assembler only, after the automatically generated flags.</td>
163 * <td><tt>CC_FLAGS</tt></td>
164 * <td>Common flags to pass to the compiler, assembler and linker, after the automatically generated flags.</td>
167 * <td><tt>LD_FLAGS</tt></td>
168 * <td>Flags to pass to the linker, after the automatically generated flags.</td>
171 * <td><tt>OBJDIR</tt></td>
172 * <td>Directory to place the generated object and dependency files. If set to "." the same folder as the source file will be used.
173 * \note When this option is enabled, all source filenames must be unique.</td>
177 * \section SSec_BuildModule_BUILD_ProvideVariables Module Provided Variables
181 * <td><i>None</i></td>
185 * \section SSec_BuildModule_BUILD_ProvidedMacros Module Provided Macros
189 * <td><i>None</i></td>
194 /** \page Page_BuildModule_CORE The CORE build module
196 * The core LUFA build system module, providing common build system help and information targets.
198 * To use this module in your application makefile, add the following code:
200 * include $(LUFA_PATH)/Build/lufa.core.in
203 * \section SSec_BuildModule_CORE_Requirements Requirements
204 * This module has no requirements outside a standard *nix shell like environment; the <tt>sh</tt>
205 * shell, GNU <tt>make</tt> and *nix CoreUtils (<tt>echo</tt>, <tt>printf</tt>, etc.).
207 * \section SSec_BuildModule_CORE_Targets Targets
211 * <td><tt>help</tt></td>
212 * <td>Display build system help and configuration information.</td>
215 * <td><tt>list_targets</tt></td>
216 * <td>List all available build targets from the build system.</td>
219 * <td><tt>list_modules</tt></td>
220 * <td>List all available build modules from the build system.</td>
223 * <td><tt>list_mandatory</tt></td>
224 * <td>List all mandatory parameters required by the included modules.</td>
227 * <td><tt>list_optional</tt></td>
228 * <td>List all optional parameters required by the included modules.</td>
231 * <td><tt>list_provided</tt></td>
232 * <td>List all variables provided by the included modules.</td>
235 * <td><tt>list_macros</tt></td>
236 * <td>List all macros provided by the included modules.</td>
240 * \section SSec_BuildModule_CORE_MandatoryParams Mandatory Parameters
244 * <td><i>None</i></td>
248 * \section SSec_BuildModule_CORE_OptionalParams Optional Parameters
252 * <td><i>None</i></td>
256 * \section SSec_BuildModule_CORE_ProvideVariables Module Provided Variables
260 * <td><i>None</i></td>
264 * \section SSec_BuildModule_CORE_ProvidedMacros Module Provided Macros
268 * <td><i>None</i></td>
273 /** \page Page_BuildModule_ATPROGRAM The ATPROGRAM build module
275 * The ATPROGRAM programming utility LUFA build system module, providing targets to reprogram an
276 * Atmel processor FLASH and EEPROM memories with a project's compiled binary output files.
278 * To use this module in your application makefile, add the following code:
280 * include $(LUFA_PATH)/Build/lufa.atprogram.in
283 * \section SSec_BuildModule_ATPROGRAM_Requirements Requirements
284 * This module requires the <tt>atprogram.exe</tt> utility to be available in your system's <b>PATH</b>
285 * variable. The <tt>atprogram.exe</tt> utility is distributed in Atmel AVR Studio 5.x and Atmel Studio 6.x
286 * inside the application install folder's "\avrdbg" subdirectory.
288 * \section SSec_BuildModule_ATPROGRAM_Targets Targets
292 * <td><tt>atprogram</tt></td>
293 * <td>Program the device FLASH memory with the application's executable data.</td>
296 * <td><tt>atprogram-ee</tt></td>
297 * <td>Program the device EEPROM memory with the application's EEPROM data.</td>
301 * \section SSec_BuildModule_ATPROGRAM_MandatoryParams Mandatory Parameters
305 * <td><tt>MCU</tt></td>
306 * <td>Name of the Atmel processor model (e.g. <tt>at90usb1287</tt>).</td>
309 * <td><tt>TARGET</tt></td>
310 * <td>Name of the application output file prefix (e.g. <tt>TestApplication</tt>).</td>
314 * \section SSec_BuildModule_ATPROGRAM_OptionalParams Optional Parameters
318 * <td><tt>ATPROGRAM_PROGRAMMER</tt></td>
319 * <td>Name of the Atmel programmer or debugger tool to communicate with (e.g. <tt>jtagice3</tt>).</td>
322 * <td><tt>ATPROGRAM_INTERFACE</tt></td>
323 * <td>Name of the programming interface to use when programming the target (e.g. <tt>spi</tt>).</td>
326 * <td><tt>ATPROGRAM_PORT</tt></td>
327 * <td>Name of the communication port to use when when programming with a serially connected tool (e.g. <tt>COM2</tt>).</td>
331 * \section SSec_BuildModule_ATPROGRAM_ProvideVariables Module Provided Variables
335 * <td><i>None</i></td>
339 * \section SSec_BuildModule_ATPROGRAM_ProvidedMacros Module Provided Macros
343 * <td><i>None</i></td>
348 /** \page Page_BuildModule_AVRDUDE The AVRDUDE build module
350 * The AVRDUDE programming utility LUFA build system module, providing targets to reprogram an
351 * Atmel processor FLASH and EEPROM memories with a project's compiled binary output files.
353 * To use this module in your application makefile, add the following code:
355 * include $(LUFA_PATH)/Build/lufa.avrdude.in
358 * \section SSec_BuildModule_AVRDUDE_Requirements Requirements
359 * This module requires the <tt>avrdude</tt> utility to be available in your system's <b>PATH</b>
360 * variable. The <tt>avrdude</tt> utility is distributed in the old WinAVR project releases for
361 * Windows (<a>winavr.sourceforge.net</a>) or can be installed on *nix systems via the project's
362 * source code (<a>https://savannah.nongnu.org/projects/avrdude</a>) or through the package manager.
364 * \section SSec_BuildModule_AVRDUDE_Targets Targets
368 * <td><tt>avrdude</tt></td>
369 * <td>Program the device FLASH memory with the application's executable data.</td>
372 * <td><tt>avrdude</tt></td>
373 * <td>Program the device EEPROM memory with the application's EEPROM data.</td>
377 * \section SSec_BuildModule_AVRDUDE_MandatoryParams Mandatory Parameters
381 * <td><tt>MCU</tt></td>
382 * <td>Name of the Atmel processor model (e.g. <tt>at90usb1287</tt>).</td>
385 * <td><tt>TARGET</tt></td>
386 * <td>Name of the application output file prefix (e.g. <tt>TestApplication</tt>).</td>
390 * \section SSec_BuildModule_AVRDUDE_OptionalParams Optional Parameters
394 * <td><tt>AVRDUDE_PROGRAMMER</tt></td>
395 * <td>Name of the programmer or debugger tool to communicate with (e.g. <tt>jtagicemkii</tt>).</td>
398 * <td><tt>ATPROGRAM_PORT</tt></td>
399 * <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>
402 * <td><tt>ATPROGRAM_FLAGS</tt></td>
403 * <td>Additional flags to pass to avrdude when programming, applied after the automatically generated flags.</td>
407 * \section SSec_BuildModule_AVRDUDE_ProvideVariables Module Provided Variables
411 * <td><i>None</i></td>
415 * \section SSec_BuildModule_AVRDUDE_ProvidedMacros Module Provided Macros
419 * <td><i>None</i></td>
424 /** \page Page_BuildModule_CPPCHECK The CPPCHECK build module
426 * The CPPCHECK programming utility LUFA build system module, providing targets to statically
427 * analyze C and C++ source code for errors and performance/style issues.
429 * To use this module in your application makefile, add the following code:
431 * include $(LUFA_PATH)/Build/lufa.cppcheck.in
434 * \section SSec_BuildModule_CPPCHECK_Requirements Requirements
435 * This module requires the <tt>cppcheck</tt> utility to be available in your system's <b>PATH</b>
436 * variable. The <tt>cppcheck</tt> utility is distributed through the project's home page
437 * (<a>http://cppcheck.sourceforge.net</a>) for Windows, and can be installed on *nix systems via
438 * the project's source code or through the package manager.
440 * \section SSec_BuildModule_CPPCHECK_Targets Targets
444 * <td><tt>cppcheck</tt></td>
445 * <td>Statically analyze the project source code for issues.</td>
448 * <td><tt>cppcheck-config</tt></td>
449 * <td>Check the <tt>cppcheck</tt> configuration - scan source code and warn about missing header files and other issues.</td>
453 * \section SSec_BuildModule_CPPCHECK_MandatoryParams Mandatory Parameters
457 * <td><tt>SRC</tt></td>
458 * <td>List of source files to statically analyze.</td>
462 * \section SSec_BuildModule_CPPCHECK_OptionalParams Optional Parameters
466 * <td><tt>CPPCHECK_INCLUDES</tt></td>
467 * <td>Path of extra directories to check when attemting to resolve C/C++ header file includes.</td>
470 * <td><tt>CPPCHECK_EXCLUDES</tt></td>
471 * <td>Paths or path fragments to exclude when analyzing.</td>
474 * <td><tt>CPPCHECK_MSG_TEMPLATE</tt></td>
475 * <td>Output message template to use when printing errors, warnings and information (see <tt>cppcheck</tt> documentation).</td>
478 * <td><tt>CPPCHECK_ENABLE</tt></td>
479 * <td>Analysis rule categories to enable (see <tt>cppcheck</tt> documentation).</td>
482 * <td><tt>CPPCHECK_SUPPRESS</tt></td>
483 * <td>Specific analysis rules to suppress (see <tt>cppcheck</tt> documentation).</td>
486 * <td><tt>CPPCHECK_FAIL_ON_WARNING</tt></td>
487 * <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>
490 * <td><tt>CPPCHECK_QUIET</tt></td>
491 * <td>Set to <b>Y</b> to suppress all output except warnings and errors, <b>N</b> to show verbose output information.</td>
494 * <td><tt>CPPCHECK_FLAGS</tt></td>
495 * <td>Extra flags to pass to <tt>cppcheck</tt>, after the automatically generated flags.</td>
499 * \section SSec_BuildModule_CPPCHECK_ProvideVariables Module Provided Variables
503 * <td><i>None</i></td>
507 * \section SSec_BuildModule_CPPCHECK_ProvidedMacros Module Provided Macros
511 * <td><i>None</i></td>
516 /** \page Page_BuildModule_DFU The DFU build module
518 * The DFU programming utility LUFA build system module, providing targets to reprogram an
519 * Atmel processor FLASH and EEPROM memories with a project's compiled binary output files.
520 * This module requires a DFU class bootloader to be running in the target, compatible with
521 * the DFU bootloader protocol as published by Atmel.
523 * To use this module in your application makefile, add the following code:
525 * include $(LUFA_PATH)/Build/lufa.dfu.in
528 * \section SSec_BuildModule_DFU_Requirements Requirements
529 * This module requires either the <tt>batchisp</tt> utility from Atmel's FLIP utility, or the open
530 * source <tt>dfu-programmer</tt> utility (<a>http://dfu-programmer.sourceforge.net/</a>) to be
531 * available in your system's <b>PATH</b> variable. On *nix systems the <tt>dfu-programmer</tt> utility
532 * can be installed via the project's source code or through the package manager.
534 * \section SSec_BuildModule_DFU_Targets Targets
538 * <td><tt>dfu</tt></td>
539 * <td>Program the device FLASH memory with the application's executable data using <tt>dfu-programmer</tt>.</td>
542 * <td><tt>dfu-ee</tt></td>
543 * <td>Program the device EEPROM memory with the application's EEPROM data using <tt>dfu-programmer</tt>.</td>
546 * <td><tt>flip</tt></td>
547 * <td>Program the device FLASH memory with the application's executable data using <tt>batchisp</tt>.</td>
550 * <td><tt>flip-ee</tt></td>
551 * <td>Program the device EEPROM memory with the application's EEPROM data using <tt>batchisp</tt>.</td>
555 * \section SSec_BuildModule_DFU_MandatoryParams Mandatory Parameters
559 * <td><tt>MCU</tt></td>
560 * <td>Name of the Atmel processor model (e.g. <tt>at90usb1287</tt>).</td>
563 * <td><tt>TARGET</tt></td>
564 * <td>Name of the application output file prefix (e.g. <tt>TestApplication</tt>).</td>
568 * \section SSec_BuildModule_DFU_OptionalParams Optional Parameters
572 * <td><i>None</i></td>
576 * \section SSec_BuildModule_DFU_ProvideVariables Module Provided Variables
580 * <td><i>None</i></td>
584 * \section SSec_BuildModule_DFU_ProvidedMacros Module Provided Macros
588 * <td><i>None</i></td>
593 /** \page Page_BuildModule_DOXYGEN The DOXYGEN build module
595 * The DOXYGEN code documentation utility LUFA build system module, providing targets to generate
596 * project HTML and other format documentation from a set of source files that include special
599 * To use this module in your application makefile, add the following code:
601 * include $(LUFA_PATH)/Build/lufa.doxygen.in
604 * \section SSec_BuildModule_DOXYGEN_Requirements Requirements
605 * This module requires the <tt>doxygen</tt> utility from the Doxygen website
606 * (<a>http://www.stack.nl/~dimitri/doxygen/</a>) to be available in your system's <b>PATH</b>
607 * variable. On *nix systems the <tt>doxygen</tt> utility can be installed via the project's source
608 * code or through the package manager.
610 * \section SSec_BuildModule_DOXYGEN_Targets Targets
614 * <td><tt>doxygen</tt></td>
615 * <td>Generate project documentation.</td>
619 * \section SSec_BuildModule_DOXYGEN_MandatoryParams Mandatory Parameters
623 * <td><tt>LUFA_PATH</tt></td>
624 * <td>Path to the LUFA library core, either relative or absolute (e.g. <tt>../LUFA-000000/LUFA/</tt>).</td>
628 * \section SSec_BuildModule_DOXYGEN_OptionalParams Optional Parameters
632 * <td><tt>DOXYGEN_CONF</tt></td>
633 * <td>Name and path of the base Doxygen configuration file for the project.</td>
636 * <td><tt>DOXYGEN_FAIL_ON_WARNING</tt></td>
637 * <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>
640 * <td><tt>DOXYGEN_OVERRIDE_PARAMS</tt></td>
641 * <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>
645 * \section SSec_BuildModule_DOXYGEN_ProvideVariables Module Provided Variables
649 * <td><i>None</i></td>
653 * \section SSec_BuildModule_DOXYGEN_ProvidedMacros Module Provided Macros
657 * <td><i>None</i></td>
662 /** \page Page_BuildModule_HID The HID build module
664 * The HID programming utility LUFA build system module, providing targets to reprogram an
665 * Atmel processor's FLASH memory with a project's compiled binary output file. This module
666 * requires a HID class bootloader to be running in the target, using a protocol compatible
667 * with the PJRC "HalfKay" protocol (<a>http://www.pjrc.com/teensy/halfkay_protocol.html</a>).
669 * To use this module in your application makefile, add the following code:
671 * include $(LUFA_PATH)/Build/lufa.hid.in
674 * \section SSec_BuildModule_HID_Requirements Requirements
675 * This module requires either the <tt>hid_bootloader_cli</tt> utility from the included LUFA HID
676 * class bootloader API subdirectory, or the <tt>teensy_loader_cli</tt> utility from PJRC
677 * (<a>http://www.pjrc.com/teensy/loader_cli.html</a>) to be available in your system's <b>PATH</b>
680 * \section SSec_BuildModule_HID_Targets Targets
684 * <td><tt>hid</tt></td>
685 * <td>Program the device FLASH memory with the application's executable data using <tt>hid_bootloader_cli</tt>.</td>
688 * <td><tt>hid-teensy</tt></td>
689 * <td>Program the device FLASH memory with the application's executable data using <tt>teensy_loader_cli</tt>.</td>
693 * \section SSec_BuildModule_HID_MandatoryParams Mandatory Parameters
697 * <td><tt>MCU</tt></td>
698 * <td>Name of the Atmel processor model (e.g. <tt>at90usb1287</tt>).</td>
701 * <td><tt>TARGET</tt></td>
702 * <td>Name of the application output file prefix (e.g. <tt>TestApplication</tt>).</td>
706 * \section SSec_BuildModule_HID_OptionalParams Optional Parameters
710 * <td><i>None</i></td>
714 * \section SSec_BuildModule_HID_ProvideVariables Module Provided Variables
718 * <td><i>None</i></td>
722 * \section SSec_BuildModule_HID_ProvidedMacros Module Provided Macros
726 * <td><i>None</i></td>
731 /** \page Page_BuildModule_SOURCES The SOURCES build module
733 * The SOURCES LUFA build system module, providing variables listing the various LUFA source files
734 * required to be build by a project for a given LUFA module. This module gives a way to reference
735 * LUFA source files symbollically, so that changes to the library structure do not break the library
738 * To use this module in your application makefile, add the following code:
740 * include $(LUFA_PATH)/Build/lufa.sources.in
743 * \section SSec_BuildModule_SOURCES_Requirements Requirements
746 * \section SSec_BuildModule_SOURCES_Targets Targets
750 * <td><i>None</i></td>
754 * \section SSec_BuildModule_SOURCES_MandatoryParams Mandatory Parameters
758 * <td><tt>LUFA_PATH</tt></td>
759 * <td>Path to the LUFA library core, either relative or absolute (e.g. <tt>../LUFA-000000/LUFA/</tt>).</td>
762 * <td><tt>ARCH</tt></td>
763 * <td>Architecture of the target processor (see \ref Page_DeviceSupport).</td>
767 * \section SSec_BuildModule_SOURCES_OptionalParams Optional Parameters
771 * <td><i>None</i></td>
775 * \section SSec_BuildModule_SOURCES_ProvideVariables Module Provided Variables
779 * <td><tt>LUFA_SRC_USB</tt></td>
780 * <td>List of LUFA USB driver source files.</td>
783 * <td><tt>LUFA_SRC_USBCLASS</tt></td>
784 * <td>List of LUFA USB Class driver source files.</td>
787 * <td><tt>LUFA_SRC_TEMPERATURE</tt></td>
788 * <td>List of LUFA temperature sensor driver source files.</td>
791 * <td><tt>LUFA_SRC_SERIAL</tt></td>
792 * <td>List of LUFA Serial U(S)ART driver source files.</td>
795 * <td><tt>LUFA_SRC_TWI</tt></td>
796 * <td>List of LUFA TWI driver source files.</td>
799 * <td><tt>LUFA_SRC_PLATFORM</tt></td>
800 * <td>List of LUFA architecture specific platform management source files.</td>
804 * \section SSec_BuildModule_SOURCES_ProvidedMacros Module Provided Macros
808 * <td><i>None</i></td>