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