ADC/                                      : the name of the controller is usually used as the directory name.
|-- adc.c                                 : the implementation of the software driver API.
|-- adc.h                                 : the software driver API.
|-- readme.html                           : the documentation entry point for this module.
|
|-- EXAMPLE                               : the EXAMPLE directory holds one example of usage of this software driver API.
|   |
|   |-- AT32UC3A0512_EVK1100              : this directory holds the AT32UC3A0512 build files for the EVK1100 board.
|   |   |-- doxyfile.doxygen              : the doxygen configuration file for documentation
|   |   |-- GCC                           : this directory contains gcc-specific files.
|   |   |   |-- Makefile                  : gcc make makefile.
|   |   |   |-- uc3a0512-adc_example.elf  : target downloadable elf file. Use avr32program (and JTAG-ICE MKII) or batchisp (and USB bootloader).
|   |   |   |-- config.mk                 : make configuration file(included by Makefile), contains the list of src files and compilation/link options
|   |   |   `-- gdb_cmdfile.txt           : configuration file for the avr32-gdb program
|   |   |                                   (Usage: avr32-gdb -x gdb_cmdfile.txt or ddd -debugger avr32-gdb --command=gdb_cmdfile.txt)
|   |   |
|   |   `-- IAR                           : this directory holds IAR-specific files.
|   |       |-- adc_example.ewd           : IAR EWAVR32 debug configuration file.
|   |       |-- adc_example.ewp           : IAR EWAVR32 project file.
|   |       `-- adc_example.eww           : IAR EWAVR32 workspace file.
|   |
|   |-- AT32UC3B0256_EVK1101              : this directory holds the AT32UC3B0256 build files for the EVK1101 board.
|   |   |-- doxyfile.doxygen              : the doxygen configuration file for documentation
|   |   |-- GCC                           : this directory contains gcc-specific files.
|   |   |   |-- Makefile                  : gcc make makefile.
|   |   |   |-- uc3b0256-adc_example.elf  : target downloadable elf file. Use avr32program (and JTAG-ICE MKII) or batchisp (and USB bootloader).
|   |   |   |-- config.mk                 : make configuration file(included by Makefile), contains the list of src files and compilation/link options
|   |   |   `-- gdb_cmdfile.txt           : configuration file for the avr32-gdb program
|   |   |                                   (Usage: avr32-gdb -x gdb_cmdfile.txt or ddd -debugger avr32-gdb --command=gdb_cmdfile.txt)
|   |   |
|   |   `-- IAR                           : this directory holds IAR-specific files.
|   |       |-- adc_example.ewd           : IAR EWAVR32 debug configuration file.
|   |       |-- adc_example.ewp           : IAR EWAVR32 project file.
|   |       `-- adc_example.eww           : IAR EWAVR32 workspace file.
|   |
|   |-- AT32UC3A3256_EVK1104              : this directory holds the AT32UC3A3256 build files for the EVK1104 board.
|   |   |-- doxyfile.doxygen              : the doxygen configuration file for documentation
|   |   |-- GCC                           : this directory contains gcc-specific files.
|   |   |   |-- Makefile                  : gcc make makefile.
|   |   |   |-- uc3a3256-adc_example.elf  : target downloadable elf file. Use avr32program (and JTAG-ICE MKII) or batchisp (and USB bootloader).
|   |   |   |-- config.mk                 : make configuration file(included by Makefile), contains the list of src files and compilation/link options
|   |   |   `-- gdb_cmdfile.txt           : configuration file for the avr32-gdb program
|   |   |                                   (Usage: avr32-gdb -x gdb_cmdfile.txt or ddd -debugger avr32-gdb --command=gdb_cmdfile.txt)
|   |   |
|   |   `-- IAR                           : this directory holds IAR-specific files.
|   |       |-- adc_example.ewd           : IAR EWAVR32 debug configuration file.
|   |       |-- adc_example.ewp           : IAR EWAVR32 project file.
|   |       `-- adc_example.eww           : IAR EWAVR32 workspace file.
|   |
|   |-- DOC                               : this directory holds all automatically-generated documentation.
|   |   |-- html
|   |   |-- ...
|   |   `...
|   |
|   |-- adc_example.c                     : the implementation of the example.
|   `-- readme.html                       : the entry point of all automatically-generated documentation.
`.
