markdown update not required, will be removed
This commit is contained in:
parent
8dea13742f
commit
bcbbc9763a
@ -4,13 +4,12 @@ High-level overview
|
|||||||
# Structure
|
# Structure
|
||||||
|
|
||||||
The general structure is driven by the usage of interfaces provided by objects.
|
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
|
The FSFW uses C++11 as baseline. The intention behind this is that this C++ Standard should be
|
||||||
standard, even for micocontrollers.
|
widely available, even with older compilers.
|
||||||
|
The FSFW uses dynamic allocation during the initialization but provides static containers during runtime.
|
||||||
The FSFW might use dynamic allocation during program initialization but not during runtime.
|
This simplifies the instantiation of objects and allows the usage of some standard containers.
|
||||||
It offers pool objects, static containers and it also exposes the Embedded Template Library
|
Dynamic Allocation after initialization is discouraged and different solutions are provided in the
|
||||||
to allow writing code which does not perform allocation during runtime. The fsfw uses run-time type
|
FSFW to achieve that. The fsfw uses run-time type information but exceptions are not allowed.
|
||||||
information but will not throw exceptions.
|
|
||||||
|
|
||||||
# Failure Handling
|
# Failure Handling
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user