diff --git a/docs/Tutorials/CrossCompilationSetup/ArmLinuxTutorial.md b/docs/Tutorials/CrossCompilationSetup/ArmLinuxTutorial.md index ac4eddad2a..c7953ae121 100644 --- a/docs/Tutorials/CrossCompilationSetup/ArmLinuxTutorial.md +++ b/docs/Tutorials/CrossCompilationSetup/ArmLinuxTutorial.md @@ -16,23 +16,23 @@ scp -r build-artifacts/arm-hf-linux/ @ Users must fill in the username and device address above. Next run the F´ GDS without launching the native compilation (`-n`) and with the -dictionary from the build above (`--dictionary ../build-artifacts///dict/<.xml document>`). +dictionary from the build above (`--dictionary ../build-artifacts///dict/<.json document>`). ```sh # For in-person workshops and ARM 64-bit hardware # In: project root folder -fprime-gds -n --dictionary build-artifacts/aarch64-linux//dict/.xml --ip-client --ip-address +fprime-gds -n --dictionary build-artifacts/aarch64-linux//dict/.json --ip-client --ip-address # For ARM 32-bit hardware # In: project root folder -fprime-gds -n --dictionary build-artifacts/aarch64-linux//dict/.xml --ip-client --ip-address +fprime-gds -n --dictionary build-artifacts/aarch64-linux//dict/.json --ip-client --ip-address ``` > This depends on a flight software deployment that uses TcpServer as the communications driver implementation. In another terminal SSH into the device and run the uploaded software: ```sh ssh @ -sudo deployment/bin/ -a 0.0.0.0 -p 50000 +deployment/bin/ -a 0.0.0.0 -p 50000 ``` > User should fill in the username and device address above and ensure the correct executable is supplied.