-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.md~
56 lines (45 loc) · 2.13 KB
/
readme.md~
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
#Cestino Hardware
***
The Cestino as a 20MHz ATmega1284p based Arduino-compatible, derived from Arduino Mighty and Sanguino. It is designed to be assembled on a breadboard, so its pin numbers are identical to the ATmega1284p IC's pin numbers, including starting with 1 and having gaps for the reset pin, clock pin, and so on. It's fast, cheap to build, and powerful. In case you wondered, Cestino is Italian for "Recycle Bin," like the one you drop files in on Windows. It's so named because its breadboard-resident nature makes recycling old ICs out of obsolete devices much simpler.
***
##How to Install the Cestino Hardware Package.
***
Use cd to dive into your_sketchbook_directory/hardware. If there's no hardware directory in your sketchbook, create one and go there. Clone this archive to a directory called cestino with this command:
$git clone https://github.com/jrstrick/Cestino_Hardware.git cestino
or, if you downloaded the zip archive, rename the folder Cestino_Hardware-master to cestino, and move that to your hardware directory.
The resulting directory tree should look something like this:
your_sketchbook_directory_name/hardware
└── cestino
├── avr
│ ├── boards.txt
│ ├── boards.txt~
│ ├── boot.h
│ ├── bootloaders
│ │ └── optiboot
│ ├── libraries
│ ├── mkfile-not-used
│ ├── oldboards.txt
│ ├── pin_defs.h
│ ├── platform.txt
│ ├── README.md
│ ├── stk500.h
│ ├── unused-cores
│ ├── variants
│ └── Wire
└── readme.md
Arduino should do the rest.
***
##Build Instructions
***
Use cd to get into the bootloaders/optiboot directory, here:
your_sketchbook_directory_name/hardware
└── cestino
└── avr
├── boards.txt
├── boards.txt~
├── boot.h
└── bootloaders
└── optiboot <-- here
and type:
$make cestino1284p
It should just work.