Skip to content

Commit 7c8239a

Browse files
author
Olivier Gillet
committed
First commit
0 parents  commit 7c8239a

File tree

4 files changed

+200
-0
lines changed

4 files changed

+200
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.vagrant/
2+
eurorack-modules/

README.md

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Vagrant environment for Mutable Instruments modules hacking
2+
3+
This configuration file and this shellscript create a Linux (ubuntu) virtual machine configured with all the right tools for compiling and installing the firmware of Mutable Instruments' modules.
4+
5+
## Kudos and inspiration
6+
7+
* Adafruit's [ARM toolchain for vagrant](https://github.com/adafruit/ARM-toolchain-vagrant)
8+
* Novation's [LaunchPad pro](https://github.com/dvhdr/launchpad-pro)
9+
10+
## Requirements
11+
12+
* [VirtualBox 5.x](https://www.virtualbox.org/wiki/Downloads)
13+
* [VirtualBox Extension Pack](https://www.virtualbox.org/wiki/Downloads)
14+
* [Vagrant](https://www.vagrantup.com/downloads.html)
15+
16+
The Extension pack consists of a file with the `vbox-extpack` extension. On windows, double click on it. On OS X or Linux, the file needs to be installed from the command line with the command:
17+
18+
VBoxManage extpack install <filename>
19+
20+
Finally if you are running a Linux operating system you will want to add your user to the `vboxusers` group so that the virtual machine can access your USB devices. Run the following command:
21+
22+
sudo usermod -a -G vboxusers $USER
23+
24+
Then **log out and log back in** to make sure the group change takes effect.
25+
26+
## Usage
27+
28+
To start the VM, open a terminal in the directory with the Vagrantfile and run:
29+
30+
vagrant up
31+
32+
The first time the VM is started, all tools will be downloaded, and the latest version of the code will be grabbed from github. The process takes about 15 minutes, depending on the speed of your internet connection or computer.
33+
34+
Then, you can log onto the virtual machine by running:
35+
36+
vagrant ssh
37+
38+
Once in the virtual machine, you can try, for example, to compile Clouds' bootloader and code:
39+
40+
make -f clouds/bootloader/makefile hex
41+
make -f clouds/makefile
42+
43+
To write the firmware to the module with an Olimex ARM-USB-OCD-H JTAG adapter, use:
44+
45+
make -f clouds/makefile upload
46+
47+
Or you can generate a .wav file for the built-in audio updater:
48+
49+
make -f clouds/makefile wav
50+
51+
The firmware update file is put in `build/clouds/clouds.wav`.
52+
53+
Once you're done with this hacking session, you can leave the VM terminal with:
54+
55+
exit
56+
57+
The virtual machine continues running and can be reaccessed with `vagrant ssh`. It can also be suspended with `vagrant suspend`, halted with `vagrant halt`, and completely destroyed with `vagrant destroy`. Note that with this last command, you might lose any files you have created inside the VM's disk image!
58+
59+
## Moving files between the VM and the host
60+
61+
By default, the working directory (`eurorack-modules`) is installed in the `/vagrant` directory, which is shared between the VM and the host. You can thus use any text editor on the host to modify the files. Note that any file can be transfered between the VM and the host by being copied in this location.
62+
63+
If you prefer to work in a more "self-contained" environement, comment the line `CODE_DIRECTORY=/vagrant` and uncomment the line `CODE_DIRECTORY=/home/vagrant`. The code will not be installed in the shared directory, and will be accessible only from within the VM.
64+
65+
## USB issues
66+
67+
To pass through USB devices from your real machine to the virtual machine, consult the [VirtualBox USB documentation](https://www.virtualbox.org/manual/ch03.html#idp96037808).
68+
69+
Additionally, you might have to run as super user the commands making use of a USB device. A few udev rules have been added for common device (AVR ISP mkII, Olimex ARM-USB-OCD, FTDI USB-serial adapter).

Vagrantfile

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# -*- mode: ruby -*-
2+
# vi: set ft=ruby :
3+
4+
Vagrant.configure(2) do |config|
5+
# The most common configuration options are documented and commented below.
6+
# For a complete reference, please see the online documentation at
7+
# https://docs.vagrantup.com.
8+
9+
# Every Vagrant development environment requires a box. You can search for
10+
# boxes at https://atlas.hashicorp.com/search.
11+
config.vm.box = "ubuntu/trusty64"
12+
13+
# Disable automatic box update checking. If you disable this, then
14+
# boxes will only be checked for updates when the user runs
15+
# `vagrant box outdated`. This is not recommended.
16+
# config.vm.box_check_update = false
17+
18+
# Create a forwarded port mapping which allows access to a specific port
19+
# within the machine from a port on the host machine. In the example below,
20+
# accessing "localhost:8080" will access port 80 on the guest machine.
21+
# config.vm.network "forwarded_port", guest: 80, host: 8080
22+
23+
# Create a private network, which allows host-only access to the machine
24+
# using a specific IP.
25+
# config.vm.network "private_network", ip: "192.168.33.10"
26+
27+
# Create a public network, which generally matched to bridged network.
28+
# Bridged networks make the machine appear as another physical device on
29+
# your network.
30+
# config.vm.network "public_network"
31+
32+
# Share an additional folder to the guest VM. The first argument is
33+
# the path on the host to the actual folder. The second argument is
34+
# the path on the guest to mount the folder. And the optional third
35+
# argument is a set of non-required options.
36+
# config.vm.synced_folder "../data", "/vagrant_data"
37+
38+
# Provider-specific configuration so you can fine-tune various
39+
# backing providers for Vagrant. These expose provider-specific options.
40+
# Example for VirtualBox:
41+
#
42+
config.vm.provider "virtualbox" do |vb|
43+
# Display the VirtualBox GUI when booting the machine
44+
# vb.gui = true
45+
46+
# Customize the amount of memory on the VM:
47+
vb.memory = "2048"
48+
49+
# Use 2 CPUs
50+
vb.cpus = 2
51+
52+
# Enable all USB devices needed for development
53+
vb.customize ['modifyvm', :id, '--usb', 'on']
54+
vb.customize ['modifyvm', :id, '--usbehci', 'on']
55+
vb.customize ['usbfilter', 'add', '0', '--target', :id, '--name', 'STLink', '--vendorid', '0x0483', '--productid', '0x3748']
56+
vb.customize ['usbfilter', 'add', '0', '--target', :id, '--name', 'Olimex OpenOCD JTAG ARM-USB-OCD-H', '--vendorid', '0x15BA', '--productid', '0x002b']
57+
vb.customize ['usbfilter', 'add', '0', '--target', :id, '--name', 'AVRISP mkII', '--vendorid', '0x03EB', '--productid', '0x2104']
58+
end
59+
60+
# Enable provisioning with a shell script. Additional provisioners such as
61+
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
62+
# documentation for more information about their specific syntax and use.
63+
config.vm.provision :shell, path: "bootstrap.sh"
64+
end

bootstrap.sh

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
#!/usr/bin/env bash
2+
3+
# Install basic development tools
4+
sudo dpkg --add-architecture i386
5+
sudo apt-get update
6+
sudo apt-get install -y build-essential autotools-dev autoconf pkg-config libusb-1.0-0 libusb-1.0-0-dev libftdi1 libftdi-dev git libc6:i386 libncurses5:i386 libstdc++6:i386 cowsay figlet language-pack-en
7+
sudo locale-gen UTF-8
8+
9+
# Install python
10+
sudo apt-get install -y python2.7 python-numpy python-scipy python-matplotlib
11+
12+
# Install development tools for avr
13+
sudo apt-get install -y gcc-avr binutils-avr avr-libc avrdude
14+
15+
# The makefile from Mutable Instruments expects the avr-gcc binaries to be
16+
# in a different directory.
17+
sudo ln -s /usr /usr/local/CrossPack-AVR
18+
19+
# Install openocd
20+
cd /home/vagrant
21+
wget -nv http://downloads.sourceforge.net/project/openocd/openocd/0.7.0/openocd-0.7.0.tar.gz
22+
tar xvfz openocd-0.7.0.tar.gz
23+
cd openocd-0.7.0
24+
./configure --enable-ftdi --enable-ft2232-libftdi
25+
make
26+
sudo make install
27+
cd /home/vagrant
28+
rm -rf openocd-0.7.0
29+
rm *.tar.gz
30+
31+
# Allow non-root users to access USB devices
32+
echo 'SUBSYSTEMS=="usb", ATTRS{idVendor}=="15ba", ATTRS{idProduct}=="002b", GROUP="users", MODE="0666"' >> /etc/udev/rules.d/60-programmers.rules
33+
echo 'SUBSYSTEMS=="usb", ATTRS{idVendor}=="15ba", ATTRS{idProduct}=="0003", GROUP="users", MODE="0666"' >> /etc/udev/rules.d/60-programmers.rules
34+
echo 'SUBSYSTEMS=="usb", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2104", GROUP="users", MODE="0666"' >> /etc/udev/rules.d/60-programmers.rules
35+
echo 'SUBSYSTEMS=="usb", KERNEL=="ttyUSB*", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", GROUP="users", MODE="0666", SYMLINK+="ftdi-usbserial"' >> /etc/udev/rules.d/60-programmers.rules
36+
sudo udevadm control --reload-rules
37+
sudo udevadm trigger
38+
39+
# Install toolchain for STM32F4
40+
cd /home/vagrant
41+
wget -nv https://launchpad.net/gcc-arm-embedded/4.8/4.8-2013-q4-major/+download/gcc-arm-none-eabi-4_8-2013q4-20131204-linux.tar.bz2
42+
tar xjf gcc-arm-none-eabi-4_8-2013q4-20131204-linux.tar.bz2
43+
sudo mv gcc-arm-none-eabi-4_8-2013q4 /usr/local/arm-4.8.3/
44+
rm *.tar.bz2
45+
# (We're progressively checking that all STM32F1 projects can also be built with
46+
# this gcc version instead of 4.5.2).
47+
ln -s /usr/local/arm-4.8.3 /usr/local/arm
48+
49+
# Code is stored in the VM itself
50+
# CODE_DIRECTORY=/home/vagrant
51+
# Code is stored in a directory shared between the VM and the host.
52+
CODE_DIRECTORY=/vagrant
53+
54+
# Get modules source code
55+
cd $CODE_DIRECTORY
56+
sudo -s -u vagrant -H git clone https://github.com/pichenettes/eurorack.git eurorack-modules
57+
cd $CODE_DIRECTORY/eurorack-modules
58+
sudo -s -u vagrant -H git submodule init
59+
sudo -s -u vagrant -H git submodule update
60+
61+
# Add . to PYTHONPATH
62+
echo 'export LC_ALL=en_US.UTF-8' >> /home/vagrant/.bashrc
63+
echo 'export LANGUAGE=en_US' >> /home/vagrant/.bashrc
64+
echo 'export PYTHONPATH=.:$PYTHONPATH' >> /home/vagrant/.bashrc
65+
echo "cd $CODE_DIRECTORY/eurorack-modules" >> /home/vagrant/.bashrc

0 commit comments

Comments
 (0)