Workshop project for the FSFW. Get started from a simple hello world application.
Go to file
Robin Müller f1e96a24e2
update README
2022-09-28 19:55:16 +02:00
01-tasks change the structure a bit 2022-09-28 19:53:31 +02:00
finished init README 2022-09-02 10:00:13 +02:00
fsfw@62f638a3d2 first chapter done 2022-09-28 19:44:30 +02:00
.gitignore starting impl 2022-09-02 09:58:43 +02:00
.gitmodules init fsfw-from-zero 2022-09-02 08:39:20 +02:00
CMakeLists.txt change the structure a bit 2022-09-28 19:53:31 +02:00
FSFWConfig.h continue workshop 2022-09-28 18:35:15 +02:00
README.md update README 2022-09-28 19:55:16 +02:00
main.cpp change the structure a bit 2022-09-28 19:53:31 +02:00

README.md

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.

Start by cloning this repository and updating the submodules to also clone the Flight Software Framework:

git clone https://egit.irs.uni-stuttgart.de/fsfw/fsfw-from-zero.git
git submodule init
git submodule update

Overview

This workshop does an incremental build-up of a simple software which is similar to an On-Board Software. It is organised in chapters which have multiple tasks. For each task, a solution source file will be provided. in a related subfolder with the same name.

It is recommended to have a basic understanding of C++ basics and object-oriented programming in general before doing this workshop. There are various books and online resources available to learn this.

Tasks Workshop

This chapter provides an introduction into the thread/tasks abstractions provided by the framework. The chapter descriptions and solutions are locaited inside 01-tasks.

It is recommended to start with this workshop.