From eb0e7c39e4ee96d0498ecf2eaa7cbac4f7ccef2c Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 20 Apr 2022 01:27:16 +0200 Subject: [PATCH] update README --- README.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4d897980..7f9e9d72 100644 --- a/README.md +++ b/README.md @@ -163,23 +163,26 @@ automatically. The EIVE OBSW is the default target if no target is specified. +**Debug** + ```sh mkdir build-Debug-Q7S && cd build-Debug-Q7S cmake -DTGT_BSP=arm/q7s -DCMAKE_BUILD_TYPE=Debug .. cmake --build . -j ``` -### Q7S Watchdog - -To build the EIVE watchdog, the corresponding target must be specified in the build command. -The configure steps do not need to be repeated if the folder has already been configured. +**Release** ```sh -mkdir build-Debug-Watchdog && cd build-Debug-Watchdog -cmake -DTGT_BSP=arm/q7s -DCMAKE_BUILD_TYPE=Debug .. -cmake --build . --target eive-watchdog -j +mkdir build-Release-Q7S && cd build-Release-Q7S +cmake -DTGT_BSP=arm/q7s -DCMAKE_BUILD_TYPE=Release .. +cmake --build . -j ``` +### Q7S Watchdog + +The watchdog will be built along side the primary OBSW binary. + ### Hosted You can also use the FSFW OSAL `host` to build on Windows or for generic OSes.