Skip to content

Commit

Permalink
Merge pull request #1 from dfollent/master
Browse files Browse the repository at this point in the history
VocalFusion stereo setup scripts
  • Loading branch information
Peter Hedinger authored Mar 27, 2018
2 parents d36b23e + 9679b34 commit 3ca5adc
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
40 changes: 39 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,39 @@
# vocalfusion-stereo-setup
# xCORE VocalFusion Stereo Dev Kit on a Raspberry Pi

The XMOS **xCORE VocalFusion Stereo Dev Kit** provides far-field voice capture using the XMOS XVF3500 voice processor.

Combined with a Raspberry Pi, this kit allows you to quickly prototype and evaluate VocalFusion Stereo.

This repository provides a simple-to-use automated script to configure the Raspberry Pi to use the **xCORE VocalFusion Stereo Dev Kit** for audio.

## Prerequisites
You will need:

- **xCORE VocalFusion Stereo Dev Kit**: XK-VF3500-L33
- Raspberry Pi 3
- Micro-USB power supply (min. 2A)
- MicroSD card (min. 16GB)
- Powered stereo speakers with audio 3.5mm analogue plug
- Monitor with HDMI input
- HDMI cable
- Fast-Ethernet connection with internet connectivity


## Hardware and Raspberry Pi audio setup
Setup your hardware by following the **Hardware Setup** at: https://xmos.com/vocalfusion-stereo

Full instructions on configuring the Raspberry Pi to use the **xCORE VocalFusion Stereo Dev Kit** are detailed in the **Getting Started Guide** available from: https://xmos.com/vocalfusion-stereo.

Brief instructions and additional notes are below:

1. Install **Raspbian Stretch** on the Raspberry Pi. **Note:** This setup script is incompatible with earlier versions of Raspbian.

2. Open a terminal on the Raspberry Pi and clone this respository:
`cd ~; git clone https://github.com/xmos/vocalfusion-stereo-setup`

3. Run the installation script: `source ~/vocalfusion-stereo-setup/auto_install.sh`
Wait for the script to complete the installation. This can take several minutes.

4. Enter `sudo reboot` to reboot the Raspberry Pi and complete the audio setup.

You are now ready to start evaluating the VocalFusion Stereo Kit.
14 changes: 14 additions & 0 deletions auto_install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

pushd . > /dev/null
cd $SCRIPT_DIR

git clone git://github.com/xmos/vocalfusion-rpi-setup.git

# Execute (rather than source) the setup scripts
$SCRIPT_DIR/vocalfusion-rpi-setup/setup.sh

echo "Type 'sudo reboot' below to reboot the Raspberry Pi and complete the audio setup."

popd > /dev/null

0 comments on commit 3ca5adc

Please sign in to comment.