From 301716553db23b30d50ae1543feaafe56d1bc3bf Mon Sep 17 00:00:00 2001 From: Ken Gilmer Date: Wed, 4 Oct 2023 08:02:07 -0700 Subject: [PATCH] Update simulated_device_linux.md (#29555) Fix file paths and update header to be less confusing for newbies --- docs/guides/simulated_device_linux.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guides/simulated_device_linux.md b/docs/guides/simulated_device_linux.md index d04e7d739e04b1..686a5387eb6eb9 100644 --- a/docs/guides/simulated_device_linux.md +++ b/docs/guides/simulated_device_linux.md @@ -38,7 +38,7 @@ need to be specifically built. ./scripts/examples/gn_build_example.sh examples/placeholder/linux out/debug/simulated/ chip_tests_zap_config=\"app1\" ``` -## Build the App with gn and ninja +## Build the App with gn and ninja (alternative) In order to utilize the app against a commissioner or controller, the app will need to be specifically built. @@ -57,7 +57,7 @@ Now that the building is completed there is a `chip-app1` binary created. This binary can be executed on a linux os. ``` -./out/simulated/chip-app1 +./out/debug/simulated/chip-app1 ``` ## Running the app with test parameter @@ -66,7 +66,7 @@ Now that the building is completed there is a `chip-app1` binary created. This binary can be executed on a linux os with test commands. ``` -./out/simulated/chip-app1 --command [TEST NAME] +./out/debug/simulated/chip-app1 --command [TEST NAME] ``` ## Interacting with the simulated app