arduino_ci 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +77 -1
- data/cpp/arduino/Arduino.cpp +17 -7
- data/cpp/arduino/Arduino.h +151 -5
- data/cpp/arduino/ArduinoDefines.h +90 -0
- data/cpp/arduino/AvrMath.h +18 -28
- data/cpp/arduino/Godmode.cpp +62 -0
- data/cpp/arduino/Godmode.h +74 -0
- data/cpp/arduino/HardwareSerial.h +81 -0
- data/cpp/arduino/Print.h +67 -0
- data/cpp/arduino/Stream.h +210 -0
- data/cpp/arduino/WCharacter.h +96 -0
- data/cpp/arduino/WString.h +164 -0
- data/cpp/arduino/binary.h +518 -0
- data/cpp/arduino/include/README.md +3 -0
- data/cpp/arduino/include/common.h +333 -0
- data/cpp/arduino/include/fuse.h +274 -0
- data/cpp/arduino/include/io.h +643 -0
- data/cpp/arduino/include/io1200.h +274 -0
- data/cpp/arduino/include/io2313.h +385 -0
- data/cpp/arduino/include/io2323.h +210 -0
- data/cpp/arduino/include/io2333.h +461 -0
- data/cpp/arduino/include/io2343.h +214 -0
- data/cpp/arduino/include/io43u32x.h +440 -0
- data/cpp/arduino/include/io43u35x.h +432 -0
- data/cpp/arduino/include/io4414.h +500 -0
- data/cpp/arduino/include/io4433.h +489 -0
- data/cpp/arduino/include/io4434.h +588 -0
- data/cpp/arduino/include/io76c711.h +499 -0
- data/cpp/arduino/include/io8515.h +501 -0
- data/cpp/arduino/include/io8534.h +217 -0
- data/cpp/arduino/include/io8535.h +589 -0
- data/cpp/arduino/include/io86r401.h +309 -0
- data/cpp/arduino/include/io90pwm1.h +1157 -0
- data/cpp/arduino/include/io90pwm161.h +918 -0
- data/cpp/arduino/include/io90pwm216.h +1225 -0
- data/cpp/arduino/include/io90pwm2b.h +1466 -0
- data/cpp/arduino/include/io90pwm316.h +1272 -0
- data/cpp/arduino/include/io90pwm3b.h +1466 -0
- data/cpp/arduino/include/io90pwm81.h +1036 -0
- data/cpp/arduino/include/io90pwmx.h +1415 -0
- data/cpp/arduino/include/io90scr100.h +1719 -0
- data/cpp/arduino/include/ioa5272.h +803 -0
- data/cpp/arduino/include/ioa5505.h +803 -0
- data/cpp/arduino/include/ioa5702m322.h +2591 -0
- data/cpp/arduino/include/ioa5782.h +1843 -0
- data/cpp/arduino/include/ioa5790.h +907 -0
- data/cpp/arduino/include/ioa5790n.h +922 -0
- data/cpp/arduino/include/ioa5791.h +923 -0
- data/cpp/arduino/include/ioa5795.h +756 -0
- data/cpp/arduino/include/ioa5831.h +1949 -0
- data/cpp/arduino/include/ioa6285.h +740 -0
- data/cpp/arduino/include/ioa6286.h +740 -0
- data/cpp/arduino/include/ioa6289.h +847 -0
- data/cpp/arduino/include/ioa6612c.h +795 -0
- data/cpp/arduino/include/ioa6613c.h +795 -0
- data/cpp/arduino/include/ioa6614q.h +798 -0
- data/cpp/arduino/include/ioa6616c.h +865 -0
- data/cpp/arduino/include/ioa6617c.h +865 -0
- data/cpp/arduino/include/ioa664251.h +857 -0
- data/cpp/arduino/include/ioa8210.h +1843 -0
- data/cpp/arduino/include/ioa8510.h +1949 -0
- data/cpp/arduino/include/ioat94k.h +565 -0
- data/cpp/arduino/include/iocan128.h +100 -0
- data/cpp/arduino/include/iocan32.h +100 -0
- data/cpp/arduino/include/iocan64.h +100 -0
- data/cpp/arduino/include/iocanxx.h +2020 -0
- data/cpp/arduino/include/iom103.h +735 -0
- data/cpp/arduino/include/iom128.h +1299 -0
- data/cpp/arduino/include/iom1280.h +101 -0
- data/cpp/arduino/include/iom1281.h +101 -0
- data/cpp/arduino/include/iom1284.h +1099 -0
- data/cpp/arduino/include/iom1284p.h +1219 -0
- data/cpp/arduino/include/iom1284rfr2.h +2690 -0
- data/cpp/arduino/include/iom128a.h +1070 -0
- data/cpp/arduino/include/iom128rfa1.h +5385 -0
- data/cpp/arduino/include/iom128rfr2.h +2706 -0
- data/cpp/arduino/include/iom16.h +676 -0
- data/cpp/arduino/include/iom161.h +726 -0
- data/cpp/arduino/include/iom162.h +1022 -0
- data/cpp/arduino/include/iom163.h +686 -0
- data/cpp/arduino/include/iom164.h +101 -0
- data/cpp/arduino/include/iom164a.h +34 -0
- data/cpp/arduino/include/iom164p.h +34 -0
- data/cpp/arduino/include/iom164pa.h +1016 -0
- data/cpp/arduino/include/iom165.h +887 -0
- data/cpp/arduino/include/iom165a.h +832 -0
- data/cpp/arduino/include/iom165p.h +889 -0
- data/cpp/arduino/include/iom165pa.h +948 -0
- data/cpp/arduino/include/iom168.h +97 -0
- data/cpp/arduino/include/iom168a.h +35 -0
- data/cpp/arduino/include/iom168p.h +942 -0
- data/cpp/arduino/include/iom168pa.h +843 -0
- data/cpp/arduino/include/iom168pb.h +899 -0
- data/cpp/arduino/include/iom169.h +1174 -0
- data/cpp/arduino/include/iom169a.h +44 -0
- data/cpp/arduino/include/iom169p.h +1097 -0
- data/cpp/arduino/include/iom169pa.h +1485 -0
- data/cpp/arduino/include/iom16a.h +923 -0
- data/cpp/arduino/include/iom16hva.h +80 -0
- data/cpp/arduino/include/iom16hva2.h +883 -0
- data/cpp/arduino/include/iom16hvb.h +1052 -0
- data/cpp/arduino/include/iom16hvbrevb.h +1052 -0
- data/cpp/arduino/include/iom16m1.h +1571 -0
- data/cpp/arduino/include/iom16u2.h +1000 -0
- data/cpp/arduino/include/iom16u4.h +1423 -0
- data/cpp/arduino/include/iom2560.h +101 -0
- data/cpp/arduino/include/iom2561.h +101 -0
- data/cpp/arduino/include/iom2564rfr2.h +2691 -0
- data/cpp/arduino/include/iom256rfr2.h +2707 -0
- data/cpp/arduino/include/iom3000.h +237 -0
- data/cpp/arduino/include/iom32.h +755 -0
- data/cpp/arduino/include/iom323.h +744 -0
- data/cpp/arduino/include/iom324a.h +1014 -0
- data/cpp/arduino/include/iom324p.h +1016 -0
- data/cpp/arduino/include/iom324pa.h +1372 -0
- data/cpp/arduino/include/iom325.h +886 -0
- data/cpp/arduino/include/iom3250.h +982 -0
- data/cpp/arduino/include/iom3250a.h +34 -0
- data/cpp/arduino/include/iom3250p.h +34 -0
- data/cpp/arduino/include/iom3250pa.h +1042 -0
- data/cpp/arduino/include/iom325a.h +34 -0
- data/cpp/arduino/include/iom325p.h +34 -0
- data/cpp/arduino/include/iom325pa.h +937 -0
- data/cpp/arduino/include/iom328.h +34 -0
- data/cpp/arduino/include/iom328p.h +948 -0
- data/cpp/arduino/include/iom329.h +1069 -0
- data/cpp/arduino/include/iom3290.h +1227 -0
- data/cpp/arduino/include/iom3290a.h +34 -0
- data/cpp/arduino/include/iom3290pa.h +1123 -0
- data/cpp/arduino/include/iom329a.h +34 -0
- data/cpp/arduino/include/iom329p.h +1164 -0
- data/cpp/arduino/include/iom329pa.h +34 -0
- data/cpp/arduino/include/iom32a.h +686 -0
- data/cpp/arduino/include/iom32c1.h +1320 -0
- data/cpp/arduino/include/iom32hvb.h +1052 -0
- data/cpp/arduino/include/iom32hvbrevb.h +953 -0
- data/cpp/arduino/include/iom32m1.h +1625 -0
- data/cpp/arduino/include/iom32u2.h +1000 -0
- data/cpp/arduino/include/iom32u4.h +1512 -0
- data/cpp/arduino/include/iom32u6.h +1431 -0
- data/cpp/arduino/include/iom406.h +783 -0
- data/cpp/arduino/include/iom48.h +93 -0
- data/cpp/arduino/include/iom48a.h +35 -0
- data/cpp/arduino/include/iom48p.h +936 -0
- data/cpp/arduino/include/iom48pa.h +839 -0
- data/cpp/arduino/include/iom48pb.h +890 -0
- data/cpp/arduino/include/iom64.h +1311 -0
- data/cpp/arduino/include/iom640.h +101 -0
- data/cpp/arduino/include/iom644.h +101 -0
- data/cpp/arduino/include/iom644a.h +34 -0
- data/cpp/arduino/include/iom644p.h +101 -0
- data/cpp/arduino/include/iom644pa.h +1387 -0
- data/cpp/arduino/include/iom644rfr2.h +2685 -0
- data/cpp/arduino/include/iom645.h +881 -0
- data/cpp/arduino/include/iom6450.h +978 -0
- data/cpp/arduino/include/iom6450a.h +34 -0
- data/cpp/arduino/include/iom6450p.h +34 -0
- data/cpp/arduino/include/iom645a.h +34 -0
- data/cpp/arduino/include/iom645p.h +34 -0
- data/cpp/arduino/include/iom649.h +1061 -0
- data/cpp/arduino/include/iom6490.h +1182 -0
- data/cpp/arduino/include/iom6490a.h +34 -0
- data/cpp/arduino/include/iom6490p.h +34 -0
- data/cpp/arduino/include/iom649a.h +34 -0
- data/cpp/arduino/include/iom649p.h +1490 -0
- data/cpp/arduino/include/iom64a.h +1084 -0
- data/cpp/arduino/include/iom64c1.h +1321 -0
- data/cpp/arduino/include/iom64hve.h +1034 -0
- data/cpp/arduino/include/iom64hve2.h +767 -0
- data/cpp/arduino/include/iom64m1.h +1572 -0
- data/cpp/arduino/include/iom64rfr2.h +2701 -0
- data/cpp/arduino/include/iom8.h +665 -0
- data/cpp/arduino/include/iom8515.h +687 -0
- data/cpp/arduino/include/iom8535.h +772 -0
- data/cpp/arduino/include/iom88.h +97 -0
- data/cpp/arduino/include/iom88a.h +35 -0
- data/cpp/arduino/include/iom88p.h +941 -0
- data/cpp/arduino/include/iom88pa.h +1185 -0
- data/cpp/arduino/include/iom88pb.h +899 -0
- data/cpp/arduino/include/iom8a.h +621 -0
- data/cpp/arduino/include/iom8hva.h +76 -0
- data/cpp/arduino/include/iom8u2.h +997 -0
- data/cpp/arduino/include/iomx8.h +808 -0
- data/cpp/arduino/include/iomxx0_1.h +1692 -0
- data/cpp/arduino/include/iomxx4.h +954 -0
- data/cpp/arduino/include/iomxxhva.h +550 -0
- data/cpp/arduino/include/iotn10.h +512 -0
- data/cpp/arduino/include/iotn11.h +255 -0
- data/cpp/arduino/include/iotn12.h +288 -0
- data/cpp/arduino/include/iotn13.h +395 -0
- data/cpp/arduino/include/iotn13a.h +394 -0
- data/cpp/arduino/include/iotn15.h +363 -0
- data/cpp/arduino/include/iotn1634.h +914 -0
- data/cpp/arduino/include/iotn167.h +883 -0
- data/cpp/arduino/include/iotn20.h +776 -0
- data/cpp/arduino/include/iotn22.h +221 -0
- data/cpp/arduino/include/iotn2313.h +702 -0
- data/cpp/arduino/include/iotn2313a.h +812 -0
- data/cpp/arduino/include/iotn24.h +94 -0
- data/cpp/arduino/include/iotn24a.h +846 -0
- data/cpp/arduino/include/iotn25.h +93 -0
- data/cpp/arduino/include/iotn26.h +422 -0
- data/cpp/arduino/include/iotn261.h +93 -0
- data/cpp/arduino/include/iotn261a.h +987 -0
- data/cpp/arduino/include/iotn28.h +297 -0
- data/cpp/arduino/include/iotn4.h +477 -0
- data/cpp/arduino/include/iotn40.h +767 -0
- data/cpp/arduino/include/iotn4313.h +813 -0
- data/cpp/arduino/include/iotn43u.h +604 -0
- data/cpp/arduino/include/iotn44.h +94 -0
- data/cpp/arduino/include/iotn441.h +903 -0
- data/cpp/arduino/include/iotn44a.h +844 -0
- data/cpp/arduino/include/iotn45.h +93 -0
- data/cpp/arduino/include/iotn461.h +94 -0
- data/cpp/arduino/include/iotn461a.h +987 -0
- data/cpp/arduino/include/iotn48.h +806 -0
- data/cpp/arduino/include/iotn5.h +512 -0
- data/cpp/arduino/include/iotn828.h +911 -0
- data/cpp/arduino/include/iotn84.h +94 -0
- data/cpp/arduino/include/iotn841.h +903 -0
- data/cpp/arduino/include/iotn84a.h +844 -0
- data/cpp/arduino/include/iotn85.h +93 -0
- data/cpp/arduino/include/iotn861.h +94 -0
- data/cpp/arduino/include/iotn861a.h +988 -0
- data/cpp/arduino/include/iotn87.h +859 -0
- data/cpp/arduino/include/iotn88.h +806 -0
- data/cpp/arduino/include/iotn9.h +477 -0
- data/cpp/arduino/include/iotnx4.h +482 -0
- data/cpp/arduino/include/iotnx5.h +442 -0
- data/cpp/arduino/include/iotnx61.h +541 -0
- data/cpp/arduino/include/iousb1286.h +101 -0
- data/cpp/arduino/include/iousb1287.h +101 -0
- data/cpp/arduino/include/iousb162.h +101 -0
- data/cpp/arduino/include/iousb646.h +102 -0
- data/cpp/arduino/include/iousb647.h +102 -0
- data/cpp/arduino/include/iousb82.h +95 -0
- data/cpp/arduino/include/iousbxx2.h +807 -0
- data/cpp/arduino/include/iousbxx6_7.h +1336 -0
- data/cpp/arduino/include/iox128a1.h +7236 -0
- data/cpp/arduino/include/iox128a1u.h +8305 -0
- data/cpp/arduino/include/iox128a3.h +6987 -0
- data/cpp/arduino/include/iox128a3u.h +7697 -0
- data/cpp/arduino/include/iox128a4u.h +7309 -0
- data/cpp/arduino/include/iox128b1.h +6872 -0
- data/cpp/arduino/include/iox128b3.h +6288 -0
- data/cpp/arduino/include/iox128c3.h +6264 -0
- data/cpp/arduino/include/iox128d3.h +5749 -0
- data/cpp/arduino/include/iox128d4.h +5562 -0
- data/cpp/arduino/include/iox16a4.h +6748 -0
- data/cpp/arduino/include/iox16a4u.h +7309 -0
- data/cpp/arduino/include/iox16c4.h +6078 -0
- data/cpp/arduino/include/iox16d4.h +5717 -0
- data/cpp/arduino/include/iox16e5.h +7699 -0
- data/cpp/arduino/include/iox192a3.h +6987 -0
- data/cpp/arduino/include/iox192a3u.h +7697 -0
- data/cpp/arduino/include/iox192c3.h +6264 -0
- data/cpp/arduino/include/iox192d3.h +5749 -0
- data/cpp/arduino/include/iox256a3.h +6987 -0
- data/cpp/arduino/include/iox256a3b.h +6983 -0
- data/cpp/arduino/include/iox256a3bu.h +7706 -0
- data/cpp/arduino/include/iox256a3u.h +7697 -0
- data/cpp/arduino/include/iox256c3.h +6264 -0
- data/cpp/arduino/include/iox256d3.h +5709 -0
- data/cpp/arduino/include/iox32a4.h +6747 -0
- data/cpp/arduino/include/iox32a4u.h +7309 -0
- data/cpp/arduino/include/iox32c3.h +6264 -0
- data/cpp/arduino/include/iox32c4.h +6078 -0
- data/cpp/arduino/include/iox32d3.h +5105 -0
- data/cpp/arduino/include/iox32d4.h +5685 -0
- data/cpp/arduino/include/iox32e5.h +7699 -0
- data/cpp/arduino/include/iox384c3.h +6849 -0
- data/cpp/arduino/include/iox384d3.h +5833 -0
- data/cpp/arduino/include/iox64a1.h +7236 -0
- data/cpp/arduino/include/iox64a1u.h +8305 -0
- data/cpp/arduino/include/iox64a3.h +6987 -0
- data/cpp/arduino/include/iox64a3u.h +7697 -0
- data/cpp/arduino/include/iox64a4u.h +7309 -0
- data/cpp/arduino/include/iox64b1.h +6454 -0
- data/cpp/arduino/include/iox64b3.h +6288 -0
- data/cpp/arduino/include/iox64c3.h +6264 -0
- data/cpp/arduino/include/iox64d3.h +5764 -0
- data/cpp/arduino/include/iox64d4.h +5555 -0
- data/cpp/arduino/include/iox8e5.h +7699 -0
- data/cpp/arduino/include/lock.h +239 -0
- data/cpp/arduino/include/portpins.h +549 -0
- data/cpp/arduino/include/version.h +90 -0
- data/cpp/arduino/include/xmega.h +71 -0
- data/cpp/unittest/Assertion.h +9 -4
- data/cpp/unittest/Compare.h +93 -0
- data/lib/arduino_ci/arduino_installation.rb +1 -1
- data/lib/arduino_ci/cpp_library.rb +4 -1
- data/lib/arduino_ci/version.rb +1 -1
- data/misc/default.yaml +7 -0
- metadata +285 -2
@@ -0,0 +1,643 @@
|
|
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$ */
|
33
|
+
|
34
|
+
/** \file */
|
35
|
+
/** \defgroup avr_io <avr/io.h": AVR device-specific IO definitions
|
36
|
+
\code #include "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><avr/io</tt><em>XXXX</em><tt>.h></tt> which should
|
42
|
+
never be included directly. Some register names common to all
|
43
|
+
AVR devices are defined directly within <tt><avr/common.h></tt>,
|
44
|
+
which is included in <tt><avr/io.h></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 "sfr_defs.h"
|
50
|
+
#include "portpins.h"
|
51
|
+
#include "common.h"
|
52
|
+
#include "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
|
+
#define _SFR_IO8(io_addr) (io_addr) // this macro is all we need from the sfr file
|
100
|
+
|
101
|
+
#if defined (__AVR_AT94K__)
|
102
|
+
# include "ioat94k.h"
|
103
|
+
#elif defined (__AVR_AT43USB320__)
|
104
|
+
# include "io43u32x.h"
|
105
|
+
#elif defined (__AVR_AT43USB355__)
|
106
|
+
# include "io43u35x.h"
|
107
|
+
#elif defined (__AVR_AT76C711__)
|
108
|
+
# include "io76c711.h"
|
109
|
+
#elif defined (__AVR_AT86RF401__)
|
110
|
+
# include "io86r401.h"
|
111
|
+
#elif defined (__AVR_AT90PWM1__)
|
112
|
+
# include "io90pwm1.h"
|
113
|
+
#elif defined (__AVR_AT90PWM2__)
|
114
|
+
# include "io90pwmx.h"
|
115
|
+
#elif defined (__AVR_AT90PWM2B__)
|
116
|
+
# include "io90pwm2b.h"
|
117
|
+
#elif defined (__AVR_AT90PWM3__)
|
118
|
+
# include "io90pwmx.h"
|
119
|
+
#elif defined (__AVR_AT90PWM3B__)
|
120
|
+
# include "io90pwm3b.h"
|
121
|
+
#elif defined (__AVR_AT90PWM216__)
|
122
|
+
# include "io90pwm216.h"
|
123
|
+
#elif defined (__AVR_AT90PWM316__)
|
124
|
+
# include "io90pwm316.h"
|
125
|
+
#elif defined (__AVR_AT90PWM161__)
|
126
|
+
# include "io90pwm161.h"
|
127
|
+
#elif defined (__AVR_AT90PWM81__)
|
128
|
+
# include "io90pwm81.h"
|
129
|
+
#elif defined (__AVR_ATmega8U2__)
|
130
|
+
# include "iom8u2.h"
|
131
|
+
#elif defined (__AVR_ATmega16M1__)
|
132
|
+
# include "iom16m1.h"
|
133
|
+
#elif defined (__AVR_ATmega16U2__)
|
134
|
+
# include "iom16u2.h"
|
135
|
+
#elif defined (__AVR_ATmega16U4__)
|
136
|
+
# include "iom16u4.h"
|
137
|
+
#elif defined (__AVR_ATmega32C1__)
|
138
|
+
# include "iom32c1.h"
|
139
|
+
#elif defined (__AVR_ATmega32M1__)
|
140
|
+
# include "iom32m1.h"
|
141
|
+
#elif defined (__AVR_ATmega32U2__)
|
142
|
+
# include "iom32u2.h"
|
143
|
+
#elif defined (__AVR_ATmega32U4__)
|
144
|
+
# include "iom32u4.h"
|
145
|
+
#elif defined (__AVR_ATmega32U6__)
|
146
|
+
# include "iom32u6.h"
|
147
|
+
#elif defined (__AVR_ATmega64C1__)
|
148
|
+
# include "iom64c1.h"
|
149
|
+
#elif defined (__AVR_ATmega64M1__)
|
150
|
+
# include "iom64m1.h"
|
151
|
+
#elif defined (__AVR_ATmega128__)
|
152
|
+
# include "iom128.h"
|
153
|
+
#elif defined (__AVR_ATmega128A__)
|
154
|
+
# include "iom128a.h"
|
155
|
+
#elif defined (__AVR_ATmega1280__)
|
156
|
+
# include "iom1280.h"
|
157
|
+
#elif defined (__AVR_ATmega1281__)
|
158
|
+
# include "iom1281.h"
|
159
|
+
#elif defined (__AVR_ATmega1284__)
|
160
|
+
# include "iom1284.h"
|
161
|
+
#elif defined (__AVR_ATmega1284P__)
|
162
|
+
# include "iom1284p.h"
|
163
|
+
#elif defined (__AVR_ATmega128RFA1__)
|
164
|
+
# include "iom128rfa1.h"
|
165
|
+
#elif defined (__AVR_ATmega1284RFR2__)
|
166
|
+
# include "iom1284rfr2.h"
|
167
|
+
#elif defined (__AVR_ATmega128RFR2__)
|
168
|
+
# include "iom128rfr2.h"
|
169
|
+
#elif defined (__AVR_ATmega2564RFR2__)
|
170
|
+
# include "iom2564rfr2.h"
|
171
|
+
#elif defined (__AVR_ATmega256RFR2__)
|
172
|
+
# include "iom256rfr2.h"
|
173
|
+
#elif defined (__AVR_ATmega2560__)
|
174
|
+
# include "iom2560.h"
|
175
|
+
#elif defined (__AVR_ATmega2561__)
|
176
|
+
# include "iom2561.h"
|
177
|
+
#elif defined (__AVR_AT90CAN32__)
|
178
|
+
# include "iocan32.h"
|
179
|
+
#elif defined (__AVR_AT90CAN64__)
|
180
|
+
# include "iocan64.h"
|
181
|
+
#elif defined (__AVR_AT90CAN128__)
|
182
|
+
# include "iocan128.h"
|
183
|
+
#elif defined (__AVR_AT90USB82__)
|
184
|
+
# include "iousb82.h"
|
185
|
+
#elif defined (__AVR_AT90USB162__)
|
186
|
+
# include "iousb162.h"
|
187
|
+
#elif defined (__AVR_AT90USB646__)
|
188
|
+
# include "iousb646.h"
|
189
|
+
#elif defined (__AVR_AT90USB647__)
|
190
|
+
# include "iousb647.h"
|
191
|
+
#elif defined (__AVR_AT90USB1286__)
|
192
|
+
# include "iousb1286.h"
|
193
|
+
#elif defined (__AVR_AT90USB1287__)
|
194
|
+
# include "iousb1287.h"
|
195
|
+
#elif defined (__AVR_ATmega644RFR2__)
|
196
|
+
# include "iom644rfr2.h"
|
197
|
+
#elif defined (__AVR_ATmega64RFR2__)
|
198
|
+
# include "iom64rfr2.h"
|
199
|
+
#elif defined (__AVR_ATmega64__)
|
200
|
+
# include "iom64.h"
|
201
|
+
#elif defined (__AVR_ATmega64A__)
|
202
|
+
# include "iom64a.h"
|
203
|
+
#elif defined (__AVR_ATmega640__)
|
204
|
+
# include "iom640.h"
|
205
|
+
#elif defined (__AVR_ATmega644__)
|
206
|
+
# include "iom644.h"
|
207
|
+
#elif defined (__AVR_ATmega644A__)
|
208
|
+
# include "iom644a.h"
|
209
|
+
#elif defined (__AVR_ATmega644P__)
|
210
|
+
# include "iom644p.h"
|
211
|
+
#elif defined (__AVR_ATmega644PA__)
|
212
|
+
# include "iom644pa.h"
|
213
|
+
#elif defined (__AVR_ATmega645__)
|
214
|
+
# include "iom645.h"
|
215
|
+
#elif (defined __AVR_ATmega645A__)
|
216
|
+
#include "iom645a.h"
|
217
|
+
#elif (defined __AVR_ATmega645P__)
|
218
|
+
#include "iom645p.h"
|
219
|
+
#elif defined (__AVR_ATmega6450__)
|
220
|
+
# include "iom6450.h"
|
221
|
+
#elif (defined __AVR_ATmega6450A__)
|
222
|
+
#include "iom6450a.h"
|
223
|
+
#elif (defined __AVR_ATmega6450P__)
|
224
|
+
#include "iom6450p.h"
|
225
|
+
#elif defined (__AVR_ATmega649__)
|
226
|
+
# include "iom649.h"
|
227
|
+
#elif (defined __AVR_ATmega649A__)
|
228
|
+
#include "iom649a.h"
|
229
|
+
#elif defined (__AVR_ATmega6490__)
|
230
|
+
# include "iom6490.h"
|
231
|
+
#elif (defined __AVR_ATmega6490A__)
|
232
|
+
#include "iom6490a.h"
|
233
|
+
#elif (defined __AVR_ATmega6490P__)
|
234
|
+
#include "iom6490p.h"
|
235
|
+
#elif defined (__AVR_ATmega649P__)
|
236
|
+
# include "iom649p.h"
|
237
|
+
#elif defined (__AVR_ATmega64HVE__)
|
238
|
+
# include "iom64hve.h"
|
239
|
+
#elif defined (__AVR_ATmega64HVE2__)
|
240
|
+
# include "iom64hve2.h"
|
241
|
+
#elif defined (__AVR_ATmega103__)
|
242
|
+
# include "iom103.h"
|
243
|
+
#elif defined (__AVR_ATmega32__)
|
244
|
+
# include "iom32.h"
|
245
|
+
#elif defined (__AVR_ATmega32A__)
|
246
|
+
# include "iom32a.h"
|
247
|
+
#elif defined (__AVR_ATmega323__)
|
248
|
+
# include "iom323.h"
|
249
|
+
#elif defined (__AVR_ATmega324P__)
|
250
|
+
# include "iom324p.h"
|
251
|
+
#elif (defined __AVR_ATmega324A__)
|
252
|
+
#include "iom324a.h"
|
253
|
+
#elif defined (__AVR_ATmega324PA__)
|
254
|
+
# include "iom324pa.h"
|
255
|
+
#elif defined (__AVR_ATmega325__)
|
256
|
+
# include "iom325.h"
|
257
|
+
#elif (defined __AVR_ATmega325A__)
|
258
|
+
#include "iom325a.h"
|
259
|
+
#elif defined (__AVR_ATmega325P__)
|
260
|
+
# include "iom325p.h"
|
261
|
+
#elif defined (__AVR_ATmega325PA__)
|
262
|
+
# include "iom325pa.h"
|
263
|
+
#elif defined (__AVR_ATmega3250__)
|
264
|
+
# include "iom3250.h"
|
265
|
+
#elif (defined __AVR_ATmega3250A__)
|
266
|
+
#include "iom3250a.h"
|
267
|
+
#elif defined (__AVR_ATmega3250P__)
|
268
|
+
# include "iom3250p.h"
|
269
|
+
#elif defined (__AVR_ATmega3250PA__)
|
270
|
+
# include "iom3250pa.h"
|
271
|
+
#elif defined (__AVR_ATmega328P__)
|
272
|
+
# include "iom328p.h"
|
273
|
+
#elif (defined __AVR_ATmega328__)
|
274
|
+
#include "iom328.h"
|
275
|
+
#elif defined (__AVR_ATmega329__)
|
276
|
+
# include "iom329.h"
|
277
|
+
#elif (defined __AVR_ATmega329A__)
|
278
|
+
#include "iom329a.h"
|
279
|
+
#elif defined (__AVR_ATmega329P__)
|
280
|
+
# include "iom329p.h"
|
281
|
+
#elif (defined __AVR_ATmega329PA__)
|
282
|
+
#include "iom329pa.h"
|
283
|
+
#elif (defined __AVR_ATmega3290PA__)
|
284
|
+
#include "iom3290pa.h"
|
285
|
+
#elif defined (__AVR_ATmega3290__)
|
286
|
+
# include "iom3290.h"
|
287
|
+
#elif (defined __AVR_ATmega3290A__)
|
288
|
+
#include "iom3290a.h"
|
289
|
+
#elif defined (__AVR_ATmega3290P__)
|
290
|
+
# include "iom3290.h"
|
291
|
+
#elif defined (__AVR_ATmega32HVB__)
|
292
|
+
# include "iom32hvb.h"
|
293
|
+
#elif defined (__AVR_ATmega32HVBREVB__)
|
294
|
+
# include "iom32hvbrevb.h"
|
295
|
+
#elif defined (__AVR_ATmega406__)
|
296
|
+
# include "iom406.h"
|
297
|
+
#elif defined (__AVR_ATmega16__)
|
298
|
+
# include "iom16.h"
|
299
|
+
#elif defined (__AVR_ATmega16A__)
|
300
|
+
# include "iom16a.h"
|
301
|
+
#elif defined (__AVR_ATmega161__)
|
302
|
+
# include "iom161.h"
|
303
|
+
#elif defined (__AVR_ATmega162__)
|
304
|
+
# include "iom162.h"
|
305
|
+
#elif defined (__AVR_ATmega163__)
|
306
|
+
# include "iom163.h"
|
307
|
+
#elif defined (__AVR_ATmega164P__)
|
308
|
+
# include "iom164p.h"
|
309
|
+
#elif (defined __AVR_ATmega164A__)
|
310
|
+
#include "iom164a.h"
|
311
|
+
#elif defined (__AVR_ATmega164PA__)
|
312
|
+
# include "iom164pa.h"
|
313
|
+
#elif defined (__AVR_ATmega165__)
|
314
|
+
# include "iom165.h"
|
315
|
+
#elif defined (__AVR_ATmega165A__)
|
316
|
+
# include "iom165a.h"
|
317
|
+
#elif defined (__AVR_ATmega165P__)
|
318
|
+
# include "iom165p.h"
|
319
|
+
#elif defined (__AVR_ATmega165PA__)
|
320
|
+
# include "iom165pa.h"
|
321
|
+
#elif defined (__AVR_ATmega168__)
|
322
|
+
# include "iom168.h"
|
323
|
+
#elif defined (__AVR_ATmega168A__)
|
324
|
+
# include "iom168a.h"
|
325
|
+
#elif defined (__AVR_ATmega168P__)
|
326
|
+
# include "iom168p.h"
|
327
|
+
#elif defined (__AVR_ATmega168PA__)
|
328
|
+
# include "iom168pa.h"
|
329
|
+
#elif defined (__AVR_ATmega168PB__)
|
330
|
+
# include "iom168pb.h"
|
331
|
+
#elif defined (__AVR_ATmega169__)
|
332
|
+
# include "iom169.h"
|
333
|
+
#elif (defined __AVR_ATmega169A__)
|
334
|
+
#include "iom169a.h"
|
335
|
+
#elif defined (__AVR_ATmega169P__)
|
336
|
+
# include "iom169p.h"
|
337
|
+
#elif defined (__AVR_ATmega169PA__)
|
338
|
+
# include "iom169pa.h"
|
339
|
+
#elif defined (__AVR_ATmega8HVA__)
|
340
|
+
# include "iom8hva.h"
|
341
|
+
#elif defined (__AVR_ATmega16HVA__)
|
342
|
+
# include "iom16hva.h"
|
343
|
+
#elif defined (__AVR_ATmega16HVA2__)
|
344
|
+
# include "iom16hva2.h"
|
345
|
+
#elif defined (__AVR_ATmega16HVB__)
|
346
|
+
# include "iom16hvb.h"
|
347
|
+
#elif defined (__AVR_ATmega16HVBREVB__)
|
348
|
+
# include "iom16hvbrevb.h"
|
349
|
+
#elif defined (__AVR_ATmega8__)
|
350
|
+
# include "iom8.h"
|
351
|
+
#elif defined (__AVR_ATmega8A__)
|
352
|
+
# include "iom8a.h"
|
353
|
+
#elif defined (__AVR_ATmega48__)
|
354
|
+
# include "iom48.h"
|
355
|
+
#elif defined (__AVR_ATmega48A__)
|
356
|
+
# include "iom48a.h"
|
357
|
+
#elif defined (__AVR_ATmega48PA__)
|
358
|
+
# include "iom48pa.h"
|
359
|
+
#elif defined (__AVR_ATmega48PB__)
|
360
|
+
# include "iom48pb.h"
|
361
|
+
#elif defined (__AVR_ATmega48P__)
|
362
|
+
# include "iom48p.h"
|
363
|
+
#elif defined (__AVR_ATmega88__)
|
364
|
+
# include "iom88.h"
|
365
|
+
#elif defined (__AVR_ATmega88A__)
|
366
|
+
# include "iom88a.h"
|
367
|
+
#elif defined (__AVR_ATmega88P__)
|
368
|
+
# include "iom88p.h"
|
369
|
+
#elif defined (__AVR_ATmega88PA__)
|
370
|
+
# include "iom88pa.h"
|
371
|
+
#elif defined (__AVR_ATmega88PB__)
|
372
|
+
# include "iom88pb.h"
|
373
|
+
#elif defined (__AVR_ATmega8515__)
|
374
|
+
# include "iom8515.h"
|
375
|
+
#elif defined (__AVR_ATmega8535__)
|
376
|
+
# include "iom8535.h"
|
377
|
+
#elif defined (__AVR_AT90S8535__)
|
378
|
+
# include "io8535.h"
|
379
|
+
#elif defined (__AVR_AT90C8534__)
|
380
|
+
# include "io8534.h"
|
381
|
+
#elif defined (__AVR_AT90S8515__)
|
382
|
+
# include "io8515.h"
|
383
|
+
#elif defined (__AVR_AT90S4434__)
|
384
|
+
# include "io4434.h"
|
385
|
+
#elif defined (__AVR_AT90S4433__)
|
386
|
+
# include "io4433.h"
|
387
|
+
#elif defined (__AVR_AT90S4414__)
|
388
|
+
# include "io4414.h"
|
389
|
+
#elif defined (__AVR_ATtiny22__)
|
390
|
+
# include "iotn22.h"
|
391
|
+
#elif defined (__AVR_ATtiny26__)
|
392
|
+
# include "iotn26.h"
|
393
|
+
#elif defined (__AVR_AT90S2343__)
|
394
|
+
# include "io2343.h"
|
395
|
+
#elif defined (__AVR_AT90S2333__)
|
396
|
+
# include "io2333.h"
|
397
|
+
#elif defined (__AVR_AT90S2323__)
|
398
|
+
# include "io2323.h"
|
399
|
+
#elif defined (__AVR_AT90S2313__)
|
400
|
+
# include "io2313.h"
|
401
|
+
#elif defined (__AVR_ATtiny4__)
|
402
|
+
# include "iotn4.h"
|
403
|
+
#elif defined (__AVR_ATtiny5__)
|
404
|
+
# include "iotn5.h"
|
405
|
+
#elif defined (__AVR_ATtiny9__)
|
406
|
+
# include "iotn9.h"
|
407
|
+
#elif defined (__AVR_ATtiny10__)
|
408
|
+
# include "iotn10.h"
|
409
|
+
#elif defined (__AVR_ATtiny20__)
|
410
|
+
# include "iotn20.h"
|
411
|
+
#elif defined (__AVR_ATtiny40__)
|
412
|
+
# include "iotn40.h"
|
413
|
+
#elif defined (__AVR_ATtiny2313__)
|
414
|
+
# include "iotn2313.h"
|
415
|
+
#elif defined (__AVR_ATtiny2313A__)
|
416
|
+
# include "iotn2313a.h"
|
417
|
+
#elif defined (__AVR_ATtiny13__)
|
418
|
+
# include "iotn13.h"
|
419
|
+
#elif defined (__AVR_ATtiny13A__)
|
420
|
+
# include "iotn13a.h"
|
421
|
+
#elif defined (__AVR_ATtiny25__)
|
422
|
+
# include "iotn25.h"
|
423
|
+
#elif defined (__AVR_ATtiny4313__)
|
424
|
+
# include "iotn4313.h"
|
425
|
+
#elif defined (__AVR_ATtiny45__)
|
426
|
+
# include "iotn45.h"
|
427
|
+
#elif defined (__AVR_ATtiny85__)
|
428
|
+
# include "iotn85.h"
|
429
|
+
#elif defined (__AVR_ATtiny24__)
|
430
|
+
# include "iotn24.h"
|
431
|
+
#elif defined (__AVR_ATtiny24A__)
|
432
|
+
# include "iotn24a.h"
|
433
|
+
#elif defined (__AVR_ATtiny44__)
|
434
|
+
# include "iotn44.h"
|
435
|
+
#elif defined (__AVR_ATtiny44A__)
|
436
|
+
# include "iotn44a.h"
|
437
|
+
#elif defined (__AVR_ATtiny441__)
|
438
|
+
# include "iotn441.h"
|
439
|
+
#elif defined (__AVR_ATtiny84__)
|
440
|
+
# include "iotn84.h"
|
441
|
+
#elif defined (__AVR_ATtiny84A__)
|
442
|
+
# include "iotn84a.h"
|
443
|
+
#elif defined (__AVR_ATtiny841__)
|
444
|
+
# include "iotn841.h"
|
445
|
+
#elif defined (__AVR_ATtiny261__)
|
446
|
+
# include "iotn261.h"
|
447
|
+
#elif defined (__AVR_ATtiny261A__)
|
448
|
+
# include "iotn261a.h"
|
449
|
+
#elif defined (__AVR_ATtiny461__)
|
450
|
+
# include "iotn461.h"
|
451
|
+
#elif defined (__AVR_ATtiny461A__)
|
452
|
+
# include "iotn461a.h"
|
453
|
+
#elif defined (__AVR_ATtiny861__)
|
454
|
+
# include "iotn861.h"
|
455
|
+
#elif defined (__AVR_ATtiny861A__)
|
456
|
+
# include "iotn861a.h"
|
457
|
+
#elif defined (__AVR_ATtiny43U__)
|
458
|
+
# include "iotn43u.h"
|
459
|
+
#elif defined (__AVR_ATtiny48__)
|
460
|
+
# include "iotn48.h"
|
461
|
+
#elif defined (__AVR_ATtiny88__)
|
462
|
+
# include "iotn88.h"
|
463
|
+
#elif defined (__AVR_ATtiny828__)
|
464
|
+
# include "iotn828.h"
|
465
|
+
#elif defined (__AVR_ATtiny87__)
|
466
|
+
# include "iotn87.h"
|
467
|
+
#elif defined (__AVR_ATtiny167__)
|
468
|
+
# include "iotn167.h"
|
469
|
+
#elif defined (__AVR_ATtiny1634__)
|
470
|
+
# include "iotn1634.h"
|
471
|
+
#elif defined (__AVR_AT90SCR100__)
|
472
|
+
# include "io90scr100.h"
|
473
|
+
#elif defined (__AVR_ATxmega8E5__)
|
474
|
+
# include "iox8e5.h"
|
475
|
+
#elif defined (__AVR_ATxmega16A4__)
|
476
|
+
# include "iox16a4.h"
|
477
|
+
#elif defined (__AVR_ATxmega16A4U__)
|
478
|
+
# include "iox16a4u.h"
|
479
|
+
#elif defined (__AVR_ATxmega16C4__)
|
480
|
+
# include "iox16c4.h"
|
481
|
+
#elif defined (__AVR_ATxmega16D4__)
|
482
|
+
# include "iox16d4.h"
|
483
|
+
#elif defined (__AVR_ATxmega16E5__)
|
484
|
+
# include "iox16e5.h"
|
485
|
+
#elif defined (__AVR_ATxmega32A4__)
|
486
|
+
# include "iox32a4.h"
|
487
|
+
#elif defined (__AVR_ATxmega32A4U__)
|
488
|
+
# include "iox32a4u.h"
|
489
|
+
#elif defined (__AVR_ATxmega32C3__)
|
490
|
+
# include "iox32c3.h"
|
491
|
+
#elif defined (__AVR_ATxmega32C4__)
|
492
|
+
# include "iox32c4.h"
|
493
|
+
#elif defined (__AVR_ATxmega32D3__)
|
494
|
+
# include "iox32d3.h"
|
495
|
+
#elif defined (__AVR_ATxmega32D4__)
|
496
|
+
# include "iox32d4.h"
|
497
|
+
#elif defined (__AVR_ATxmega32E5__)
|
498
|
+
# include "iox32e5.h"
|
499
|
+
#elif defined (__AVR_ATxmega64A1__)
|
500
|
+
# include "iox64a1.h"
|
501
|
+
#elif defined (__AVR_ATxmega64A1U__)
|
502
|
+
# include "iox64a1u.h"
|
503
|
+
#elif defined (__AVR_ATxmega64A3__)
|
504
|
+
# include "iox64a3.h"
|
505
|
+
#elif defined (__AVR_ATxmega64A3U__)
|
506
|
+
# include "iox64a3u.h"
|
507
|
+
#elif defined (__AVR_ATxmega64A4U__)
|
508
|
+
# include "iox64a4u.h"
|
509
|
+
#elif defined (__AVR_ATxmega64B1__)
|
510
|
+
# include "iox64b1.h"
|
511
|
+
#elif defined (__AVR_ATxmega64B3__)
|
512
|
+
# include "iox64b3.h"
|
513
|
+
#elif defined (__AVR_ATxmega64C3__)
|
514
|
+
# include "iox64c3.h"
|
515
|
+
#elif defined (__AVR_ATxmega64D3__)
|
516
|
+
# include "iox64d3.h"
|
517
|
+
#elif defined (__AVR_ATxmega64D4__)
|
518
|
+
# include "iox64d4.h"
|
519
|
+
#elif defined (__AVR_ATxmega128A1__)
|
520
|
+
# include "iox128a1.h"
|
521
|
+
#elif defined (__AVR_ATxmega128A1U__)
|
522
|
+
# include "iox128a1u.h"
|
523
|
+
#elif defined (__AVR_ATxmega128A4U__)
|
524
|
+
# include "iox128a4u.h"
|
525
|
+
#elif defined (__AVR_ATxmega128A3__)
|
526
|
+
# include "iox128a3.h"
|
527
|
+
#elif defined (__AVR_ATxmega128A3U__)
|
528
|
+
# include "iox128a3u.h"
|
529
|
+
#elif defined (__AVR_ATxmega128B1__)
|
530
|
+
# include "iox128b1.h"
|
531
|
+
#elif defined (__AVR_ATxmega128B3__)
|
532
|
+
# include "iox128b3.h"
|
533
|
+
#elif defined (__AVR_ATxmega128C3__)
|
534
|
+
# include "iox128c3.h"
|
535
|
+
#elif defined (__AVR_ATxmega128D3__)
|
536
|
+
# include "iox128d3.h"
|
537
|
+
#elif defined (__AVR_ATxmega128D4__)
|
538
|
+
# include "iox128d4.h"
|
539
|
+
#elif defined (__AVR_ATxmega192A3__)
|
540
|
+
# include "iox192a3.h"
|
541
|
+
#elif defined (__AVR_ATxmega192A3U__)
|
542
|
+
# include "iox192a3u.h"
|
543
|
+
#elif defined (__AVR_ATxmega192C3__)
|
544
|
+
# include "iox192c3.h"
|
545
|
+
#elif defined (__AVR_ATxmega192D3__)
|
546
|
+
# include "iox192d3.h"
|
547
|
+
#elif defined (__AVR_ATxmega256A3__)
|
548
|
+
# include "iox256a3.h"
|
549
|
+
#elif defined (__AVR_ATxmega256A3U__)
|
550
|
+
# include "iox256a3u.h"
|
551
|
+
#elif defined (__AVR_ATxmega256A3B__)
|
552
|
+
# include "iox256a3b.h"
|
553
|
+
#elif defined (__AVR_ATxmega256A3BU__)
|
554
|
+
# include "iox256a3bu.h"
|
555
|
+
#elif defined (__AVR_ATxmega256C3__)
|
556
|
+
# include "iox256c3.h"
|
557
|
+
#elif defined (__AVR_ATxmega256D3__)
|
558
|
+
# include "iox256d3.h"
|
559
|
+
#elif defined (__AVR_ATxmega384C3__)
|
560
|
+
# include "iox384c3.h"
|
561
|
+
#elif defined (__AVR_ATxmega384D3__)
|
562
|
+
# include "iox384d3.h"
|
563
|
+
#elif defined (__AVR_ATA5702M322__)
|
564
|
+
# include "ioa5702m322.h"
|
565
|
+
#elif defined (__AVR_ATA5782__)
|
566
|
+
# include "ioa5782.h"
|
567
|
+
#elif defined (__AVR_ATA5790__)
|
568
|
+
# include "ioa5790.h"
|
569
|
+
#elif defined (__AVR_ATA5790N__)
|
570
|
+
# include "ioa5790n.h"
|
571
|
+
#elif defined (__AVR_ATA5791__)
|
572
|
+
# include "ioa5791.h"
|
573
|
+
#elif defined (__AVR_ATA5831__)
|
574
|
+
# include "ioa5831.h"
|
575
|
+
#elif defined (__AVR_ATA5272__)
|
576
|
+
# include "ioa5272.h"
|
577
|
+
#elif defined (__AVR_ATA5505__)
|
578
|
+
# include "ioa5505.h"
|
579
|
+
#elif defined (__AVR_ATA5795__)
|
580
|
+
# include "ioa5795.h"
|
581
|
+
#elif defined (__AVR_ATA6285__)
|
582
|
+
# include "ioa6285.h"
|
583
|
+
#elif defined (__AVR_ATA6286__)
|
584
|
+
# include "ioa6286.h"
|
585
|
+
#elif defined (__AVR_ATA6289__)
|
586
|
+
# include "ioa6289.h"
|
587
|
+
#elif defined (__AVR_ATA6612C__)
|
588
|
+
# include "ioa6612c.h"
|
589
|
+
#elif defined (__AVR_ATA6613C__)
|
590
|
+
# include "ioa6613c.h"
|
591
|
+
#elif defined (__AVR_ATA6614Q__)
|
592
|
+
# include "ioa6614q.h"
|
593
|
+
#elif defined (__AVR_ATA6616C__)
|
594
|
+
# include "ioa6616c.h"
|
595
|
+
#elif defined (__AVR_ATA6617C__)
|
596
|
+
# include "ioa6617c.h"
|
597
|
+
#elif defined (__AVR_ATA664251__)
|
598
|
+
# include "ioa664251.h"
|
599
|
+
#elif defined (__AVR_ATA8210__)
|
600
|
+
# include "ioa8210.h"
|
601
|
+
#elif defined (__AVR_ATA8510__)
|
602
|
+
# include "ioa8510.h"
|
603
|
+
/* avr1: the following only supported for assembler programs */
|
604
|
+
#elif defined (__AVR_ATtiny28__)
|
605
|
+
# include "iotn28.h"
|
606
|
+
#elif defined (__AVR_AT90S1200__)
|
607
|
+
# include "io1200.h"
|
608
|
+
#elif defined (__AVR_ATtiny15__)
|
609
|
+
# include "iotn15.h"
|
610
|
+
#elif defined (__AVR_ATtiny12__)
|
611
|
+
# include "iotn12.h"
|
612
|
+
#elif defined (__AVR_ATtiny11__)
|
613
|
+
# include "iotn11.h"
|
614
|
+
#elif defined (__AVR_M3000__)
|
615
|
+
# include "iom3000.h"
|
616
|
+
#elif defined (__AVR_DEV_LIB_NAME__)
|
617
|
+
# define __concat__(a,b) a##b
|
618
|
+
# define __header1__(a,b) __concat__(a,b)
|
619
|
+
# define __AVR_DEVICE_HEADER__ "\"__header1__(io,__AVR_DEV_LIB_NAME__).h\""
|
620
|
+
# include __AVR_DEVICE_HEADER__
|
621
|
+
#else
|
622
|
+
# if !defined(__COMPILING_AVR_LIBC__)
|
623
|
+
# warning "device type not defined"
|
624
|
+
# endif
|
625
|
+
#endif
|
626
|
+
|
627
|
+
#include "portpins.h"
|
628
|
+
|
629
|
+
#include "common.h"
|
630
|
+
|
631
|
+
#include "version.h"
|
632
|
+
|
633
|
+
#if __AVR_ARCH__ >= 100
|
634
|
+
# include "xmega.h"
|
635
|
+
#endif
|
636
|
+
|
637
|
+
/* Include fuse.h after individual IO header files. */
|
638
|
+
#include "fuse.h"
|
639
|
+
|
640
|
+
/* Include lock.h after individual IO header files. */
|
641
|
+
#include "lock.h"
|
642
|
+
|
643
|
+
#endif /* _AVR_IO_H_ */
|