]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_ATSAM3X_Atmel_Studio/src/asf/sam/utils/header_files/io.h
Add SAM3X-EK demo.
[freertos] / FreeRTOS / Demo / CORTEX_ATSAM3X_Atmel_Studio / src / asf / sam / utils / header_files / io.h
1 /**\r
2  * \file\r
3  *\r
4  * \brief Arch file for SAM.\r
5  *\r
6  * This file defines common SAM series.\r
7  *\r
8  * Copyright (c) 2011 Atmel Corporation. All rights reserved.\r
9  *\r
10  * \asf_license_start\r
11  *\r
12  * \page License\r
13  *\r
14  * Redistribution and use in source and binary forms, with or without\r
15  * modification, are permitted provided that the following conditions are met:\r
16  *\r
17  * 1. Redistributions of source code must retain the above copyright notice,\r
18  *    this list of conditions and the following disclaimer.\r
19  *\r
20  * 2. Redistributions in binary form must reproduce the above copyright notice,\r
21  *    this list of conditions and the following disclaimer in the documentation\r
22  *    and/or other materials provided with the distribution.\r
23  *\r
24  * 3. The name of Atmel may not be used to endorse or promote products derived\r
25  *    from this software without specific prior written permission.\r
26  *\r
27  * 4. This software may only be redistributed and used in connection with an\r
28  *    Atmel microcontroller product.\r
29  *\r
30  * THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED\r
31  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\r
32  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE\r
33  * EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR\r
34  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r
35  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\r
36  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
37  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\r
38  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\r
39  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
40  * POSSIBILITY OF SUCH DAMAGE.\r
41  *\r
42  * \asf_license_stop\r
43  *\r
44  */\r
45 \r
46 #ifndef _SAM_IO_\r
47 #define _SAM_IO_\r
48 \r
49 /* SAM3 family */\r
50 \r
51 /* SAM3S series */\r
52 #if (SAM3S)\r
53 # if (SAM3S8 || SAM3SD8)\r
54 #  include "sam3s8.h"\r
55 # else\r
56 #  include "sam3s.h"\r
57 # endif\r
58 #endif\r
59 \r
60 /* SAM3U series */\r
61 #if (SAM3U)\r
62 #  include "sam3u.h"\r
63 #endif\r
64 \r
65 /* SAM3N series */\r
66 #if (SAM3N)\r
67 #  include "sam3n.h"\r
68 #endif\r
69 \r
70 /* SAM3XA series */\r
71 #if (SAM3XA)\r
72 #  include "sam3xa.h"\r
73 #endif\r
74 \r
75 /* SAM4S series */\r
76 #if (SAM4S)\r
77 #  include "sam4s.h"\r
78 #endif\r
79 \r
80 #endif /* _SAM_IO_ */\r