TC/                                       : the name of the controller is usually used as the directory name.
|-- tc.c                                  : the implementation of the software driver API.
|-- tc.h                                  : the software driver API.
|-- readme.html                           : the documentation entry point for this module.
|
|-- EXAMPLE1                              : the EXAMPLE1 directory holds one example of usage of this software driver API.
|   |
|   |-- AT32AP7000_STK1000                : this directory holds the AT32AP7000 build files for the STK1000 board.
|   |   |-- doxyfile.doxygen              : the doxygen configuration file for documentation
|   |   |-- tc_example1.c                 : the implementation of the example.
|   |   |-- GCC                           : this directory contains gcc-specific files.
|   |   |   |-- Makefile                  : gcc make makefile.
|   |   |   |-- ap7000-tc_example1.elf    : target downloadable elf file. Use avr32program (and JTAG-ICE MKII).
|   |   |   |-- 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.
|   |       |-- tc_example.ewd            : IAR EWAVR32 debug configuration file.
|   |       |-- tc_example.ewp            : IAR EWAVR32 project file.
|   |       `-- tc_example.eww            : IAR EWAVR32 workspace file.
|   |
|   |-- DOC                               : this directory holds all automatically-generated documentation.
|   |   |-- html
|   |   |-- ...
|   |   `...
|   |
|   `-- readme.html                       : the entry point of all automatically-generated documentation.
`.
