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;