...
Download Docker Desktop for Apple Silicon (https://www.docker.com/products/docker-desktop/ )
Install the latest version of vagrant (https://www.vagrantup.com/downloads )
For M1s, you can use brew or you can download the ARM64 version
Clone the repo:
git clone https://github.com/uw-midsun/box.git
Go to your box directory and switch to master branch
You can check if you are on the master branch if you run
git branch
Code Block ~ % cd box box % git checkout master
Before running
vagrant up
, make sure that you have docker openRun
vagrant up --provider=docker
Run
vagrant ssh
Run
cd shared
Run
git clone https://github.com/uw-midsun/fwxv.git && cd fwxv
(if you clone with https, you will need to set up an ssh key later which is covered in our setup page)Run
scons sim --project=leds --platform=x86
to test that your environment is working correctly. If it compiles and runs your environment is set up. Correct output will be constant printing of “blink.”
👾 Guide to flashing on M1s
...