Use Digital Bitbox's repo for simulator

This commit is contained in:
Andrew Chow 2019-01-24 20:43:52 -05:00
parent 64ebad3db3
commit af52908206
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ build-essential git cmake
Clone the repository:
```
$ git clone https://github.com/achow101/mcu -b simulator
$ git clone https://github.com/digitalbitbox/mcu
```
Build the simulator:

View File

@ -79,7 +79,7 @@ cd ../..
# Clone digital bitbox firmware if it doesn't exist, or update it if it does
dbb_setup_needed=false
if [ ! -d "mcu" ]; then
git clone --recursive https://github.com/achow101/mcu.git -b simulator
git clone --recursive https://github.com/digitalbitbox/mcu.git
cd mcu
dbb_setup_needed=true
else