-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprerequisites.html
128 lines (98 loc) · 3.49 KB
/
prerequisites.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cduino Prerequisites</title>
<meta name="keywords" content="arduino, Cduino, prerequisites, hardware" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-23228808-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<h1>Cduino Prerequisites</h1>
<h2>Required Hardware</h2>
<ul>
<li>
<a href="http://www.arduino.cc/en/Main/ArduinoBoardDuemilanove">
Arduino Duemilanove
</a>
or
<a href="http://arduino.cc/en/Main/ArduinoBoardUno">Arduino Uno</a>
with USB programming cable. If you use an older duemilanove, some variable
settings may need to be tweaked away from the defaults (which assume a
Mega328P chip).
</li>
<li>
If you want to use in-system programming (ISP), an
<a href="http://www.atmel.com/tools/avrispmkii.aspx">
AVRISPmkII
</a>
or clone is needed. Probably any programmer supported by avrdude could be
made to work with a trivial tweak or two to <code>generic.mk</code>.
</li>
<li>
Many individual modules require additional hardware for testing. These
requirements are documented at the top of the *_test.c test program for the
module in question.
</li>
</ul>
<h2>Required Software</h2>
<ul>
<li>
GNU AVR GCC compiler (debian package:
<a href="http://packages.debian.org/stable/gcc-avr">gcc-avr</a>)
</li>
<li>
GNU AVR binutils (debian package:
<a href="http://packages.debian.org/stable/binutils-avr">binutils-avr</a>)
</li>
<li>
<a href="http://www.nongnu.org/avr-libc/">GNU AVR libc</a> (debian package:
<a href="http://packages.debian.org/stable/avr-libc">avr-libc</a>)
</li>
<li>
<a href="http://savannah.nongnu.org/projects/avrdude/">avrdude</a>
(debian package:
<a href="http://packages.debian.org/stable/avrdude">avrdude</a>)
</li>
<li>
<a href="http://www.gnu.org/software/screen/">screen</a> for
terminal-style communication with the arduino (debian package:
<a href="http://packages.debian.org/stable/screen">screen</a>)
</li>
</ul>
<h2>Recommended Software</h2>
<ul>
<li>
<a href="http://www.libusb.org">libusb</a> (debian package:
<a href="http://packages.debian.org/stable/libusb-1.0-0-dev">
libusb-1.0-0-dev
</a>
) is required if you want to build avrdude with suppor for use of an
AVRISPmkII (or other in-system programmer) for programming. There's a good
chance your system already includes this library by default, and any
pre-packaged version of avrdude probably includes it.
</li>
<li>
<a
href="http://search.cpan.org/~cook/Device-SerialPort-1.04/SerialPort.pm">
Device::SerialPort
</a>
perl module (debian package:
<a href="http://packages.debian.org/search?keywords=device-serialport&searchon=names&suite=stable§ion=all">
libdevice-serialport-perl
</a>
) If present, this module will be used to reset the Arduino when you
program it with the Arduino bootloader, saving you the trouble of pushing
the reset button all the time.
</li>
</ul>
</body>
</html>