Suppress unused function parameter warnings in the USB driver.
[pub/USBasp.git] / LUFA / DoxygenPages / BuildSystem.txt
1 /** \file
2 *
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.
5 */
6
7 /** \page Page_BuildSystem The LUFA Build System
8 *
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 minimize the amount of code required in an
12 * application makefile. The system is written in GNU Make, and each module is independent of
13 * one-another.
14 *
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.
17 *
18 * To use a LUFA build system module, simply add an include to your project makefile. All user projects
19 * should at a minimum include \ref Page_BuildModule_CORE for base functionality:
20 * \code
21 * include $(LUFA_PATH)/Build/lufa_core.mk
22 * \endcode
23 *
24 * Once included in your project makefile, the associated build module targets will be added to your
25 * project's build makefile targets automatically. To call a build target, run <tt>make {TARGET_NAME}</tt>
26 * from the command line, substituting in the appropriate target name.
27 *
28 * \see \ref Sec_AppMakefileParams for a copy of the sample LUFA project makefile.
29 *
30 * Each build module may have one or more mandatory parameters (GNU Make variables) which <i>must</i>
31 * be supplied in the project makefile for the module to work, and one or more optional parameters which
32 * may be defined and which will assume a sensible default if not.
33 *
34 * \section SSec_BuildSystemModules Available Modules
35 *
36 * The following modules are included in this LUFA release:
37 *
38 * \li \subpage Page_BuildModule_ATPROGRAM - Device Programming
39 * \li \subpage Page_BuildModule_AVRDUDE - Device Programming
40 * \li \subpage Page_BuildModule_BUILD - Compiling/Assembling/Linking
41 * \li \subpage Page_BuildModule_CORE - Core Build System Functions
42 * \li \subpage Page_BuildModule_CPPCHECK - Static Code Analysis
43 * \li \subpage Page_BuildModule_DFU - Device Programming
44 * \li \subpage Page_BuildModule_DOXYGEN - Automated Source Code Documentation
45 * \li \subpage Page_BuildModule_HID - Device Programming
46 * \li \subpage Page_BuildModule_SOURCES - LUFA Module Source Code Variables
47 *
48 * If you have problems building using the LUFA build system, see \subpage Page_BuildTroubleshooting for resolution steps.
49 */
50
51 /** \page Page_BuildModule_BUILD The BUILD build module
52 *
53 * The BUILD LUFA build system module, providing targets for the compilation,
54 * assembling and linking of an application from source code into binary files
55 * suitable for programming into a target device, using the GCC compiler.
56 *
57 * To use this module in your application makefile, add the following code:
58 * \code
59 * include $(LUFA_PATH)/Build/lufa_build.mk
60 * \endcode
61 *
62 * \section SSec_BuildModule_BUILD_Requirements Requirements
63 * This module requires the the architecture appropriate binaries of the GCC compiler are available in your
64 * system's <b>PATH</b> variable. The GCC compiler and associated toolchain is distributed in Atmel AVR Studio
65 * 5.x and Atmel Studio 6.x installation directories, as well as in many third party distribution packages.
66 *
67 * \section SSec_BuildModule_BUILD_Targets Targets
68 *
69 * <table>
70 * <tr>
71 * <td><tt>size</tt></td>
72 * <td>Display size of the compiled application FLASH and SRAM segments.</td>
73 * </tr>
74 * <tr>
75 * <td><tt>symbol-sizes</tt></td>
76 * <td>Display a size-sorted list of symbols from the compiled application, in decimal bytes.</td>
77 * </tr>
78 * <tr>
79 * <td><tt>lib</tt></td>
80 * <td>Build and archive all source files into a library A binary file.</td>
81 * </tr>
82 * <tr>
83 * <td><tt>all</tt></td>
84 * <td>Build and link the application into ELF debug and HEX binary files.</td>
85 * </tr>
86 * <tr>
87 * <td><tt>elf</tt></td>
88 * <td>Build and link the application into an ELF debug file.</td>
89 * </tr>
90 * <tr>
91 * <td><tt>hex</tt></td>
92 * <td>Build and link the application and produce HEX and EEP binary files.</td>
93 * </tr>
94 * <tr>
95 * <td><tt>lss</tt></td>
96 * <td>Build and link the application and produce a LSS source code/assembly code mixed listing file.</td>
97 * </tr>
98 * <tr>
99 * <td><tt>clean</tt></td>
100 * <td>Remove all intermediary files and binary output files.</td>
101 * </tr>
102 * <tr>
103 * <td><tt>mostlyclean</tt></td>
104 * <td>Remove all intermediary files but preserve any binary output files.</td>
105 * </tr>
106 * <tr>
107 * <td><tt><i>&lt;filename&gt;</i>.s</tt></td>
108 * <td>Create an assembly listing of a given input C/C++ source file.</td>
109 * </tr>
110 * </table>
111 *
112 * \section SSec_BuildModule_BUILD_MandatoryParams Mandatory Parameters
113 *
114 * <table>
115 * <tr>
116 * <td><tt>TARGET</tt></td>
117 * <td>Name of the application output file prefix (e.g. <tt>TestApplication</tt>).</td>
118 * </tr>
119 * <tr>
120 * <td><tt>ARCH</tt></td>
121 * <td>Architecture of the target processor (see \ref Page_DeviceSupport).</td>
122 * </tr>
123 * <tr>
124 * <td><tt>MCU</tt></td>
125 * <td>Name of the Atmel processor model (e.g. <tt>at90usb1287</tt>).</td>
126 * </tr>
127 * <tr>
128 * <td><tt>SRC</tt></td>
129 * <td>List of relative or absolute paths to the application C (.c), C++ (.cpp) and Assembly (.S) source files.</td>
130 * </tr>
131 * <tr>
132 * <td><tt>F_USB</tt></td>
133 * <td>Speed in Hz of the input clock frequency to the target's USB controller.</td>
134 * </tr>
135 * <tr>
136 * <td><tt>LUFA_PATH</tt></td>
137 * <td>Path to the LUFA library core, either relative or absolute (e.g. <tt>../LUFA-000000/LUFA/</tt>).</td>
138 * </tr>
139 * </table>
140 *
141 * \section SSec_BuildModule_BUILD_OptionalParams Optional Parameters
142 *
143 * <table>
144 * <tr>
145 * <td><tt>BOARD</tt></td>
146 * <td>LUFA board hardware drivers to use (see \ref Page_DeviceSupport).</td>
147 * </tr>
148 * <tr>
149 * <td><tt>OPTIMIZATION</tt></td>
150 * <td>Optimization level to use when compiling source files (see GCC manual).</td>
151 * </tr>
152 * <tr>
153 * <td><tt>C_STANDARD</tt></td>
154 * <td>Version of the C standard to apply when compiling C++ source files (see GCC manual).</td>
155 * </tr>
156 * <tr>
157 * <td><tt>CPP_STANDARD</tt></td>
158 * <td>Version of the C++ standard to apply when compiling C++ source files (see GCC manual).</td>
159 * </tr>
160 * <tr>
161 * <td><tt>DEBUG_FORMAT</tt></td>
162 * <td>Format of the debug information to embed in the generated object files (see GCC manual).</td>
163 * </tr>
164 * <tr>
165 * <td><tt>DEBUG_LEVEL</tt></td>
166 * <td>Level of the debugging information to embed in the generated object files (see GCC manual).</td>
167 * </tr>
168 * <tr>
169 * <td><tt>F_CPU</tt></td>
170 * <td>Speed of the processor CPU clock, in Hz.</td>
171 * </tr>
172 * <tr>
173 * <td><tt>C_FLAGS</tt></td>
174 * <td>Flags to pass to the C compiler only, after the automatically generated flags.</td>
175 * </tr>
176 * <tr>
177 * <td><tt>CPP_FLAGS</tt></td>
178 * <td>Flags to pass to the C++ compiler only, after the automatically generated flags.</td>
179 * </tr>
180 * <tr>
181 * <td><tt>ASM_FLAGS</tt></td>
182 * <td>Flags to pass to the assembler only, after the automatically generated flags.</td>
183 * </tr>
184 * <tr>
185 * <td><tt>CC_FLAGS</tt></td>
186 * <td>Common flags to pass to the C/C++ compiler and assembler, after the automatically generated flags.</td>
187 * </tr>
188 * <tr>
189 * <td><tt>LD_FLAGS</tt></td>
190 * <td>Flags to pass to the linker, after the automatically generated flags.</td>
191 * </tr>
192 * <tr>
193 * <td><tt>LINKER_RELAXATIONS</tt></td>
194 * <td>Enables or disables linker relaxations when linking the application binary. This can reduce the total size
195 * of the application by replacing full \c CALL instructions with smaller \c RCALL instructions where possible.
196 * \note On some unpatched versions of binutils, this can cause link failures in some circumstances. If you
197 * receive a link error <tt>relocation truncated to fit: R_AVR_13_PCREL</tt>, disable this setting.</td>
198 * </tr>
199 * <tr>
200 * <td><tt>OBJDIR</tt></td>
201 * <td>Directory to place the generated object and dependency files. If set to "." the same folder as the source file will be used.
202 * \note When this option is enabled, all source filenames <b>must</b> be unique.</td>
203 * </tr>
204 * <tr>
205 * <td><tt>OBJECT_FILES</tt></td>
206 * <td>List of additional object files that should be linked into the resulting binary.</td>
207 * </tr>
208 * </table>
209 *
210 * \section SSec_BuildModule_BUILD_ProvidedVariables Module Provided Variables
211 *
212 * <table>
213 * <tr>
214 * <td><i>None</i></td>
215 * </tr>
216 * </table>
217 *
218 * \section SSec_BuildModule_BUILD_ProvidedMacros Module Provided Macros
219 *
220 * <table>
221 * <tr>
222 * <td><i>None</i></td>
223 * </tr>
224 * </table>
225 */
226
227 /** \page Page_BuildModule_CORE The CORE build module
228 *
229 * The core LUFA build system module, providing common build system help and information targets.
230 *
231 * To use this module in your application makefile, add the following code:
232 * \code
233 * include $(LUFA_PATH)/Build/lufa_core.mk
234 * \endcode
235 *
236 * \section SSec_BuildModule_CORE_Requirements Requirements
237 * This module has no requirements outside a standard *nix shell like environment; the <tt>sh</tt>
238 * shell, GNU <tt>make</tt> and *nix CoreUtils (<tt>echo</tt>, <tt>printf</tt>, etc.).
239 *
240 * \section SSec_BuildModule_CORE_Targets Targets
241 *
242 * <table>
243 * <tr>
244 * <td><tt>help</tt></td>
245 * <td>Display build system help and configuration information.</td>
246 * </tr>
247 * <tr>
248 * <td><tt>list_targets</tt></td>
249 * <td>List all available build targets from the build system.</td>
250 * </tr>
251 * <tr>
252 * <td><tt>list_modules</tt></td>
253 * <td>List all available build modules from the build system.</td>
254 * </tr>
255 * <tr>
256 * <td><tt>list_mandatory</tt></td>
257 * <td>List all mandatory parameters required by the included modules.</td>
258 * </tr>
259 * <tr>
260 * <td><tt>list_optional</tt></td>
261 * <td>List all optional parameters required by the included modules.</td>
262 * </tr>
263 * <tr>
264 * <td><tt>list_provided</tt></td>
265 * <td>List all variables provided by the included modules.</td>
266 * </tr>
267 * <tr>
268 * <td><tt>list_macros</tt></td>
269 * <td>List all macros provided by the included modules.</td>
270 * </tr>
271 * </table>
272 *
273 * \section SSec_BuildModule_CORE_MandatoryParams Mandatory Parameters
274 *
275 * <table>
276 * <tr>
277 * <td><i>None</i></td>
278 * </tr>
279 * </table>
280 *
281 * \section SSec_BuildModule_CORE_OptionalParams Optional Parameters
282 *
283 * <table>
284 * <tr>
285 * <td><i>None</i></td>
286 * </tr>
287 * </table>
288 *
289 * \section SSec_BuildModule_CORE_ProvidedVariables Module Provided Variables
290 *
291 * <table>
292 * <tr>
293 * <td><i>None</i></td>
294 * </tr>
295 * </table>
296 *
297 * \section SSec_BuildModule_CORE_ProvidedMacros Module Provided Macros
298 *
299 * <table>
300 * <tr>
301 * <td><i>None</i></td>
302 * </tr>
303 * </table>
304 */
305
306 /** \page Page_BuildModule_ATPROGRAM The ATPROGRAM build module
307 *
308 * The ATPROGRAM programming utility LUFA build system module, providing targets to reprogram an
309 * Atmel processor FLASH and EEPROM memories with a project's compiled binary output files.
310 *
311 * To use this module in your application makefile, add the following code:
312 * \code
313 * include $(LUFA_PATH)/Build/lufa_atprogram.mk
314 * \endcode
315 *
316 * \section SSec_BuildModule_ATPROGRAM_Requirements Requirements
317 * This module requires the <tt>atprogram.exe</tt> utility to be available in your system's <b>PATH</b>
318 * variable. The <tt>atprogram.exe</tt> utility is distributed in Atmel AVR Studio 5.x and Atmel Studio 6.x
319 * inside the application install folder's "\avrdbg" subdirectory.
320 *
321 * \section SSec_BuildModule_ATPROGRAM_Targets Targets
322 *
323 * <table>
324 * <tr>
325 * <td><tt>atprogram</tt></td>
326 * <td>Program the device FLASH memory with the application's executable data.</td>
327 * </tr>
328 * <tr>
329 * <td><tt>atprogram-ee</tt></td>
330 * <td>Program the device EEPROM memory with the application's EEPROM data.</td>
331 * </tr>
332 * </table>
333 *
334 * \section SSec_BuildModule_ATPROGRAM_MandatoryParams Mandatory Parameters
335 *
336 * <table>
337 * <tr>
338 * <td><tt>MCU</tt></td>
339 * <td>Name of the Atmel processor model (e.g. <tt>at90usb1287</tt>).</td>
340 * </tr>
341 * <tr>
342 * <td><tt>TARGET</tt></td>
343 * <td>Name of the application output file prefix (e.g. <tt>TestApplication</tt>).</td>
344 * </tr>
345 * </table>
346 *
347 * \section SSec_BuildModule_ATPROGRAM_OptionalParams Optional Parameters
348 *
349 * <table>
350 * <tr>
351 * <td><tt>ATPROGRAM_PROGRAMMER</tt></td>
352 * <td>Name of the Atmel programmer or debugger tool to communicate with (e.g. <tt>jtagice3</tt>).</td>
353 * </tr>
354 * <tr>
355 * <td><tt>ATPROGRAM_INTERFACE</tt></td>
356 * <td>Name of the programming interface to use when programming the target (e.g. <tt>spi</tt>).</td>
357 * </tr>
358 * <tr>
359 * <td><tt>ATPROGRAM_PORT</tt></td>
360 * <td>Name of the communication port to use when when programming with a serially connected tool (e.g. <tt>COM2</tt>).</td>
361 * </tr>
362 * </table>
363 *
364 * \section SSec_BuildModule_ATPROGRAM_ProvidedVariables Module Provided Variables
365 *
366 * <table>
367 * <tr>
368 * <td><i>None</i></td>
369 * </tr>
370 * </table>
371 *
372 * \section SSec_BuildModule_ATPROGRAM_ProvidedMacros Module Provided Macros
373 *
374 * <table>
375 * <tr>
376 * <td><i>None</i></td>
377 * </tr>
378 * </table>
379 */
380
381 /** \page Page_BuildModule_AVRDUDE The AVRDUDE build module
382 *
383 * The AVRDUDE programming utility LUFA build system module, providing targets to reprogram an
384 * Atmel processor FLASH and EEPROM memories with a project's compiled binary output files.
385 *
386 * To use this module in your application makefile, add the following code:
387 * \code
388 * include $(LUFA_PATH)/Build/lufa_avrdude.mk
389 * \endcode
390 *
391 * \section SSec_BuildModule_AVRDUDE_Requirements Requirements
392 * This module requires the <tt>avrdude</tt> utility to be available in your system's <b>PATH</b>
393 * variable. The <tt>avrdude</tt> utility is distributed in the old WinAVR project releases for
394 * Windows (<a>http://winavr.sourceforge.net</a>) or can be installed on *nix systems via the project's
395 * source code (<a>https://savannah.nongnu.org/projects/avrdude</a>) or through the package manager.
396 *
397 * \section SSec_BuildModule_AVRDUDE_Targets Targets
398 *
399 * <table>
400 * <tr>
401 * <td><tt>avrdude</tt></td>
402 * <td>Program the device FLASH memory with the application's executable data.</td>
403 * </tr>
404 * <tr>
405 * <td><tt>avrdude-ee</tt></td>
406 * <td>Program the device EEPROM memory with the application's EEPROM data.</td>
407 * </tr>
408 * </table>
409 *
410 * \section SSec_BuildModule_AVRDUDE_MandatoryParams Mandatory Parameters
411 *
412 * <table>
413 * <tr>
414 * <td><tt>MCU</tt></td>
415 * <td>Name of the Atmel processor model (e.g. <tt>at90usb1287</tt>).</td>
416 * </tr>
417 * <tr>
418 * <td><tt>TARGET</tt></td>
419 * <td>Name of the application output file prefix (e.g. <tt>TestApplication</tt>).</td>
420 * </tr>
421 * </table>
422 *
423 * \section SSec_BuildModule_AVRDUDE_OptionalParams Optional Parameters
424 *
425 * <table>
426 * <tr>
427 * <td><tt>AVRDUDE_PROGRAMMER</tt></td>
428 * <td>Name of the programmer or debugger tool to communicate with (e.g. <tt>jtagicemkii</tt>).</td>
429 * </tr>
430 * <tr>
431 * <td><tt>AVRDUDE_PORT</tt></td>
432 * <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>
433 * </tr>
434 * <tr>
435 * <td><tt>AVRDUDE_FLAGS</tt></td>
436 * <td>Additional flags to pass to avrdude when programming, applied after the automatically generated flags.</td>
437 * </tr>
438 * </table>
439 *
440 * \section SSec_BuildModule_AVRDUDE_ProvidedVariables Module Provided Variables
441 *
442 * <table>
443 * <tr>
444 * <td><i>None</i></td>
445 * </tr>
446 * </table>
447 *
448 * \section SSec_BuildModule_AVRDUDE_ProvidedMacros Module Provided Macros
449 *
450 * <table>
451 * <tr>
452 * <td><i>None</i></td>
453 * </tr>
454 * </table>
455 */
456
457 /** \page Page_BuildModule_CPPCHECK The CPPCHECK build module
458 *
459 * The CPPCHECK programming utility LUFA build system module, providing targets to statically
460 * analyze C and C++ source code for errors and performance/style issues.
461 *
462 * To use this module in your application makefile, add the following code:
463 * \code
464 * include $(LUFA_PATH)/Build/lufa_cppcheck.mk
465 * \endcode
466 *
467 * \section SSec_BuildModule_CPPCHECK_Requirements Requirements
468 * This module requires the <tt>cppcheck</tt> utility to be available in your system's <b>PATH</b>
469 * variable. The <tt>cppcheck</tt> utility is distributed through the project's home page
470 * (<a>http://cppcheck.sourceforge.net</a>) for Windows, and can be installed on *nix systems via
471 * the project's source code or through the package manager.
472 *
473 * \section SSec_BuildModule_CPPCHECK_Targets Targets
474 *
475 * <table>
476 * <tr>
477 * <td><tt>cppcheck</tt></td>
478 * <td>Statically analyze the project source code for issues.</td>
479 * </tr>
480 * <tr>
481 * <td><tt>cppcheck-config</tt></td>
482 * <td>Check the <tt>cppcheck</tt> configuration - scan source code and warn about missing header files and other issues.</td>
483 * </tr>
484 * </table>
485 *
486 * \section SSec_BuildModule_CPPCHECK_MandatoryParams Mandatory Parameters
487 *
488 * <table>
489 * <tr>
490 * <td><tt>SRC</tt></td>
491 * <td>List of source files to statically analyze.</td>
492 * </tr>
493 * </table>
494 *
495 * \section SSec_BuildModule_CPPCHECK_OptionalParams Optional Parameters
496 *
497 * <table>
498 * <tr>
499 * <td><tt>CPPCHECK_INCLUDES</tt></td>
500 * <td>Path of extra directories to check when attemting to resolve C/C++ header file includes.</td>
501 * </tr>
502 * <tr>
503 * <td><tt>CPPCHECK_EXCLUDES</tt></td>
504 * <td>Paths or path fragments to exclude when analyzing.</td>
505 * </tr>
506 * <tr>
507 * <td><tt>CPPCHECK_MSG_TEMPLATE</tt></td>
508 * <td>Output message template to use when printing errors, warnings and information (see <tt>cppcheck</tt> documentation).</td>
509 * </tr>
510 * <tr>
511 * <td><tt>CPPCHECK_ENABLE</tt></td>
512 * <td>Analysis rule categories to enable (see <tt>cppcheck</tt> documentation).</td>
513 * </tr>
514 * <tr>
515 * <td><tt>CPPCHECK_SUPPRESS</tt></td>
516 * <td>Specific analysis rules to suppress (see <tt>cppcheck</tt> documentation).</td>
517 * </tr>
518 * <tr>
519 * <td><tt>CPPCHECK_FAIL_ON_WARNING</tt></td>
520 * <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>
521 * </tr>
522 * <tr>
523 * <td><tt>CPPCHECK_QUIET</tt></td>
524 * <td>Set to <b>Y</b> to suppress all output except warnings and errors, <b>N</b> to show verbose output information.</td>
525 * </tr>
526 * <tr>
527 * <td><tt>CPPCHECK_FLAGS</tt></td>
528 * <td>Extra flags to pass to <tt>cppcheck</tt>, after the automatically generated flags.</td>
529 * </tr>
530 * </table>
531 *
532 * \section SSec_BuildModule_CPPCHECK_ProvidedVariables Module Provided Variables
533 *
534 * <table>
535 * <tr>
536 * <td><i>None</i></td>
537 * </tr>
538 * </table>
539 *
540 * \section SSec_BuildModule_CPPCHECK_ProvidedMacros Module Provided Macros
541 *
542 * <table>
543 * <tr>
544 * <td><i>None</i></td>
545 * </tr>
546 * </table>
547 */
548
549 /** \page Page_BuildModule_DFU The DFU build module
550 *
551 * The DFU programming utility LUFA build system module, providing targets to reprogram an
552 * Atmel processor FLASH and EEPROM memories with a project's compiled binary output files.
553 * This module requires a DFU class bootloader to be running in the target, compatible with
554 * the DFU bootloader protocol as published by Atmel.
555 *
556 * To use this module in your application makefile, add the following code:
557 * \code
558 * include $(LUFA_PATH)/Build/lufa_dfu.mk
559 * \endcode
560 *
561 * \section SSec_BuildModule_DFU_Requirements Requirements
562 * This module requires either the <tt>batchisp</tt> utility from Atmel's FLIP utility, or the open
563 * source <tt>dfu-programmer</tt> utility (<a>http://dfu-programmer.sourceforge.net/</a>) to be
564 * available in your system's <b>PATH</b> variable. On *nix systems the <tt>dfu-programmer</tt> utility
565 * can be installed via the project's source code or through the package manager.
566 *
567 * \section SSec_BuildModule_DFU_Targets Targets
568 *
569 * <table>
570 * <tr>
571 * <td><tt>dfu</tt></td>
572 * <td>Program the device FLASH memory with the application's executable data using <tt>dfu-programmer</tt>.</td>
573 * </tr>
574 * <tr>
575 * <td><tt>dfu-ee</tt></td>
576 * <td>Program the device EEPROM memory with the application's EEPROM data using <tt>dfu-programmer</tt>.</td>
577 * </tr>
578 * <tr>
579 * <td><tt>flip</tt></td>
580 * <td>Program the device FLASH memory with the application's executable data using <tt>batchisp</tt>.</td>
581 * </tr>
582 * <tr>
583 * <td><tt>flip-ee</tt></td>
584 * <td>Program the device EEPROM memory with the application's EEPROM data using <tt>batchisp</tt>.</td>
585 * </tr>
586 * </table>
587 *
588 * \section SSec_BuildModule_DFU_MandatoryParams Mandatory Parameters
589 *
590 * <table>
591 * <tr>
592 * <td><tt>MCU</tt></td>
593 * <td>Name of the Atmel processor model (e.g. <tt>at90usb1287</tt>).</td>
594 * </tr>
595 * <tr>
596 * <td><tt>TARGET</tt></td>
597 * <td>Name of the application output file prefix (e.g. <tt>TestApplication</tt>).</td>
598 * </tr>
599 * </table>
600 *
601 * \section SSec_BuildModule_DFU_OptionalParams Optional Parameters
602 *
603 * <table>
604 * <tr>
605 * <td><i>None</i></td>
606 * </tr>
607 * </table>
608 *
609 * \section SSec_BuildModule_DFU_ProvidedVariables Module Provided Variables
610 *
611 * <table>
612 * <tr>
613 * <td><i>None</i></td>
614 * </tr>
615 * </table>
616 *
617 * \section SSec_BuildModule_DFU_ProvidedMacros Module Provided Macros
618 *
619 * <table>
620 * <tr>
621 * <td><i>None</i></td>
622 * </tr>
623 * </table>
624 */
625
626 /** \page Page_BuildModule_DOXYGEN The DOXYGEN build module
627 *
628 * The DOXYGEN code documentation utility LUFA build system module, providing targets to generate
629 * project HTML and other format documentation from a set of source files that include special
630 * Doxygen comments.
631 *
632 * To use this module in your application makefile, add the following code:
633 * \code
634 * include $(LUFA_PATH)/Build/lufa_doxygen.mk
635 * \endcode
636 *
637 * \section SSec_BuildModule_DOXYGEN_Requirements Requirements
638 * This module requires the <tt>doxygen</tt> utility from the Doxygen website
639 * (<a>http://www.doxygen.org/</a>) to be available in your system's <b>PATH</b> variable. On *nix
640 * systems the <tt>doxygen</tt> utility can be installed via the project's source code or through
641 * the package manager.
642 *
643 * \section SSec_BuildModule_DOXYGEN_Targets Targets
644 *
645 * <table>
646 * <tr>
647 * <td><tt>doxygen</tt></td>
648 * <td>Generate project documentation.</td>
649 * </tr>
650 * <tr>
651 * <td><tt>doxygen_create</tt></td>
652 * <td>Create a new Doxygen configuration file using the latest template.</td>
653 * </tr>
654 * <tr>
655 * <td><tt>doxygen_upgrade</tt></td>
656 * <td>Upgrade an existing Doxygen configuration file to the latest template</td>
657 * </tr>
658 * </table>
659 *
660 * \section SSec_BuildModule_DOXYGEN_MandatoryParams Mandatory Parameters
661 *
662 * <table>
663 * <tr>
664 * <td><tt>LUFA_PATH</tt></td>
665 * <td>Path to the LUFA library core, either relative or absolute (e.g. <tt>../LUFA-000000/LUFA/</tt>).</td>
666 * </tr>
667 * </table>
668 *
669 * \section SSec_BuildModule_DOXYGEN_OptionalParams Optional Parameters
670 *
671 * <table>
672 * <tr>
673 * <td><tt>DOXYGEN_CONF</tt></td>
674 * <td>Name and path of the base Doxygen configuration file for the project.</td>
675 * </tr>
676 * <tr>
677 * <td><tt>DOXYGEN_FAIL_ON_WARNING</tt></td>
678 * <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>
679 * </tr>
680 * <tr>
681 * <td><tt>DOXYGEN_OVERRIDE_PARAMS</tt></td>
682 * <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>
683 * </tr>
684 * </table>
685 *
686 * \section SSec_BuildModule_DOXYGEN_ProvidedVariables Module Provided Variables
687 *
688 * <table>
689 * <tr>
690 * <td><i>None</i></td>
691 * </tr>
692 * </table>
693 *
694 * \section SSec_BuildModule_DOXYGEN_ProvidedMacros Module Provided Macros
695 *
696 * <table>
697 * <tr>
698 * <td><i>None</i></td>
699 * </tr>
700 * </table>
701 */
702
703 /** \page Page_BuildModule_HID The HID build module
704 *
705 * The HID programming utility LUFA build system module, providing targets to reprogram an
706 * Atmel processor's FLASH memory with a project's compiled binary output file. This module
707 * requires a HID class bootloader to be running in the target, using a protocol compatible
708 * with the PJRC "HalfKay" protocol (<a>http://www.pjrc.com/teensy/halfkay_protocol.html</a>).
709 *
710 * To use this module in your application makefile, add the following code:
711 * \code
712 * include $(LUFA_PATH)/Build/lufa_hid.mk
713 * \endcode
714 *
715 * \section SSec_BuildModule_HID_Requirements Requirements
716 * This module requires either the <tt>hid_bootloader_cli</tt> utility from the included LUFA HID
717 * class bootloader API subdirectory, or the <tt>teensy_loader_cli</tt> utility from PJRC
718 * (<a>http://www.pjrc.com/teensy/loader_cli.html</a>) to be available in your system's <b>PATH</b>
719 * variable.
720 *
721 * \section SSec_BuildModule_HID_Targets Targets
722 *
723 * <table>
724 * <tr>
725 * <td><tt>hid</tt></td>
726 * <td>Program the device FLASH memory with the application's executable data using <tt>hid_bootloader_cli</tt>.</td>
727 * </tr>
728 * <tr>
729 * <td><tt>hid-ee</tt></td>
730 * <td>Program the device EEPROM memory with the application's EEPROM data using <tt>hid_bootloader_cli</tt> and
731 * a temporary AVR application programmed into the target's FLASH.
732 * \note This will erase the currently loaded application in the target.</td>
733 * </tr>
734 * <tr>
735 * <td><tt>teensy</tt></td>
736 * <td>Program the device FLASH memory with the application's executable data using <tt>teensy_loader_cli</tt>.</td>
737 * </tr>
738 * <tr>
739 * <td><tt>teensy-ee</tt></td>
740 * <td>Program the device EEPROM memory with the application's EEPROM data using <tt>teensy_loader_cli</tt> and
741 * a temporary AVR application programmed into the target's FLASH.
742 * \note This will erase the currently loaded application in the target.</td>
743 * </tr>
744 * </table>
745 *
746 * \section SSec_BuildModule_HID_MandatoryParams Mandatory Parameters
747 *
748 * <table>
749 * <tr>
750 * <td><tt>MCU</tt></td>
751 * <td>Name of the Atmel processor model (e.g. <tt>at90usb1287</tt>).</td>
752 * </tr>
753 * <tr>
754 * <td><tt>TARGET</tt></td>
755 * <td>Name of the application output file prefix (e.g. <tt>TestApplication</tt>).</td>
756 * </tr>
757 * </table>
758 *
759 * \section SSec_BuildModule_HID_OptionalParams Optional Parameters
760 *
761 * <table>
762 * <tr>
763 * <td><i>None</i></td>
764 * </tr>
765 * </table>
766 *
767 * \section SSec_BuildModule_HID_ProvidedVariables Module Provided Variables
768 *
769 * <table>
770 * <tr>
771 * <td><i>None</i></td>
772 * </tr>
773 * </table>
774 *
775 * \section SSec_BuildModule_HID_ProvidedMacros Module Provided Macros
776 *
777 * <table>
778 * <tr>
779 * <td><i>None</i></td>
780 * </tr>
781 * </table>
782 */
783
784 /** \page Page_BuildModule_SOURCES The SOURCES build module
785 *
786 * The SOURCES LUFA build system module, providing variables listing the various LUFA source files
787 * required to be build by a project for a given LUFA module. This module gives a way to reference
788 * LUFA source files symbollically, so that changes to the library structure do not break the library
789 * makefile.
790 *
791 * To use this module in your application makefile, add the following code:
792 * \code
793 * include $(LUFA_PATH)/Build/lufa_sources.mk
794 * \endcode
795 *
796 * \section SSec_BuildModule_SOURCES_Requirements Requirements
797 * None.
798 *
799 * \section SSec_BuildModule_SOURCES_Targets Targets
800 *
801 * <table>
802 * <tr>
803 * <td><i>None</i></td>
804 * </tr>
805 * </table>
806 *
807 * \section SSec_BuildModule_SOURCES_MandatoryParams Mandatory Parameters
808 *
809 * <table>
810 * <tr>
811 * <td><tt>LUFA_PATH</tt></td>
812 * <td>Path to the LUFA library core, either relative or absolute (e.g. <tt>../LUFA-000000/LUFA/</tt>).</td>
813 * </tr>
814 * <tr>
815 * <td><tt>ARCH</tt></td>
816 * <td>Architecture of the target processor (see \ref Page_DeviceSupport).</td>
817 * </tr>
818 * </table>
819 *
820 * \section SSec_BuildModule_SOURCES_OptionalParams Optional Parameters
821 *
822 * <table>
823 * <tr>
824 * <td><i>None</i></td>
825 * </tr>
826 * </table>
827 *
828 * \section SSec_BuildModule_SOURCES_ProvidedVariables Module Provided Variables
829 *
830 * <table>
831 * <tr>
832 * <td><tt>LUFA_SRC_USB</tt></td>
833 * <td>List of LUFA USB driver source files.</td>
834 * </tr>
835 * <tr>
836 * <td><tt>LUFA_SRC_USBCLASS</tt></td>
837 * <td>List of LUFA USB Class driver source files.</td>
838 * </tr>
839 * <tr>
840 * <td><tt>LUFA_SRC_TEMPERATURE</tt></td>
841 * <td>List of LUFA temperature sensor driver source files.</td>
842 * </tr>
843 * <tr>
844 * <td><tt>LUFA_SRC_SERIAL</tt></td>
845 * <td>List of LUFA Serial U(S)ART driver source files.</td>
846 * </tr>
847 * <tr>
848 * <td><tt>LUFA_SRC_TWI</tt></td>
849 * <td>List of LUFA TWI driver source files.</td>
850 * </tr>
851 * <tr>
852 * <td><tt>LUFA_SRC_PLATFORM</tt></td>
853 * <td>List of LUFA architecture specific platform management source files.</td>
854 * </tr>
855 * </table>
856 *
857 * \section SSec_BuildModule_SOURCES_ProvidedMacros Module Provided Macros
858 *
859 * <table>
860 * <tr>
861 * <td><i>None</i></td>
862 * </tr>
863 * </table>
864 */
865
866 /** \page Page_BuildTroubleshooting Troubleshooting Information
867 *
868 * LUFA uses a lot of advanced features of the AVR-GCC compiler, linker, and surrounding binaries. This can sometimes lead to problems compiling applications if one of these
869 * features is buggy in the version of the tools used in a build environment. Missing utilities and incorrectly set makefile configuration options can also result in different
870 * errors being produced when compilation or other operations are attempted. The table below lists a set of commonly encountered errors and their resolutions.
871 *
872 * <table>
873 * <tr>
874 * <th>Problem</th>
875 * <th>Resolution</th>
876 * </tr>
877 * <tr>
878 * <td>Error &quot;<b><tt>relocation truncated to fit: R_AVR_13_PCREL against symbol <i>{X}</i></tt></b>&quot; shown when compiling.</td>
879 * <td>Try compiling with the setting <tt>LINKER_RELAXATIONS=N</tt> in your LUFA Build System 2.0 makefile, or remove the line <tt>-Wl,--relax</tt>
880 * from other makefiles. Alternatively, make sure you have the latest version of the Atmel Toolchain installed for your system.</td>
881 * </tr>
882 * <tr>
883 * <td>Error &quot;<b><tt>error: ld terminated with signal 11 [Segmentation fault]</tt></b>&quot; shown when compiling.</td>
884 * <td>Try compiling with the setting <tt>DEBUG_LEVEL=2</tt> in your LUFA Build System 2.0 makefile, or make sure you are using <tt>binutils</tt> version 2.22 or later.</td>
885 * </tr>
886 * <tr>
887 * <td>Error &quot;<b><tt>EMERGENCY ABORT: INFINITE RECURSION DETECTED</tt></b>&quot; shown when compiling.</td>
888 * <td>Make sure you are using an up to date version of GNU Make when compiling. This error is a safety system added to the mid-level makefiles, to prevent an issue with
889 * GNU make or other variants of Make causing an infinitely recursive build.</td>
890 * </tr>
891 * <tr>
892 * <td>Error &quot;<b><tt>Unsupported architecture &quot;<i>{X}</i>&quot;</tt></b>&quot; shown when compiling.</td>
893 * <td>Ensure your makefile's <tt>ARCH</tt> setting is set to one of the architecture names (case-sensitive) supported by the version of LUFA you are compiling against.</td>
894 * </tr>
895 * <tr>
896 * <td>Error &quot;<b><tt>Makefile <i>{X}</i> value not set</tt></b>&quot; shown when compiling.</td>
897 * <td>The specified Makefile value was not configured in your project's makefile or on the command line, and the nominated setting is required by one or more LUFA
898 * build system modules. Define the value in your project makefile and try again.</td>
899 * </tr>
900 * <tr>
901 * <td>Error &quot;<b><tt>Makefile <i>{X}</i> option cannot be blank</tt></b>&quot; shown when compiling.</td>
902 * <td>The specified Makefile value was configured in your project's makefile or on the command line, but was set to an empty value. For the nominated configuration
903 * option, an empty value is not allowed. Define the nominated setting to a correct non-blank value and try again.</td>
904 * </tr>
905 * <tr>
906 * <td>Error &quot;<b><tt>Makefile <i>{X}</i> option must be Y or N</tt></b>&quot; shown when compiling.</td>
907 * <td>The specified Makefile value was configured in your project's makefile or on the command line, but was set to a value other than a Y (for "Yes") or "N" (for "No").
908 * This configuration option is required to be one of the aformentioned boolean values, and other values are invalid. Set this option to either Y or N and try again.</td>
909 * </tr>
910 * <tr>
911 * <td>Error &quot;<b><tt>Unknown input source file formats: <i>{X}</i></tt></b>&quot; shown when compiling.</td>
912 * <td>The nominated source files, specified in your project's makefile in the <tt>SRC</tt> configuration option, has an extension that the LUFA build system does not
913 * recognise. The file extensions are case sensitive, and must be one of the supported formats (<tt>*.c</tt>, <tt>*.cpp</tt> or <tt>*.S</tt>).</td>
914 * </tr>
915 * <tr>
916 * <td>Error &quot;<b><tt>Cannot build with OBJDIR parameter set - one or more object file name is not unique</tt></b>&quot; shown when compiling.</td>
917 * <td>When a project is built with a non-empty <tt>OBJDIR</tt> object directory name set, all input source files must have unique names, excluding extension and path.
918 * This means that input files that are named identically and differ only by their path or extension are invalid when this mode is used.</td>
919 * </tr>
920 * <tr>
921 * <td>Error &quot;<b><tt>Source file does not exist: <i>{X}</i></tt></b>&quot; shown when compiling.</td>
922 * <td>The nominated input source file, specified in the user project's <tt>SRC</tt> parameter, could not be found. Ensure the source file exists and the absolute or
923 * relative path given in the user project makefile is correct and try again.</td>
924 * </tr>
925 * <tr>
926 * <td>Error &quot;<b><tt>Doxygen configuration file <i>{X}</i> does not exist</tt></b>&quot; shown when upgrading a Doxygen configuration file.</td>
927 * <td>The nominated Doxygen configuration file, specified in the user project's <tt>DOXYGEN_CONF</tt> parameter, could not be found. Ensure the configuration file exists
928 * and the absolute or relative path given in the user project makefile is correct and try again, or run the appropriate makefile target to generate a new configuration
929 * file.</td>
930 * </tr>
931 * <tr>
932 * <td>Error &quot;<b><tt>avr-gcc: error: unrecognized option '<i>{X}</i>'</tt></b>&quot; shown when compiling.</td>
933 * <td>An unrecognised option was supplied to the compiler, usually in the <tt>C_FLAGS</tt>, <tt>CPP_FLAGS</tt>, <tt>ASM_FLAGS</tt> or <tt>CC_FLAGS</tt> configuration
934 * options. The nominated compiler switch may be invalid, or unsupported by the version of AVR-GCC on the host system. Remove the unrecognised flag if invalid, or
935 * upgrade to the latest AVR-GCC. If the option is a valid linker option, use the prefix "-Wl," to ensure it is passed to the linker correctly.</td>
936 * </tr>
937 * <tr>
938 * <td>Error &quot;<b><tt>avr-gcc: error: unrecognized option '<i>{X}</i>'</tt></b>&quot; shown when compiling.</td>
939 * <td>An unrecognised option was supplied to the compiler, usually in the <tt>C_FLAGS</tt>, <tt>CPP_FLAGS</tt>, <tt>ASM_FLAGS</tt> or <tt>CC_FLAGS</tt> configuration
940 * options. The nominated compiler switch may be invalid, or unsupported by the version of AVR-GCC on the host system. Remove the unrecognised flag if invalid, or
941 * upgrade to the latest AVR-GCC. If the option is a valid linker option, use the prefix "-Wl," to ensure it is passed to the linker correctly.</td>
942 * </tr>
943 * <tr>
944 * <td>Error &quot;<b><tt>makefile:{X}: {Y}.mk: No such file or directory</tt></b>&quot; shown when make is invoked.</td>
945 * <td>The path to the nominated makefile module was incorrect. This usually indicates that the makefile <tt>LUFA_PATH</tt> option is not set to a valid relative or
946 * absolute path to the LUFA library core.</td>
947 * </tr>
948 * <tr>
949 * <td>Error &quot;<b><tt>makefile:{X}: {Y}.mk: No such file or directory</tt></b>&quot; shown when make is invoked.</td>
950 * <td>The path to the nominated makefile module was incorrect. This usually indicates that the makefile <tt>LUFA_PATH</tt> option is not set to a valid relative or
951 * absolute path to the LUFA library core.</td>
952 * </tr>
953 * <tr>
954 * <td>Error &quot;<b><tt>fatal error: LUFAConfig.h: No such file or directory</tt></b>&quot; shown when compiling.</td>
955 * <td>The <tt>USE_LUFA_CONFIG_HEADER</tt> compile time option was set in the user project makefile, but the user supplied <tt>LUFAConfig.h</tt> header could not be
956 * found. Ensure that the directory that contains this configuration file is correctly passed to the compiler via the -I switch in the makefile <tt>CC_FLAGS</tt>
957 * parameter.</td>
958 * </tr>
959 * <tr>
960 * <td>Error &quot;<b><tt>ld.exe: section .apitable_trampolines loaded at <i>{X}</i> overlaps section .text</tt></b>&quot; shown when compiling a bootloader.</td>
961 * <td>The bootloader is compiling too large for the given <tt>FLASH_SIZE_KB</tt> and <tt>BOOT_SECTION_SIZE_KB</tt> parameters set in the bootloader makefile. This
962 * usually indicates that these values are incorrect for the specified device the bootloader is targeting. If these values are correct, a newer version of the
963 * compiler may need to be used to ensure that the bootloader is built within the section size constraints of the target device.</td>
964 * </tr>
965 * <tr>
966 * <td>Error &quot;<b><tt>unknown MCU '<i>{X}</i>' specified</tt></b>&quot; shown when compiling.</td>
967 * <td>The specified micocontroller device model name set in the user application's makefile as the <tt>MCU</tt> parameter is incorrect, or unsupported by the
968 * version of the compiler being used. Make sure the model name is correct, or upgrade to the latest Atmel Toolchain to obtain newer device support.</td>
969 * </tr>
970 * <tr>
971 * <td>Error &quot;<b><tt>error: invalid suffix "x" on integer constant</tt></b>&quot; shown when compiling a bootloader.</td>
972 * <td>This is usually caused by the <tt>bc.exe</tt> application not being found in the system's <tt>PATH</tt> variable. Make sure you have the <tt>bc.exe</tt> tool
973 * installed correctly (see \ref Sec_Prerequisites).</td>
974 * </tr>
975 * <tr>
976 * <td>Error &quot;<b><tt>undefined reference to `<i>{X}</i>'</tt></b>&quot; shown when compiling.</td>
977 * <td>This is usually caused by a missing source file in the user application's <tt>SRC</tt> configuration parameter. If the indicated symbol is one from the LUFA
978 * library, you may be missing a LUFA source makefile module (see \ref Page_BuildModule_SOURCES).</td>
979 * </tr>
980 * </table>
981 *
982 * For troubleshooting other errors you encounter, please see \ref Sec_ProjectHelp.
983 */