From 422a8367f0b261b1d8a0b08f6bb343af4f8597b1 Mon Sep 17 00:00:00 2001 From: Nate Gay Date: Tue, 22 Oct 2024 19:05:21 -0700 Subject: [PATCH] Add instructions for finding board mount point --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e4a0c8f..b8d9c1a 100644 --- a/README.md +++ b/README.md @@ -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!