Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleInstall Commands
sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa -y
sudo apt -qq update
sudo apt -qq install build-essential gcc-arm-embedded openocd git tmux
mkdir ~/projects
cd ~/projects
git clone https://github.com/uw-midsun/firmware.git

If you're running this on a VM (through VirtualBox) and want to symlink a shared folder instead, install the VirtualBox Guest Additions and set up a shared folder named projects to auto-mount.

Then, running the following commands will enable your user to access shared folders and symlink the folder to ~/projects. Replace mkdir ~/projects with:

Code Block
languagebash
titleShared Folder Setup
sudo adduser [username] vboxsf
cd ~
ln -s /media/sf_projects projects