starting fsfw

This commit is contained in:
2023-09-11 18:12:52 +02:00
parent dcce9574c8
commit fb8f4a68e7
419 changed files with 146315 additions and 10 deletions
.gitmodulesCMakeLists.txt
bsp_z7
common
contrib/boost
preprocessor.hpp
preprocessor
arithmetic.hpp
arithmetic
array.hpp
array
assert_msg.hppcat.hppcomma.hppcomma_if.hppcomparison.hpp
comparison
config
control.hpp
control
debug.hpp
debug
dec.hpp
detail
empty.hppenum.hppenum_params.hppenum_params_with_a_default.hppenum_params_with_defaults.hppenum_shifted.hppenum_shifted_params.hppexpand.hppexpr_if.hppfacilities.hpp
facilities
for.hppidentity.hppif.hppinc.hppiterate.hppiteration.hpp
iteration
library.hpplimits.hpplist.hpp
list
logical.hpp
logical
max.hppmin.hpppunctuation.hpp
punctuation
repeat.hpprepeat_2nd.hpprepeat_3rd.hpprepeat_from_to.hpprepeat_from_to_2nd.hpprepeat_from_to_3rd.hpprepetition.hpp
repetition
selection.hpp
selection
seq.hpp
seq
slot.hpp
slot
stringize.hpptuple.hpp
tuple
variadic.hpp
variadic
while.hppwstringize.hpp
fsfw
mission/controller

@ -0,0 +1,29 @@
# /* **************************************************************************
# * *
# * (C) Copyright Paul Mensonides 2002.
# * Distributed under the Boost Software License, Version 1.0. (See
# * accompanying file LICENSE_1_0.txt or copy at
# * http://www.boost.org/LICENSE_1_0.txt)
# * *
# ************************************************************************** */
#
# /* See http://www.boost.org for most recent version. */
#
# ifndef BOOST_PREPROCESSOR_ARRAY_REVERSE_HPP
# define BOOST_PREPROCESSOR_ARRAY_REVERSE_HPP
#
# include <boost/preprocessor/array/data.hpp>
# include <boost/preprocessor/array/size.hpp>
# include <boost/preprocessor/config/config.hpp>
# include <boost/preprocessor/tuple/reverse.hpp>
#
# /* BOOST_PP_ARRAY_REVERSE */
#
# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()
# define BOOST_PP_ARRAY_REVERSE(array) (BOOST_PP_ARRAY_SIZE(array), BOOST_PP_TUPLE_REVERSE(BOOST_PP_ARRAY_SIZE(array), BOOST_PP_ARRAY_DATA(array)))
# else
# define BOOST_PP_ARRAY_REVERSE(array) BOOST_PP_ARRAY_REVERSE_I(array)
# define BOOST_PP_ARRAY_REVERSE_I(array) (BOOST_PP_ARRAY_SIZE(array), BOOST_PP_TUPLE_REVERSE(BOOST_PP_ARRAY_SIZE(array), BOOST_PP_ARRAY_DATA(array)))
# endif
#
# endif