From e7840dee811c1a2625a8f2ce4ebc99cda8796d0b Mon Sep 17 00:00:00 2001 From: Amber Borjigin <151589909+aborjigin@users.noreply.github.com> Date: Mon, 4 Aug 2025 22:41:32 +0000 Subject: [PATCH] Update cross-compilation.md (#3979) --- docs/tutorials/cross-compilation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/tutorials/cross-compilation.md b/docs/tutorials/cross-compilation.md index 016058ee7c..bbd9944c1e 100644 --- a/docs/tutorials/cross-compilation.md +++ b/docs/tutorials/cross-compilation.md @@ -170,11 +170,11 @@ First, in a terminal upload the software to hardware platform. This is done with ```sh # For ARM 64-bit hardware # In: project root folder -scp -r build-artifacts/aarch64-linux/ @:deployment +scp build-artifacts/aarch64-linux//bin/ @:deployment # For ARM 32-bit hardware # In: project root folder -scp -r build-artifacts/arm-hf-linux/ @:deployment +scp build-artifacts/arm-hf-linux//bin/ @:deployment ``` > Users must fill in the username and device address above. @@ -188,7 +188,7 @@ fprime-gds -n --dictionary build-artifacts/aarch64-linux//di # For ARM 32-bit hardware # In: project root folder -fprime-gds -n --dictionary build-artifacts/aarch64-linux//dict/.json --ip-client --ip-address +fprime-gds -n --dictionary build-artifacts/arm-hf-linux//dict/.json --ip-client --ip-address ``` > [!NOTE] > This depends on a flight software deployment that uses TcpServer as the communications driver implementation. @@ -196,7 +196,7 @@ fprime-gds -n --dictionary build-artifacts/aarch64-linux//di In another terminal SSH into the device and run the uploaded software: ```sh ssh @ -deployment/bin/ -a 0.0.0.0 -p 50000 +./deployment -a 0.0.0.0 -p 50000 ``` > User should fill in the username and device address above and ensure the correct executable is supplied.