2021-12-01 11:04:24 +01:00
|
|
|
.. _highlevel:
|
|
|
|
|
2021-05-18 15:31:04 +02:00
|
|
|
High-level overview
|
2021-12-01 11:04:24 +01:00
|
|
|
===================
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
Structure
|
|
|
|
----------
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2022-09-15 13:57:39 +02:00
|
|
|
The general structure is driven by the usage of interfaces provided by objects.
|
|
|
|
The FSFW uses C++17 as baseline. Most modern compilers like GCC should have support for this
|
|
|
|
standard, even for micocontrollers.
|
|
|
|
|
|
|
|
The FSFW might use dynamic allocation during program initialization but not during runtime.
|
|
|
|
It offers pool objects, static containers and it also exposes the
|
|
|
|
`Embedded Template Library <https://www.etlcpp.com/>`_ to allow writing code which does not perform
|
|
|
|
allocation during runtime. The fsfw uses run-time type information but will not throw exceptions.
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
Failure Handling
|
|
|
|
-----------------
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
Functions should return a defined :cpp:type:`ReturnValue_t` to signal to the caller that something has
|
2022-08-16 12:29:53 +02:00
|
|
|
gone wrong. Returnvalues must be unique. For this the function :cpp:func:`returnvalue::makeCode`
|
2021-12-01 11:04:24 +01:00
|
|
|
or the :ref:`macro MAKE_RETURN_CODE <retvalapi>` can be used. The ``CLASS_ID`` is a unique ID for that type of object.
|
|
|
|
See the :ref:`FSFW Class IDs file <fwclassids>`. The user can add custom ``CLASS_ID``\s via the
|
|
|
|
``fsfwconfig`` folder.
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
OSAL
|
|
|
|
------------
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
The FSFW provides operation system abstraction layers for Linux, FreeRTOS and RTEMS.
|
2021-01-13 11:39:19 +01:00
|
|
|
The OSAL provides periodic tasks, message queues, clocks and semaphores as well as mutexes.
|
2021-12-01 11:04:24 +01:00
|
|
|
The :ref:`OSAL README <osal>` provides more detailed information on provided components
|
2021-05-18 15:31:04 +02:00
|
|
|
and how to use them.
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
Core Components
|
|
|
|
----------------
|
2021-01-13 11:39:19 +01:00
|
|
|
|
|
|
|
The FSFW has following core components. More detailed informations can be found in the
|
2021-12-01 11:04:24 +01:00
|
|
|
:ref:`core component section <core>`:
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
1. Tasks: Abstraction for different (periodic) task types like periodic tasks or tasks
|
2021-05-18 15:31:04 +02:00
|
|
|
with fixed timeslots
|
|
|
|
2. ObjectManager: This module stores all `SystemObjects` by mapping a provided unique object ID
|
|
|
|
to the object handles.
|
2021-12-01 11:04:24 +01:00
|
|
|
3. Static Stores: Different stores are provided to store data of variable size (like telecommands
|
2021-05-18 15:31:04 +02:00
|
|
|
or small telemetry) in a pool structure without using dynamic memory allocation.
|
|
|
|
These pools are allocated up front.
|
2021-12-01 11:04:24 +01:00
|
|
|
4. Clock: This module provided common time related functions
|
|
|
|
5. EventManager: This module allows routing of events generated by `SystemObjects`
|
|
|
|
6. HealthTable: A component which stores the health states of objects
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
Static IDs in the framework
|
|
|
|
--------------------------------
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
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 ``misc/defaultcfg/fsfwconfig/objects``
|
|
|
|
inside the function ``Factory::setStaticFrameworkObjectIds``.
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
Events
|
|
|
|
----------------
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
Events are tied to objects. EventIds can be generated by calling the
|
|
|
|
:ref:`macro MAKE_EVENT <eventapi>` or the function :cpp:func:`event::makeEvent`.
|
|
|
|
This works analog to the returnvalues. Every object that needs own Event IDs has to get a
|
|
|
|
unique ``SUBSYSTEM_ID``. Every :cpp:class:`SystemObject` can call
|
|
|
|
:cpp:func:`SystemObject::triggerEvent` from the parent class.
|
2021-05-18 15:12:48 +02:00
|
|
|
Therefore, event messages contain the specific EventId and the objectId of the object that
|
|
|
|
has triggered.
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
Internal Communication
|
|
|
|
-------------------------
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
Components communicate mostly via Messages through Queues.
|
|
|
|
Those queues are created by calling the singleton ``QueueFactory::instance()->create`` which
|
2021-05-18 15:31:04 +02:00
|
|
|
will create `MessageQueue` instances for the used OSAL.
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
External Communication
|
|
|
|
--------------------------
|
2021-01-13 11:39:19 +01:00
|
|
|
|
|
|
|
The external communication with the mission control system is mostly up to the user implementation.
|
2021-12-01 11:04:24 +01:00
|
|
|
The FSFW provides PUS Services which can be used to but don't need to be used.
|
2021-01-13 11:39:19 +01:00
|
|
|
The services can be seen as a conversion from a TC to a message based communication and back.
|
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
TMTC Communication
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
2021-05-18 15:31:04 +02:00
|
|
|
|
|
|
|
The FSFW provides some components to facilitate TMTC handling via the PUS commands.
|
2021-05-18 15:32:52 +02:00
|
|
|
For example, a UDP or TCP PUS server socket can be opened on a specific port using the
|
2021-12-01 11:04:24 +01:00
|
|
|
files located in ``osal/common``. The FSFW example uses this functionality to allow sending
|
|
|
|
telecommands and receiving telemetry using the
|
|
|
|
`TMTC commander application <https://github.com/robamu-org/tmtccmd>`_.
|
|
|
|
|
2021-05-18 15:31:04 +02:00
|
|
|
Simple commands like the PUS Service 17 ping service can be tested by simply running the
|
2021-12-01 11:04:24 +01:00
|
|
|
``tmtc_client_cli.py`` or ``tmtc_client_gui.py`` utility in
|
|
|
|
the `example tmtc folder <https://egit.irs.uni-stuttgart.de/fsfw/fsfw_example_public/src/branch/master/tmtc>`_
|
2021-05-18 15:32:52 +02:00
|
|
|
while the `fsfw_example` application is running.
|
2021-05-18 15:31:04 +02:00
|
|
|
|
|
|
|
More generally, any class responsible for handling incoming telecommands and sending telemetry
|
2021-12-01 11:04:24 +01:00
|
|
|
can implement the generic ``TmTcBridge`` class located in ``tmtcservices``. Many applications
|
2021-05-18 15:34:31 +02:00
|
|
|
also use a dedicated polling task for reading telecommands which passes telecommands
|
2021-12-01 11:04:24 +01:00
|
|
|
to the ``TmTcBridge`` implementation.
|
2021-05-18 15:31:04 +02:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
CCSDS Frames, CCSDS Space Packets and PUS
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-05-18 15:12:48 +02:00
|
|
|
If the communication is based on CCSDS Frames and Space Packets, several classes can be used to
|
2021-12-01 11:04:24 +01:00
|
|
|
distributed the packets to the corresponding services. Those can be found in ``tcdistribution``.
|
|
|
|
If Space Packets are used, a timestamper has to be provided by the user.
|
|
|
|
An example can be found in the ``timemanager`` folder, which uses ``CCSDSTime::CDS_short``.
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
Device Handlers
|
|
|
|
--------------------------
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
DeviceHandlers are another important component of the FSFW. The idea is, to have a software
|
|
|
|
counterpart of every physical device to provide a simple mode, health and commanding interface.
|
|
|
|
By separating the underlying Communication Interface with
|
|
|
|
``DeviceCommunicationIF``, a device handler (DH) can be tested on different hardware.
|
2021-05-18 15:12:48 +02:00
|
|
|
The DH has mechanisms to monitor the communication with the physical device which allow
|
2021-12-01 11:04:24 +01:00
|
|
|
for FDIR reaction. Device Handlers can be created by implementing ``DeviceHandlerBase``.
|
2021-05-18 15:31:04 +02:00
|
|
|
A standard FDIR component for the DH will be created automatically but can
|
|
|
|
be overwritten by the user. More information on DeviceHandlers can be found in the
|
2022-02-10 14:02:30 +01:00
|
|
|
related :ref:`documentation section <dhb-prim-doc>`.
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
Modes and Health
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
The two interfaces ``HasModesIF`` and ``HasHealthIF`` provide access for commanding and monitoring
|
|
|
|
of components. On-board mode management is implement in hierarchy system.
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
- Device handlers and controllers are the lowest part of the hierarchy.
|
|
|
|
- The next layer are assemblies. Those assemblies act as a component which handle
|
|
|
|
redundancies of handlers. Assemblies share a common core with the top level subsystem components
|
|
|
|
- The top level subsystem components are used to group assemblies, controllers and device handlers.
|
|
|
|
For example, a spacecraft can have a atttitude control subsystem and a power subsystem.
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
Those assemblies are intended to act as auto-generated components from a database which describes
|
2021-05-18 15:12:48 +02:00
|
|
|
the subsystem modes. 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
|
2021-12-01 11:04:24 +01:00
|
|
|
controller as last component.
|
|
|
|
The target table is used to describe the state that is checked continuously by the subsystem.
|
|
|
|
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.
|
2021-05-18 15:12:48 +02:00
|
|
|
Therefore, it allows a modular system to create system modes and easy commanding of those, because
|
|
|
|
only the highest components must be commanded.
|
2021-01-13 11:39:19 +01:00
|
|
|
|
2021-12-01 11:04:24 +01:00
|
|
|
The health state represents if the component is able to perform its tasks.
|
2021-01-13 11:39:19 +01:00
|
|
|
This can be used to signal the system to avoid using this component instead of a redundant one.
|
2021-12-01 11:04:24 +01:00
|
|
|
The on-board FDIR uses the health state for isolation and recovery.
|