]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_M7_SAME70_Xplained_AtmelStudio/src/ASF/sam/utils/header_files/io.h
Rename DummyTCB_t to StaticTCB_t.
[freertos] / FreeRTOS / Demo / CORTEX_M7_SAME70_Xplained_AtmelStudio / 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-2015 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  * Support and FAQ: visit <a href="http://www.atmel.com/design-support/">Atmel Support</a>\r
47  */\r
48 \r
49 #ifndef _SAM_IO_\r
50 #define _SAM_IO_\r
51 \r
52 /* SAM3 family */\r
53 \r
54 /* SAM3S series */\r
55 #if (SAM3S)\r
56 # if (SAM3S8 || SAM3SD8)\r
57 #  include "sam3s8.h"\r
58 # else\r
59 #  include "sam3s.h"\r
60 # endif\r
61 #endif\r
62 \r
63 /* SAM3U series */\r
64 #if (SAM3U)\r
65 #  include "sam3u.h"\r
66 #endif\r
67 \r
68 /* SAM3N series */\r
69 #if (SAM3N)\r
70 #  include "sam3n.h"\r
71 #endif\r
72 \r
73 /* SAM3XA series */\r
74 #if (SAM3XA)\r
75 #  include "sam3xa.h"\r
76 #endif\r
77 \r
78 /* SAM4S series */\r
79 #if (SAM4S)\r
80 #  include "sam4s.h"\r
81 #endif\r
82 \r
83 /* SAM4L series */\r
84 #if (SAM4L)\r
85 #  include "sam4l.h"\r
86 #endif\r
87 \r
88 /* SAM4E series */\r
89 #if (SAM4E)\r
90 #  include "sam4e.h"\r
91 #endif\r
92 \r
93 /* SAM4N series */\r
94 #if (SAM4N)\r
95 #  include "sam4n.h"\r
96 #endif\r
97 \r
98 /* SAM4C series */\r
99 #if (SAM4C)\r
100 #  include "sam4c.h"\r
101 #endif\r
102 \r
103 /* SAM4CM series */\r
104 #if (SAM4CM)\r
105 #  if (SAM4CMP32 || SAM4CMS32)\r
106 #    include "sam4cm32.h"\r
107 #  else\r
108 #    include "sam4cm.h"\r
109 #  endif\r
110 #endif\r
111 \r
112 /* SAM4CP series */\r
113 #if (SAM4CP)\r
114 #  include "sam4cp.h"\r
115 #endif\r
116 \r
117 /* SAMG51 series */\r
118 #if (SAMG51)\r
119 #  include "samg51.h"\r
120 #endif\r
121 \r
122 /* SAMG53 series */\r
123 #if (SAMG53)\r
124 #  include "samg53.h"\r
125 #endif\r
126 \r
127 /* SAMG54 series */\r
128 #if (SAMG54)\r
129 #  include "samg54.h"\r
130 #endif\r
131 \r
132 /* SAMG55 series */\r
133 #if (SAMG55)\r
134 #  include "samg55.h"\r
135 #endif\r
136 \r
137 /* SAMV71 series */\r
138 #if (SAMV71)\r
139 #  include "samv71.h"\r
140 #endif\r
141 \r
142 /* SAMV70 series */\r
143 #if (SAMV70)\r
144 #  include "samv70.h"\r
145 #endif\r
146 \r
147 /* SAME70 series */\r
148 #if (SAME70)\r
149 #  include "same70.h"\r
150 #endif\r
151 \r
152 /* SAMS70 series */\r
153 #if (SAMS70)\r
154 #  include "sams70.h"\r
155 #endif\r
156 \r
157 #endif /* _SAM_IO_ */\r