From 09d43cb015b39c74e8547dd7db84c3f63c198187 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 5 Oct 2022 09:54:46 +0200 Subject: [PATCH] update README and ws-ipc --- README.md | 1 + ws-ipc/README.md | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index 9b3d674..dd156a2 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ the [Flight Software Framework](https://egit.irs.uni-stuttgart.de/fsfw): ```sh git clone https://egit.irs.uni-stuttgart.de/fsfw/fsfw-from-zero.git +cd fsfw-from-zero git submodule init git submodule update ``` diff --git a/ws-ipc/README.md b/ws-ipc/README.md index 323ebcd..07a2a4b 100644 --- a/ws-ipc/README.md +++ b/ws-ipc/README.md @@ -15,3 +15,7 @@ if you are completely new to concurrency in C++. # 1. Sharing state between two threads ## Subtasks + +1. Create two threads which run some tasks with a period of 50ms using the + [`std::thread`](https://en.cppreference.com/w/cpp/thread/thread) API +2. Introduce a static global `uint32_t` variable called `SHARED_VARIABLE` \ No newline at end of file