1 |
589 |
jeremybenn |
/*This file is prepared for Doxygen automatic documentation generation.*/
|
2 |
|
|
/*! \file *********************************************************************
|
3 |
|
|
*
|
4 |
|
|
* \brief Standard board header file.
|
5 |
|
|
*
|
6 |
|
|
* This file includes the appropriate board header file according to the
|
7 |
|
|
* defined board.
|
8 |
|
|
*
|
9 |
|
|
* - Compiler: IAR EWAVR32 and GNU GCC for AVR32
|
10 |
|
|
* - Supported devices: All AVR32 devices can be used.
|
11 |
|
|
* - AppNote:
|
12 |
|
|
*
|
13 |
|
|
* \author Atmel Corporation: http://www.atmel.com \n
|
14 |
|
|
* Support and FAQ: http://support.atmel.no/
|
15 |
|
|
*
|
16 |
|
|
******************************************************************************/
|
17 |
|
|
|
18 |
|
|
/* Copyright (c) 2007, Atmel Corporation All rights reserved.
|
19 |
|
|
*
|
20 |
|
|
* Redistribution and use in source and binary forms, with or without
|
21 |
|
|
* modification, are permitted provided that the following conditions are met:
|
22 |
|
|
*
|
23 |
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
24 |
|
|
* this list of conditions and the following disclaimer.
|
25 |
|
|
*
|
26 |
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
27 |
|
|
* this list of conditions and the following disclaimer in the documentation
|
28 |
|
|
* and/or other materials provided with the distribution.
|
29 |
|
|
*
|
30 |
|
|
* 3. The name of ATMEL may not be used to endorse or promote products derived
|
31 |
|
|
* from this software without specific prior written permission.
|
32 |
|
|
*
|
33 |
|
|
* THIS SOFTWARE IS PROVIDED BY ATMEL ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
34 |
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
35 |
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY AND
|
36 |
|
|
* SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT,
|
37 |
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
38 |
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
39 |
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
40 |
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
41 |
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
42 |
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
43 |
|
|
*/
|
44 |
|
|
|
45 |
|
|
|
46 |
|
|
#ifndef _BOARD_H_
|
47 |
|
|
#define _BOARD_H_
|
48 |
|
|
|
49 |
|
|
#include <avr32/io.h>
|
50 |
|
|
|
51 |
|
|
/*! \name Base Boards
|
52 |
|
|
*/
|
53 |
|
|
//! @{
|
54 |
|
|
#define EVK1100 1 //!< AT32UC3A EVK1100 board.
|
55 |
|
|
#define EVK1101 2 //!< AT32UC3B EVK1101 board.
|
56 |
|
|
//! @}
|
57 |
|
|
|
58 |
|
|
/*! \name Extension Boards
|
59 |
|
|
*/
|
60 |
|
|
//! @{
|
61 |
|
|
#define EXT1102 1 //!< AT32UC3B EXT1102 board.
|
62 |
|
|
//! @}
|
63 |
|
|
|
64 |
|
|
#if BOARD == EVK1100
|
65 |
|
|
# include "EVK1100/evk1100.h"
|
66 |
|
|
#elif BOARD == EVK1101
|
67 |
|
|
# include "EVK1101/evk1101.h"
|
68 |
|
|
#else
|
69 |
|
|
# error No known AVR32 board defined
|
70 |
|
|
#endif
|
71 |
|
|
|
72 |
|
|
#if EXT_BOARD == EXT1102
|
73 |
|
|
# include "EXT1102/ext1102.h"
|
74 |
|
|
#endif
|
75 |
|
|
|
76 |
|
|
|
77 |
|
|
#ifndef FRCOSC
|
78 |
|
|
# define FRCOSC AVR32_PM_RCOSC_FREQUENCY //!< Default RCOsc frequency.
|
79 |
|
|
#endif
|
80 |
|
|
|
81 |
|
|
|
82 |
|
|
#endif // _BOARD_H_
|