fsfw/README.md

129 lines
7.6 KiB
Markdown
Raw Normal View History

![FSFW Logo](logo/FSFW_Logo_V3_bw.png)
2020-12-22 13:23:19 +01:00
# Flight Software Framework (FSFW)
2020-10-20 17:39:11 +02:00
2020-11-13 14:31:30 +01:00
The Flight Software Framework is a C++ Object Oriented Framework for unmanned,
automated systems like Satellites.
The initial version of the Flight Software Framework was developed during
the Flying Laptop Project by the University of Stuttgart in cooperation
with Airbus Defence and Space GmbH.
## Intended Use
2020-11-17 09:42:38 +01:00
The framework is designed for systems, which communicate with external devices, perform control loops, receive telecommands and send telemetry, and need to maintain a high level of availability.
Therefore, a mode and health system provides control over the states of the software and the controlled devices.
In addition, a simple mechanism of event based fault detection, isolation and recovery is implemented as well.
2020-12-22 13:23:19 +01:00
The recommended hardware is a microprocessor with more than 1 MB of RAM and 1 MB of non-volatile Memory.
2020-11-27 11:44:11 +01:00
For reference, current Applications use a Cobham Gaisler UT699 (LEON3FT), a ISISPACE IOBC or a Zynq-7020 SoC.
2020-12-22 13:23:19 +01:00
The `fsfw` was also tested on the STM32H743ZI-Nucleo board.
## How to Use
2020-11-13 14:31:30 +01:00
2020-12-22 13:23:19 +01:00
The [FSFW example](https://egit.irs.uni-stuttgart.de/fsfw/fsfw_example) provides a good starting point and a demo
to see the FSFW capabilities and build it with the Make or the CMake build system.
Generally, the FSFW is included in a project by compiling the FSFW sources and providing
a configuration folder and adding it to the include path.
A template configuration folder was provided and can be copied into the project root to have
a starting point. The [configuration section](doc/README-config.md#top) provides more specific information about
the possible options.
2020-11-13 14:31:30 +01:00
## Structure
2020-12-22 13:23:19 +01:00
The general structure is driven by the usage of interfaces provided by objects.
The FSFW uses C++11 as baseline. The intention behind this is that this C++ Standard should be widely available, even with older compilers.
2020-11-13 14:31:30 +01:00
The FSFW uses dynamic allocation during the initialization but provides static containers during runtime.
This simplifies the instantiation of objects and allows the usage of some standard containers.
Dynamic Allocation after initialization is discouraged and different solutions are provided in the FSFW to achieve that.
2020-12-22 13:23:19 +01:00
The fsfw uses run-time type information but exceptions are not allowed.
2020-11-13 14:31:30 +01:00
### Failure Handling
2020-12-22 13:23:19 +01:00
Functions should return a defined ReturnValue_t to signal to the caller that something has gone wrong.
2020-11-13 14:31:30 +01:00
Returnvalues must be unique. For this the function HasReturnvaluesIF::makeReturnCode or the Macro MAKE_RETURN can be used.
The CLASS_ID is a unique id for that type of object. See returnvalues/FwClassIds.
### OSAL
2020-12-22 13:23:19 +01:00
The FSFW provides operation system abstraction layers for Linux, FreeRTOS and RTEMS.
A independent Host OSAL is in development which will provide abstraction for common type of
host OSes (tested for Linux and Windows, not for MacOS yet).
The OSAL provides periodic tasks, message queues, clocks and semaphores as well as mutexes.
2020-11-13 14:31:30 +01:00
2020-12-22 13:23:19 +01:00
### Core Components
2020-11-13 14:31:30 +01:00
2020-12-22 13:23:19 +01:00
The FSFW has following core components. More detailed informations can be found in the
[core component section](doc/README-core.md#top):
2020-11-13 14:31:30 +01:00
2020-12-22 13:23:19 +01:00
1. Tasks: Abstraction for different (periodic) task types like periodic tasks or tasks with fixed timeslots
2. ObjectManager: This module stores all `SystemObjects` by mapping a provided unique object ID to the object handles.
3. Static Stores: Different stores are provided to store data of variable size (like telecommands or small telemetry) in a pool structure without
using dynamic memory allocation. These pools are allocated up front.
3. Clock: This module provided common time related functions
4. EventManager: This module allows routing of events generated by `SystemObjects`
5. HealthTable: A component which stores the health states of objects
2020-11-13 14:31:30 +01:00
### Static Ids in the framework
Some parts of the framework use a static routing address for communication.
An example setup of ids can be found in the example config in "defaultcft/fsfwconfig/objects/Factory::setStaticFrameworkObjectIds()".
### Events
Events are tied to objects. EventIds can be generated by calling the Macro MAKE_EVENT. This works analog to the returnvalues.
Every object that needs own EventIds has to get a unique SUBSYSTEM_ID.
Every SystemObject can call triggerEvent from the parent class.
Therefore, event messages contain the specific EventId and the objectId of the object that has triggered.
### Internal Communication
Components communicate mostly over Message through Queues.
Those queues are created by calling the singleton QueueFactory::instance()->create().
### External Communication
The external communication with the mission control system is mostly up to the user implementation.
The FSFW provides PUS Services which can be used to but don't need to be used.
The services can be seen as a conversion from a TC to a message based communication and back.
#### CCSDS Frames, CCSDS Space Packets and PUS
If the communication is based on CCSDS Frames and Space Packets, several classes can be used to distributed the packets to the corresponding services. Those can be found in tcdistribution.
If Space Packets are used, a timestamper must be created.
An example can be found in the timemanager folder, this uses CCSDSTime::CDS_short.
2020-12-22 13:23:19 +01:00
#### Device Handlers
2020-11-13 14:31:30 +01:00
2020-12-22 13:23:19 +01:00
DeviceHandlers are another important component of the FSFW.
2020-11-13 14:31:30 +01:00
The idea is, to have a software counterpart of every physical device to provide a simple mode, health and commanding interface.
2020-12-22 13:23:19 +01:00
By separating the underlying Communication Interface with DeviceCommunicationIF, a device handler (DH) can be tested on different hardware.
2020-11-13 14:31:30 +01:00
The DH has mechanisms to monitor the communication with the physical device which allow for FDIR reaction.
2020-12-22 13:23:19 +01:00
Device Handlers can be created by overriding `DeviceHandlerBase`.
2020-11-13 14:31:30 +01:00
A standard FDIR component for the DH will be created automatically but can be overwritten by the user.
2020-12-22 13:23:19 +01:00
More information on DeviceHandlers can be found in the related [documentation section](doc/README-devicehandlers.md#top).
2020-11-13 14:31:30 +01:00
#### Modes, Health
The two interfaces HasModesIF and HasHealthIF provide access for commanding and monitoring of components.
2020-11-13 14:36:32 +01:00
On-board Mode Management is implement in hierarchy system.
2020-11-13 14:31:30 +01:00
DeviceHandlers and Controllers are the lowest part of the hierarchy.
2020-11-27 11:44:11 +01:00
The next layer are Assemblies. Those assemblies act as a component which handle redundancies of handlers.
2020-11-13 14:31:30 +01:00
Assemblies share a common core with the next level which are the Subsystems.
2020-11-13 14:36:32 +01:00
Those Assemblies are intended to act as auto-generated components from a database which describes the subsystem modes.
2020-11-13 14:31:30 +01:00
The definitions contain transition and target tables which contain the DH, Assembly and Controller Modes to be commanded.
Transition tables contain as many steps as needed to reach the mode from any other mode, e.g. a switch into any higher AOCS mode might first turn on the sensors, than the actuators and the controller as last component.
2020-11-27 11:44:11 +01:00
The target table is used to describe the state that is checked continuously by the subsystem.
2020-11-13 14:31:30 +01:00
All of this allows System Modes to be generated as Subsystem object as well from the same database.
This System contains list of subsystem modes in the transition and target tables.
2020-11-27 11:44:11 +01:00
Therefore, it allows a modular system to create system modes and easy commanding of those, because only the highest components must be commanded.
2020-11-13 14:36:32 +01:00
2020-11-13 14:31:30 +01:00
The health state represents if the component is able to perform its tasks.
This can be used to signal the system to avoid using this component instead of a redundant one.
The on-board FDIR uses the health state for isolation and recovery.
## Unit Tests
Unit Tests are provided in the unittest folder. Those use the catch2 framework but do not include catch2 itself.
See README.md in the unittest Folder.