Skip to content

Commit

Permalink
Add instructions for finding board mount point
Browse files Browse the repository at this point in the history
  • Loading branch information
nateinaction committed Oct 23, 2024
1 parent b7b3792 commit 422a836
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,17 @@ git --version
fprime-util build -j20
```

1. Find your board's mount location
> For the next steps you'll need to know where your board is mounted. To find your board's mount location run `ls -lah /dev/tyy*` for a list of all possible paths. On Linux and WSL your board's mount location will look like `/dev/ttyACM0`. On Mac your board's mount location will look like `/dev/tty.usbmodem101`.
1. Upload the firmware to the proves board over USB
> Don't forget to replace the board mount location after the `-p` flag
```sh
arduino-cli upload -v -b 115200 --fqbn rp2040:rp2040:rpipico -p /dev/ttyACM0 -i build-artifacts/rpipico/BroncoDeployment/bin/BroncoDeployment.uf2
```

1. Run GDS over serial:
> Don't forget to replace the board mount location after the `--uard-device` flag
```sh
fprime-gds -n --dictionary build-artifacts/rpipico/BroncoDeployment/dict/BroncoDeploymentTopologyAppDictionary.xml --comm-adapter uart --uart-baud 115200 --uart-device /dev/ttyACM0 --output-unframed-data -
```
> **Note:** Be sure to replace '--uart-device /dev/ttyACM0' to the proper port you connect to the board!

0 comments on commit 422a836

Please sign in to comment.