Getting started with Bela » History » Version 10

Giulio Moro, 2015-07-17 08:04 PM

1 1 Giulio Moro
h1.  Getting started with BeagleRT
2 1 Giulio Moro
3 1 Giulio Moro
h2. Prerequisites
4 1 Giulio Moro
5 1 Giulio Moro
Before starting, make sure you have:
6 1 Giulio Moro
* Beaglebone Black
7 3 Giulio Moro
* BeagleRT cape
8 1 Giulio Moro
* standard-A to mini-B USB cable
9 1 Giulio Moro
* 2GB or more micro-SD card
10 3 Giulio Moro
* Optional, but recommended: up to two 3-ways female connectors for audio in/out from the cape. You will probably want some sort of stereo female jack connector at the other end.
11 1 Giulio Moro
12 1 Giulio Moro
h2. Hardware setup
13 1 Giulio Moro
14 1 Giulio Moro
Stack the audio cape on top of the Beaglebone Black (BBB). Make sure all the pins from the cape fit into the socket header of the BBB and that no pin gets bent in the process. 
15 1 Giulio Moro
16 1 Giulio Moro
[TODO: connector wiring]
17 1 Giulio Moro
18 1 Giulio Moro
h2. Software setup
19 1 Giulio Moro
20 1 Giulio Moro
Clone the disk image from [TODO: url] on the SD card. This image contains a Debian 7.7 distribution with Xenomai extensions which contains all the toolkits needed to compile and run BeagleRT projects.
21 5 Giulio Moro
Insert the SD card into the BBB and plug it into your computer with the USB cable. The BBB will boot Debian and advertise itself to your computer as a network interface.
22 2 Giulio Moro
23 6 Giulio Moro
Communication between the BBB and the host pc takes place through the Ethernet over USB network connection. In order to log into the BBB you need an ssh client and you might need some network drivers according to your operating system, as detailed below.
24 6 Giulio Moro
25 1 Giulio Moro
h3. Linux users
26 1 Giulio Moro
27 6 Giulio Moro
All you need should be already on your machine, jump to *Test the ssh connection* below and have fun!
28 1 Giulio Moro
29 5 Giulio Moro
h3. MacOS users
30 5 Giulio Moro
31 5 Giulio Moro
* install network drivers for the BBB from http://beagleboard.org/static/Drivers/MacOSX/RNDIS/HoRNDIS.pkg and the serial drivers from http://beagleboard.org/static/Drivers/MacOSX/FTDI/EnergiaFTDIDrivers2.2.18.pkg
32 5 Giulio Moro
* make sure the BBB is plugged in and booted up (might take up to one minute after you plug it in).
33 5 Giulio Moro
* go to System Preferences->Network, click the + symbol at the bottom left. From the popup window, select "Beaglebone Black"
34 5 Giulio Moro
* now set the "Configure IP v4" field to "Using DHCP with manual address" and set the IP address to 192.168.7.1
35 5 Giulio Moro
!ss_dhcp.png!
36 5 Giulio Moro
* click apply and wait a few seconds, the indicator close to the icon should turn green
37 6 Giulio Moro
* jump to the *Test the ssh connection* section below to check that everything is working properly
38 1 Giulio Moro
39 5 Giulio Moro
h3. Windows users
40 5 Giulio Moro
41 6 Giulio Moro
* you will need a toolkit that allows you to use ssh and some other basic shell tools. The shell scripts in this project have been tested with *mingw* http://mingw.org/ . You will want to note that in order to paste code on the mingw terminal you have to right click on the terminal's title bar and navigate the menu to edit->paste .
42 6 Giulio Moro
* additionally, you need to install the network drivers from http://beagleboard.org/static/Drivers/Windows/BONE_D64.exe (Windows 64 bit) or http://beagleboard.org/static/Drivers/Windows/BONE_DRV.exe (Windows 32bit)
43 6 Giulio Moro
* in the network connections manually set thel IP address for the BBB to 192.168.7.1
44 9 Giulio Moro
!win.png!
45 6 Giulio Moro
* jump to the *Test the ssh connection* section below to check that everything is working properly
46 1 Giulio Moro
47 1 Giulio Moro
h3. Test ssh connection
48 1 Giulio Moro
49 6 Giulio Moro
When using the USB network connection, the BBB has a self-assigned IP of 192.168.7.2, we will log in with username *root* and password *a* .
50 1 Giulio Moro
51 6 Giulio Moro
If you have gone through operating system-specific steps above, you should be able to connect to the beaglebone with
52 6 Giulio Moro
<pre>$ ssh root@192.168.7.2</pre>
53 6 Giulio Moro
54 6 Giulio Moro
According to the settings of your ssh client, you might, or might not, be prompted with something along the lines of 
55 6 Giulio Moro
<pre>The authenticity of host '192.168.7.2 (192.168.7.2)' can't be established.
56 6 Giulio Moro
RSA key fingerprint is 35:b2:ff:ae:c2:02:30:af:84:1e:0d:f5:c9:c8:4b:34.
57 6 Giulio Moro
Are you sure you want to continue connecting (yes/no)? </pre>
58 6 Giulio Moro
type @yes@ and press the return key.
59 6 Giulio Moro
60 6 Giulio Moro
Next, you will be prompted with the password.
61 6 Giulio Moro
Enter a single *a* character and hit the return key.
62 6 Giulio Moro
63 6 Giulio Moro
If everything is ok, you will now be displayed the BBB prompt:
64 6 Giulio Moro
<pre>root@arm ~$</pre>
65 6 Giulio Moro
66 1 Giulio Moro
h3. (Optional) ssh keys setup
67 1 Giulio Moro
68 6 Giulio Moro
ssh would require you to enter the password everytime you open a connection to the BBB. This will happen a few times during setup and then 3 times every time you build and run your project. To avoid quickly getting annoyed by this, you can use ssh keys. In the @scripts/@ you will find a setup script which
69 6 Giulio Moro
* generates (if not exists) a key-pair on your host machine (stored in @~/.ssh/@ )
70 6 Giulio Moro
* sets the @~/.ssh/config@ file
71 6 Giulio Moro
* copies the public key to the BBB
72 6 Giulio Moro
To do so, run the @./setup-ssh-windows.sh@ if you are on Windows or @./setup-ssh.sh@ otherwise from the @scripts/@ folder
73 5 Giulio Moro
74 1 Giulio Moro
This way you will be able to log into the BBB simply typing:
75 7 Giulio Moro
<pre>ssh bbb</pre>
76 5 Giulio Moro
77 1 Giulio Moro
h2. Build your first project
78 4 Giulio Moro
79 10 Giulio Moro
Clone the BeagleRT repository to your machine using Mercurial:
80 10 Giulio Moro
<pre>hg clone https://code.soundsoftware.ac.uk/hg/beaglert</pre>
81 10 Giulio Moro
or download a zip file of the archive from https://code.soundsoftware.ac.uk/hg/beaglert/archive/tip.zip 
82 10 Giulio Moro
83 8 Giulio Moro
Do you want to get started immediately, without need to install any software on your machine? Grab a terminal and learn about  [[ Compiling BeagleRT projects on the board]]
84 5 Giulio Moro
Do you want to turn your computer into a cross-compiling machine, with the advantages of an IDE and you are willing to put (some) effort into it? [[ Compiling BeagleRT projects in Eclipse]]