From 44ea04e1b10900834e6aa1d77c0019302699959c Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 2 Sep 2022 10:00:13 +0200 Subject: [PATCH] init README --- README.md | 6 ++++++ finished/main.cpp | 1 + 2 files changed, 7 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7b4a9dd --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +FSFW From Zero Workshop +======= + +This workshop gives an introduction to the Flight Software Framework, +starting from a simple hello world program in C++. As such, it it also suitable +for C++ beginners. diff --git a/finished/main.cpp b/finished/main.cpp index d45774d..7daa5d2 100644 --- a/finished/main.cpp +++ b/finished/main.cpp @@ -52,6 +52,7 @@ class MyExecutable: public SystemObject, public ExecutableObjectIF { static const object_id_t MY_OBJ = 1; void objFactory(void* args); + int main() { using namespace std::chrono_literals; cout << "hello world!" << endl;