blob: 59b410eaabc5b229bdf0ca85cde25cc172f2674f (
plain) (
blame)
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
|
Dependencies
============
App:
----
build-essential
liblo-dev
libasound2-dev
if you want clang as compiler
clang
Firmware:
---------
spreadspace avr utils (and everything these depend on)
Build
=====
Getting the source via GIT:
---------------------------
git clone git://git.spreadspace.org/dolmetschctl.git
cd dolmetschctl
make -C contrib/
The last step can also be done manually:
# checkout avr-utils from git:
cd contrib
git clone git://git.spreadspace.org/avr-utils.git
cd ..
# or just add a link to a local copy of the uitls
cd contrib
ln -s /path/to/local/copy/of/avrutils/ avr-utils
cd ..
Build Firmware:
---------------
cd firmware
make
|