AVR Libc Home Page AVRs AVR Libc Development Pages
Main Page User Manual Library Reference FAQ Alphabetical Index Example Projects

io.h
Go to the documentation of this file.
1 /* Copyright (c) 2002,2003,2005,2006,2007 Marek Michalkiewicz, Joerg Wunsch
2  Copyright (c) 2007 Eric B. Weddington
3  All rights reserved.
4 
5  Redistribution and use in source and binary forms, with or without
6  modification, are permitted provided that the following conditions are met:
7 
8  * Redistributions of source code must retain the above copyright
9  notice, this list of conditions and the following disclaimer.
10 
11  * Redistributions in binary form must reproduce the above copyright
12  notice, this list of conditions and the following disclaimer in
13  the documentation and/or other materials provided with the
14  distribution.
15 
16  * Neither the name of the copyright holders nor the names of
17  contributors may be used to endorse or promote products derived
18  from this software without specific prior written permission.
19 
20  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  POSSIBILITY OF SUCH DAMAGE. */
31 
32 /* $Id: io.h 2442 2014-08-11 21:42:11Z joerg_wunsch $ */
33 
34 /** \file */
35 /** \defgroup avr_io <avr/io.h>: AVR device-specific IO definitions
36  \code #include <avr/io.h> \endcode
37 
38  This header file includes the apropriate IO definitions for the
39  device that has been specified by the <tt>-mmcu=</tt> compiler
40  command-line switch. This is done by diverting to the appropriate
41  file <tt>&lt;avr/io</tt><em>XXXX</em><tt>.h&gt;</tt> which should
42  never be included directly. Some register names common to all
43  AVR devices are defined directly within <tt>&lt;avr/common.h&gt;</tt>,
44  which is included in <tt>&lt;avr/io.h&gt;</tt>,
45  but most of the details come from the respective include file.
46 
47  Note that this file always includes the following files:
48  \code
49  #include <avr/sfr_defs.h>
50  #include <avr/portpins.h>
51  #include <avr/common.h>
52  #include <avr/version.h>
53  \endcode
54  See \ref avr_sfr for more details about that header file.
55 
56  Included are definitions of the IO register set and their
57  respective bit values as specified in the Atmel documentation.
58  Note that inconsistencies in naming conventions,
59  so even identical functions sometimes get different names on
60  different devices.
61 
62  Also included are the specific names useable for interrupt
63  function definitions as documented
64  \ref avr_signames "here".
65 
66  Finally, the following macros are defined:
67 
68  - \b RAMEND
69  <br>
70  The last on-chip RAM address.
71  <br>
72  - \b XRAMEND
73  <br>
74  The last possible RAM location that is addressable. This is equal to
75  RAMEND for devices that do not allow for external RAM. For devices
76  that allow external RAM, this will be larger than RAMEND.
77  <br>
78  - \b E2END
79  <br>
80  The last EEPROM address.
81  <br>
82  - \b FLASHEND
83  <br>
84  The last byte address in the Flash program space.
85  <br>
86  - \b SPM_PAGESIZE
87  <br>
88  For devices with bootloader support, the flash pagesize
89  (in bytes) to be used for the \c SPM instruction.
90  - \b E2PAGESIZE
91  <br>
92  The size of the EEPROM page.
93 
94 */
95 
96 #ifndef _AVR_IO_H_
97 #define _AVR_IO_H_
98 
99 #include <avr/sfr_defs.h>
100 
101 #if defined (__AVR_AT94K__)
102 # include <avr/ioat94k.h>
103 #elif defined (__AVR_AT43USB320__)
104 # include <avr/io43u32x.h>
105 #elif defined (__AVR_AT43USB355__)
106 # include <avr/io43u35x.h>
107 #elif defined (__AVR_AT76C711__)
108 # include <avr/io76c711.h>
109 #elif defined (__AVR_AT86RF401__)
110 # include <avr/io86r401.h>
111 #elif defined (__AVR_AT90PWM1__)
112 # include <avr/io90pwm1.h>
113 #elif defined (__AVR_AT90PWM2__)
114 # include <avr/io90pwmx.h>
115 #elif defined (__AVR_AT90PWM2B__)
116 # include <avr/io90pwm2b.h>
117 #elif defined (__AVR_AT90PWM3__)
118 # include <avr/io90pwmx.h>
119 #elif defined (__AVR_AT90PWM3B__)
120 # include <avr/io90pwm3b.h>
121 #elif defined (__AVR_AT90PWM216__)
122 # include <avr/io90pwm216.h>
123 #elif defined (__AVR_AT90PWM316__)
124 # include <avr/io90pwm316.h>
125 #elif defined (__AVR_AT90PWM161__)
126 # include <avr/io90pwm161.h>
127 #elif defined (__AVR_AT90PWM81__)
128 # include <avr/io90pwm81.h>
129 #elif defined (__AVR_ATmega8U2__)
130 # include <avr/iom8u2.h>
131 #elif defined (__AVR_ATmega16M1__)
132 # include <avr/iom16m1.h>
133 #elif defined (__AVR_ATmega16U2__)
134 # include <avr/iom16u2.h>
135 #elif defined (__AVR_ATmega16U4__)
136 # include <avr/iom16u4.h>
137 #elif defined (__AVR_ATmega32C1__)
138 # include <avr/iom32c1.h>
139 #elif defined (__AVR_ATmega32M1__)
140 # include <avr/iom32m1.h>
141 #elif defined (__AVR_ATmega32U2__)
142 # include <avr/iom32u2.h>
143 #elif defined (__AVR_ATmega32U4__)
144 # include <avr/iom32u4.h>
145 #elif defined (__AVR_ATmega32U6__)
146 # include <avr/iom32u6.h>
147 #elif defined (__AVR_ATmega64C1__)
148 # include <avr/iom64c1.h>
149 #elif defined (__AVR_ATmega64M1__)
150 # include <avr/iom64m1.h>
151 #elif defined (__AVR_ATmega128__)
152 # include <avr/iom128.h>
153 #elif defined (__AVR_ATmega128A__)
154 # include <avr/iom128a.h>
155 #elif defined (__AVR_ATmega1280__)
156 # include <avr/iom1280.h>
157 #elif defined (__AVR_ATmega1281__)
158 # include <avr/iom1281.h>
159 #elif defined (__AVR_ATmega1284__)
160 # include <avr/iom1284.h>
161 #elif defined (__AVR_ATmega1284P__)
162 # include <avr/iom1284p.h>
163 #elif defined (__AVR_ATmega128RFA1__)
164 # include <avr/iom128rfa1.h>
165 #elif defined (__AVR_ATmega1284RFR2__)
166 # include <avr/iom1284rfr2.h>
167 #elif defined (__AVR_ATmega128RFR2__)
168 # include <avr/iom128rfr2.h>
169 #elif defined (__AVR_ATmega2564RFR2__)
170 # include <avr/iom2564rfr2.h>
171 #elif defined (__AVR_ATmega256RFR2__)
172 # include <avr/iom256rfr2.h>
173 #elif defined (__AVR_ATmega2560__)
174 # include <avr/iom2560.h>
175 #elif defined (__AVR_ATmega2561__)
176 # include <avr/iom2561.h>
177 #elif defined (__AVR_AT90CAN32__)
178 # include <avr/iocan32.h>
179 #elif defined (__AVR_AT90CAN64__)
180 # include <avr/iocan64.h>
181 #elif defined (__AVR_AT90CAN128__)
182 # include <avr/iocan128.h>
183 #elif defined (__AVR_AT90USB82__)
184 # include <avr/iousb82.h>
185 #elif defined (__AVR_AT90USB162__)
186 # include <avr/iousb162.h>
187 #elif defined (__AVR_AT90USB646__)
188 # include <avr/iousb646.h>
189 #elif defined (__AVR_AT90USB647__)
190 # include <avr/iousb647.h>
191 #elif defined (__AVR_AT90USB1286__)
192 # include <avr/iousb1286.h>
193 #elif defined (__AVR_AT90USB1287__)
194 # include <avr/iousb1287.h>
195 #elif defined (__AVR_ATmega644RFR2__)
196 # include <avr/iom644rfr2.h>
197 #elif defined (__AVR_ATmega64RFR2__)
198 # include <avr/iom64rfr2.h>
199 #elif defined (__AVR_ATmega64__)
200 # include <avr/iom64.h>
201 #elif defined (__AVR_ATmega64A__)
202 # include <avr/iom64a.h>
203 #elif defined (__AVR_ATmega640__)
204 # include <avr/iom640.h>
205 #elif defined (__AVR_ATmega644__) || defined (__AVR_ATmega644A__)
206 # include <avr/iom644.h>
207 #elif defined (__AVR_ATmega644P__)
208 # include <avr/iom644p.h>
209 #elif defined (__AVR_ATmega644PA__)
210 # include <avr/iom644pa.h>
211 #elif defined (__AVR_ATmega645__) || defined (__AVR_ATmega645A__) || defined (__AVR_ATmega645P__)
212 # include <avr/iom645.h>
213 #elif defined (__AVR_ATmega6450__) || defined (__AVR_ATmega6450A__) || defined (__AVR_ATmega6450P__)
214 # include <avr/iom6450.h>
215 #elif defined (__AVR_ATmega649__) || defined (__AVR_ATmega649A__)
216 # include <avr/iom649.h>
217 #elif defined (__AVR_ATmega6490__) || defined (__AVR_ATmega6490A__) || defined (__AVR_ATmega6490P__)
218 # include <avr/iom6490.h>
219 #elif defined (__AVR_ATmega649P__)
220 # include <avr/iom649p.h>
221 #elif defined (__AVR_ATmega64HVE__)
222 # include <avr/iom64hve.h>
223 #elif defined (__AVR_ATmega103__)
224 # include <avr/iom103.h>
225 #elif defined (__AVR_ATmega32__)
226 # include <avr/iom32.h>
227 #elif defined (__AVR_ATmega32A__)
228 # include <avr/iom32a.h>
229 #elif defined (__AVR_ATmega323__)
230 # include <avr/iom323.h>
231 #elif defined (__AVR_ATmega324P__) || defined (__AVR_ATmega324A__)
232 # include <avr/iom324.h>
233 #elif defined (__AVR_ATmega324PA__)
234 # include <avr/iom324pa.h>
235 #elif defined (__AVR_ATmega325__) || defined (__AVR_ATmega325A__)
236 # include <avr/iom325.h>
237 #elif defined (__AVR_ATmega325P__)
238 # include <avr/iom325.h>
239 #elif defined (__AVR_ATmega325PA__)
240 # include <avr/iom325pa.h>
241 #elif defined (__AVR_ATmega3250__) || defined (__AVR_ATmega3250A__)
242 # include <avr/iom3250.h>
243 #elif defined (__AVR_ATmega3250P__)
244 # include <avr/iom3250.h>
245 #elif defined (__AVR_ATmega3250PA__)
246 # include <avr/iom3250pa.h>
247 #elif defined (__AVR_ATmega328P__) || defined (__AVR_ATmega328__)
248 # include <avr/iom328p.h>
249 #elif defined (__AVR_ATmega329__) || defined (__AVR_ATmega329A__)
250 # include <avr/iom329.h>
251 #elif defined (__AVR_ATmega329P__) || defined (__AVR_ATmega329PA__)
252 # include <avr/iom329.h>
253 #elif defined (__AVR_ATmega3290__) || defined (__AVR_ATmega3290A__)
254 # include <avr/iom3290.h>
255 #elif defined (__AVR_ATmega3290P__)
256 # include <avr/iom3290.h>
257 #elif defined (__AVR_ATmega3290PA__)
258 # include <avr/iom3290pa.h>
259 #elif defined (__AVR_ATmega32HVB__)
260 # include <avr/iom32hvb.h>
261 #elif defined (__AVR_ATmega32HVBREVB__)
262 # include <avr/iom32hvbrevb.h>
263 #elif defined (__AVR_ATmega406__)
264 # include <avr/iom406.h>
265 #elif defined (__AVR_ATmega16__)
266 # include <avr/iom16.h>
267 #elif defined (__AVR_ATmega16A__)
268 # include <avr/iom16a.h>
269 #elif defined (__AVR_ATmega161__)
270 # include <avr/iom161.h>
271 #elif defined (__AVR_ATmega162__)
272 # include <avr/iom162.h>
273 #elif defined (__AVR_ATmega163__)
274 # include <avr/iom163.h>
275 #elif defined (__AVR_ATmega164P__) || defined (__AVR_ATmega164A__)
276 # include <avr/iom164.h>
277 #elif defined (__AVR_ATmega164PA__)
278 # include <avr/iom164pa.h>
279 #elif defined (__AVR_ATmega165__)
280 # include <avr/iom165.h>
281 #elif defined (__AVR_ATmega165A__)
282 # include <avr/iom165a.h>
283 #elif defined (__AVR_ATmega165P__)
284 # include <avr/iom165p.h>
285 #elif defined (__AVR_ATmega165PA__)
286 # include <avr/iom165pa.h>
287 #elif defined (__AVR_ATmega168__) || defined (__AVR_ATmega168A__)
288 # include <avr/iom168.h>
289 #elif defined (__AVR_ATmega168P__)
290 # include <avr/iom168p.h>
291 #elif defined (__AVR_ATmega168PA__)
292 # include <avr/iom168pa.h>
293 #elif defined (__AVR_ATmega169__) || defined (__AVR_ATmega169A__)
294 # include <avr/iom169.h>
295 #elif defined (__AVR_ATmega169P__)
296 # include <avr/iom169p.h>
297 #elif defined (__AVR_ATmega169PA__)
298 # include <avr/iom169pa.h>
299 #elif defined (__AVR_ATmega8HVA__)
300 # include <avr/iom8hva.h>
301 #elif defined (__AVR_ATmega16HVA__)
302 # include <avr/iom16hva.h>
303 #elif defined (__AVR_ATmega16HVA2__)
304 # include <avr/iom16hva2.h>
305 #elif defined (__AVR_ATmega16HVB__)
306 # include <avr/iom16hvb.h>
307 #elif defined (__AVR_ATmega16HVBREVB__)
308 # include <avr/iom16hvbrevb.h>
309 #elif defined (__AVR_ATmega8__)
310 # include <avr/iom8.h>
311 #elif defined (__AVR_ATmega8A__)
312 # include <avr/iom8a.h>
313 #elif defined (__AVR_ATmega48__) || defined (__AVR_ATmega48A__)
314 # include <avr/iom48.h>
315 #elif defined (__AVR_ATmega48PA__)
316 # include <avr/iom48pa.h>
317 #elif defined (__AVR_ATmega48P__)
318 # include <avr/iom48p.h>
319 #elif defined (__AVR_ATmega88__) || defined (__AVR_ATmega88A__)
320 # include <avr/iom88.h>
321 #elif defined (__AVR_ATmega88P__)
322 # include <avr/iom88p.h>
323 #elif defined (__AVR_ATmega88PA__)
324 # include <avr/iom88pa.h>
325 #elif defined (__AVR_ATmega8515__)
326 # include <avr/iom8515.h>
327 #elif defined (__AVR_ATmega8535__)
328 # include <avr/iom8535.h>
329 #elif defined (__AVR_AT90S8535__)
330 # include <avr/io8535.h>
331 #elif defined (__AVR_AT90C8534__)
332 # include <avr/io8534.h>
333 #elif defined (__AVR_AT90S8515__)
334 # include <avr/io8515.h>
335 #elif defined (__AVR_AT90S4434__)
336 # include <avr/io4434.h>
337 #elif defined (__AVR_AT90S4433__)
338 # include <avr/io4433.h>
339 #elif defined (__AVR_AT90S4414__)
340 # include <avr/io4414.h>
341 #elif defined (__AVR_ATtiny22__)
342 # include <avr/iotn22.h>
343 #elif defined (__AVR_ATtiny26__)
344 # include <avr/iotn26.h>
345 #elif defined (__AVR_AT90S2343__)
346 # include <avr/io2343.h>
347 #elif defined (__AVR_AT90S2333__)
348 # include <avr/io2333.h>
349 #elif defined (__AVR_AT90S2323__)
350 # include <avr/io2323.h>
351 #elif defined (__AVR_AT90S2313__)
352 # include <avr/io2313.h>
353 #elif defined (__AVR_ATtiny4__)
354 # include <avr/iotn4.h>
355 #elif defined (__AVR_ATtiny5__)
356 # include <avr/iotn5.h>
357 #elif defined (__AVR_ATtiny9__)
358 # include <avr/iotn9.h>
359 #elif defined (__AVR_ATtiny10__)
360 # include <avr/iotn10.h>
361 #elif defined (__AVR_ATtiny20__)
362 # include <avr/iotn20.h>
363 #elif defined (__AVR_ATtiny40__)
364 # include <avr/iotn40.h>
365 #elif defined (__AVR_ATtiny2313__)
366 # include <avr/iotn2313.h>
367 #elif defined (__AVR_ATtiny2313A__)
368 # include <avr/iotn2313a.h>
369 #elif defined (__AVR_ATtiny13__)
370 # include <avr/iotn13.h>
371 #elif defined (__AVR_ATtiny13A__)
372 # include <avr/iotn13a.h>
373 #elif defined (__AVR_ATtiny25__)
374 # include <avr/iotn25.h>
375 #elif defined (__AVR_ATtiny4313__)
376 # include <avr/iotn4313.h>
377 #elif defined (__AVR_ATtiny45__)
378 # include <avr/iotn45.h>
379 #elif defined (__AVR_ATtiny85__)
380 # include <avr/iotn85.h>
381 #elif defined (__AVR_ATtiny24__)
382 # include <avr/iotn24.h>
383 #elif defined (__AVR_ATtiny24A__)
384 # include <avr/iotn24a.h>
385 #elif defined (__AVR_ATtiny44__)
386 # include <avr/iotn44.h>
387 #elif defined (__AVR_ATtiny44A__)
388 # include <avr/iotn44a.h>
389 #elif defined (__AVR_ATtiny84__)
390 # include <avr/iotn84.h>
391 #elif defined (__AVR_ATtiny84A__)
392 # include <avr/iotn84a.h>
393 #elif defined (__AVR_ATtiny261__)
394 # include <avr/iotn261.h>
395 #elif defined (__AVR_ATtiny261A__)
396 # include <avr/iotn261a.h>
397 #elif defined (__AVR_ATtiny461__)
398 # include <avr/iotn461.h>
399 #elif defined (__AVR_ATtiny461A__)
400 # include <avr/iotn461a.h>
401 #elif defined (__AVR_ATtiny861__)
402 # include <avr/iotn861.h>
403 #elif defined (__AVR_ATtiny861A__)
404 # include <avr/iotn861a.h>
405 #elif defined (__AVR_ATtiny43U__)
406 # include <avr/iotn43u.h>
407 #elif defined (__AVR_ATtiny48__)
408 # include <avr/iotn48.h>
409 #elif defined (__AVR_ATtiny88__)
410 # include <avr/iotn88.h>
411 #elif defined (__AVR_ATtiny828__)
412 # include <avr/iotn828.h>
413 #elif defined (__AVR_ATtiny87__)
414 # include <avr/iotn87.h>
415 #elif defined (__AVR_ATtiny167__)
416 # include <avr/iotn167.h>
417 #elif defined (__AVR_ATtiny1634__)
418 # include <avr/iotn1634.h>
419 #elif defined (__AVR_AT90SCR100__)
420 # include <avr/io90scr100.h>
421 #elif defined (__AVR_ATxmega16A4__)
422 # include <avr/iox16a4.h>
423 #elif defined (__AVR_ATxmega16A4U__)
424 # include <avr/iox16a4u.h>
425 #elif defined (__AVR_ATxmega16C4__)
426 # include <avr/iox16c4.h>
427 #elif defined (__AVR_ATxmega16D4__)
428 # include <avr/iox16d4.h>
429 #elif defined (__AVR_ATxmega32A4__)
430 # include <avr/iox32a4.h>
431 #elif defined (__AVR_ATxmega32A4U__)
432 # include <avr/iox32a4u.h>
433 #elif defined (__AVR_ATxmega32C4__)
434 # include <avr/iox32c4.h>
435 #elif defined (__AVR_ATxmega32D4__)
436 # include <avr/iox32d4.h>
437 #elif defined (__AVR_ATxmega64A1__)
438 # include <avr/iox64a1.h>
439 #elif defined (__AVR_ATxmega64A1U__)
440 # include <avr/iox64a1u.h>
441 #elif defined (__AVR_ATxmega64A3__)
442 # include <avr/iox64a3.h>
443 #elif defined (__AVR_ATxmega64A3U__)
444 # include <avr/iox64a3u.h>
445 #elif defined (__AVR_ATxmega64A4U__)
446 # include <avr/iox64a4u.h>
447 #elif defined (__AVR_ATxmega64B1__)
448 # include <avr/iox64b1.h>
449 #elif defined (__AVR_ATxmega64B3__)
450 # include <avr/iox64b3.h>
451 #elif defined (__AVR_ATxmega64C3__)
452 # include <avr/iox64c3.h>
453 #elif defined (__AVR_ATxmega64D3__)
454 # include <avr/iox64d3.h>
455 #elif defined (__AVR_ATxmega64D4__)
456 # include <avr/iox64d4.h>
457 #elif defined (__AVR_ATxmega128A1__)
458 # include <avr/iox128a1.h>
459 #elif defined (__AVR_ATxmega128A1U__)
460 # include <avr/iox128a1u.h>
461 #elif defined (__AVR_ATxmega128A4U__)
462 # include <avr/iox128a4u.h>
463 #elif defined (__AVR_ATxmega128A3__)
464 # include <avr/iox128a3.h>
465 #elif defined (__AVR_ATxmega128A3U__)
466 # include <avr/iox128a3u.h>
467 #elif defined (__AVR_ATxmega128B1__)
468 # include <avr/iox128b1.h>
469 #elif defined (__AVR_ATxmega128B3__)
470 # include <avr/iox128b3.h>
471 #elif defined (__AVR_ATxmega128C3__)
472 # include <avr/iox128c3.h>
473 #elif defined (__AVR_ATxmega128D3__)
474 # include <avr/iox128d3.h>
475 #elif defined (__AVR_ATxmega128D4__)
476 # include <avr/iox128d4.h>
477 #elif defined (__AVR_ATxmega192A3__)
478 # include <avr/iox192a3.h>
479 #elif defined (__AVR_ATxmega192A3U__)
480 # include <avr/iox192a3u.h>
481 #elif defined (__AVR_ATxmega192C3__)
482 # include <avr/iox192c3.h>
483 #elif defined (__AVR_ATxmega192D3__)
484 # include <avr/iox192d3.h>
485 #elif defined (__AVR_ATxmega256A3__)
486 # include <avr/iox256a3.h>
487 #elif defined (__AVR_ATxmega256A3U__)
488 # include <avr/iox256a3u.h>
489 #elif defined (__AVR_ATxmega256A3B__)
490 # include <avr/iox256a3b.h>
491 #elif defined (__AVR_ATxmega256A3BU__)
492 # include <avr/iox256a3bu.h>
493 #elif defined (__AVR_ATxmega256C3__)
494 # include <avr/iox256c3.h>
495 #elif defined (__AVR_ATxmega256D3__)
496 # include <avr/iox256d3.h>
497 #elif defined (__AVR_ATxmega384C3__)
498 # include <avr/iox384c3.h>
499 #elif defined (__AVR_ATxmega384D3__)
500 # include <avr/iox384d3.h>
501 #elif defined (__AVR_ATA5790__)
502 # include <avr/ioa5790.h>
503 #elif defined (__AVR_ATA5272__)
504 # include <avr/ioa5272.h>
505 #elif defined (__AVR_ATA5505__)
506 # include <avr/ioa5505.h>
507 #elif defined (__AVR_ATA5795__)
508 # include <avr/ioa5795.h>
509 #elif defined (__AVR_ATA6285__)
510 # include <avr/ioa6285.h>
511 #elif defined (__AVR_ATA6286__)
512 # include <avr/ioa6286.h>
513 #elif defined (__AVR_ATA6289__)
514 # include <avr/ioa6289.h>
515 /* avr1: the following only supported for assembler programs */
516 #elif defined (__AVR_ATtiny28__)
517 # include <avr/iotn28.h>
518 #elif defined (__AVR_AT90S1200__)
519 # include <avr/io1200.h>
520 #elif defined (__AVR_ATtiny15__)
521 # include <avr/iotn15.h>
522 #elif defined (__AVR_ATtiny12__)
523 # include <avr/iotn12.h>
524 #elif defined (__AVR_ATtiny11__)
525 # include <avr/iotn11.h>
526 #elif defined (__AVR_M3000__)
527 # include <avr/iom3000.h>
528 #else
529 # if !defined(__COMPILING_AVR_LIBC__)
530 # warning "device type not defined"
531 # endif
532 #endif
533 
534 #include <avr/portpins.h>
535 
536 #include <avr/common.h>
537 
538 #include <avr/version.h>
539 
540 #if __AVR_ARCH__ >= 100
541 # include <avr/xmega.h>
542 #endif
543 
544 /* Include fuse.h after individual IO header files. */
545 #include <avr/fuse.h>
546 
547 /* Include lock.h after individual IO header files. */
548 #include <avr/lock.h>
549 
550 #endif /* _AVR_IO_H_ */

Automatically generated by Doxygen 1.8.7 on Tue Aug 12 2014.