diff --git a/.github/workflows/actions_build.yml b/.github/workflows/actions_build.yml index ba36981c8..23389f1d4 100644 --- a/.github/workflows/actions_build.yml +++ b/.github/workflows/actions_build.yml @@ -3,8 +3,8 @@ name: Github Actions Build on: [push] env: - COMMS_BRANCH: v5.2.5 - COMMSDSL_BRANCH: v6.3.3 + COMMS_TAG: v5.2.7 + COMMSDSL_TAG: v6.3.4 jobs: @@ -47,8 +47,8 @@ jobs: COMMON_INSTALL_DIR: ${{runner.workspace}}/build/install COMMON_BUILD_TYPE: ${{matrix.type}} COMMON_CXX_STANDARD: ${{matrix.cpp}} - COMMS_TAG: ${{env.COMMS_BRANCH}} - COMMSDSL_TAG: ${{env.COMMSDSL_BRANCH}} + COMMS_TAG: ${{env.COMMS_TAG}} + COMMSDSL_TAG: ${{env.COMMSDSL_TAG}} - name: Configure CMake shell: bash @@ -99,8 +99,8 @@ jobs: COMMON_INSTALL_DIR: ${{runner.workspace}}/build/install COMMON_BUILD_TYPE: ${{matrix.type}} COMMON_CXX_STANDARD: ${{matrix.cpp}} - COMMS_TAG: ${{env.COMMS_BRANCH}} - COMMSDSL_TAG: ${{env.COMMSDSL_BRANCH}} + COMMS_TAG: ${{env.COMMS_TAG}} + COMMSDSL_TAG: ${{env.COMMSDSL_TAG}} - name: Configure CMake shell: bash @@ -154,8 +154,8 @@ jobs: COMMON_INSTALL_DIR: ${{runner.workspace}}/build/install COMMON_BUILD_TYPE: ${{matrix.type}} COMMON_CXX_STANDARD: ${{matrix.cpp}} - COMMS_TAG: ${{env.COMMS_BRANCH}} - COMMSDSL_TAG: ${{env.COMMSDSL_BRANCH}} + COMMS_TAG: ${{env.COMMS_TAG}} + COMMSDSL_TAG: ${{env.COMMSDSL_TAG}} - name: Configure CMake shell: bash @@ -174,6 +174,60 @@ jobs: env: VERBOSE: 1 + build_gcc_ubuntu_24_04: + runs-on: ubuntu-24.04 + strategy: + fail-fast: false + matrix: + type: [Debug, Release, MinSizeRel] + cc_ver: [13, 14] + cpp: [11, 14, 17, 20, 23] + exclude: + - cc_ver: 13 + cpp: 23 + + steps: + - uses: actions/checkout@v2 + + - name: Prepare Install + run: sudo apt-get update --fix-missing + + - name: Install Packages + run: sudo apt install libqt5gui5 libboost-all-dev libxml2-dev gcc-${{matrix.cc_ver}} g++-${{matrix.cc_ver}} + + - name: Create Build Environment + run: cmake -E make_directory ${{runner.workspace}}/build + + - name: Prepare externals + shell: bash + run: $GITHUB_WORKSPACE/script/prepare_externals.sh + env: + BUILD_DIR: ${{runner.workspace}}/build + CC: gcc-${{matrix.cc_ver}} + CXX: g++-${{matrix.cc_ver}} + EXTERNALS_DIR: ${{runner.workspace}}/externals + COMMON_INSTALL_DIR: ${{runner.workspace}}/build/install + COMMON_BUILD_TYPE: ${{matrix.type}} + COMMON_CXX_STANDARD: ${{matrix.cpp}} + COMMS_TAG: ${{env.COMMS_TAG}} + COMMSDSL_TAG: ${{env.COMMSDSL_TAG}} + + - name: Configure CMake + shell: bash + working-directory: ${{runner.workspace}}/build + run: | + cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=${{matrix.type}} -DCMAKE_CXX_STANDARD=${{matrix.cpp}} \ + -DCMAKE_INSTALL_PREFIX=install -DCMAKE_PREFIX_PATH=${{runner.workspace}}/build/install + env: + CC: gcc-${{matrix.cc_ver}} + CXX: g++-${{matrix.cc_ver}} + + - name: Build + working-directory: ${{runner.workspace}}/build + shell: bash + run: cmake --build . --config ${{matrix.type}} --target install + env: + VERBOSE: 1 build_clang_old_ubuntu_20_04: runs-on: ubuntu-20.04 @@ -217,8 +271,8 @@ jobs: COMMON_INSTALL_DIR: ${{runner.workspace}}/build/install COMMON_BUILD_TYPE: ${{matrix.type}} COMMON_CXX_STANDARD: ${{matrix.cpp}} - COMMS_TAG: ${{env.COMMS_BRANCH}} - COMMSDSL_TAG: ${{env.COMMSDSL_BRANCH}} + COMMS_TAG: ${{env.COMMS_TAG}} + COMMSDSL_TAG: ${{env.COMMSDSL_TAG}} - name: Configure CMake shell: bash @@ -276,8 +330,8 @@ jobs: COMMON_INSTALL_DIR: ${{runner.workspace}}/build/install COMMON_BUILD_TYPE: ${{matrix.type}} COMMON_CXX_STANDARD: ${{matrix.cpp}} - COMMS_TAG: ${{env.COMMS_BRANCH}} - COMMSDSL_TAG: ${{env.COMMSDSL_BRANCH}} + COMMS_TAG: ${{env.COMMS_TAG}} + COMMSDSL_TAG: ${{env.COMMSDSL_TAG}} - name: Configure CMake shell: bash @@ -336,8 +390,66 @@ jobs: COMMON_INSTALL_DIR: ${{runner.workspace}}/build/install COMMON_BUILD_TYPE: ${{matrix.type}} COMMON_CXX_STANDARD: ${{matrix.cpp}} - COMMS_TAG: ${{env.COMMS_BRANCH}} - COMMSDSL_TAG: ${{env.COMMSDSL_BRANCH}} + COMMS_TAG: ${{env.COMMS_TAG}} + COMMSDSL_TAG: ${{env.COMMSDSL_TAG}} + + - name: Configure CMake + shell: bash + working-directory: ${{runner.workspace}}/build + run: | + cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=${{matrix.type}} -DCMAKE_CXX_STANDARD=${{matrix.cpp}} \ + -DCMAKE_INSTALL_PREFIX=install -DCMAKE_PREFIX_PATH=${{runner.workspace}}/build/install + env: + CC: clang-${{matrix.cc_ver}} + CXX: clang++-${{matrix.cc_ver}} + + - name: Build + working-directory: ${{runner.workspace}}/build + shell: bash + run: cmake --build . --config ${{matrix.type}} --target install + env: + VERBOSE: 1 + + build_clang_ubuntu_24_04: + runs-on: ubuntu-24.04 + strategy: + fail-fast: false + matrix: + type: [Debug, Release, MinSizeRel] + cc_ver: [16, 17, 18] + cpp: [11, 14, 17, 20, 23] + exclude: + - cc_ver: 16 + cpp: 23 + - cc_ver: 17 + cpp: 23 + + + steps: + - uses: actions/checkout@v2 + + - name: Prepare Install + run: sudo apt-get update --fix-missing + + - name: Install Packages + run: sudo apt install libqt5gui5 libboost-all-dev libxml2-dev clang-${{matrix.cc_ver}} + + - name: Create Build Environment + run: cmake -E make_directory ${{runner.workspace}}/build + + - name: Prepare externals + shell: bash + run: $GITHUB_WORKSPACE/script/prepare_externals.sh + env: + BUILD_DIR: ${{runner.workspace}}/build + CC: clang-${{matrix.cc_ver}} + CXX: clang++-${{matrix.cc_ver}} + EXTERNALS_DIR: ${{runner.workspace}}/externals + COMMON_INSTALL_DIR: ${{runner.workspace}}/build/install + COMMON_BUILD_TYPE: ${{matrix.type}} + COMMON_CXX_STANDARD: ${{matrix.cpp}} + COMMS_TAG: ${{env.COMMS_TAG}} + COMMSDSL_TAG: ${{env.COMMSDSL_TAG}} - name: Configure CMake shell: bash @@ -354,7 +466,7 @@ jobs: shell: bash run: cmake --build . --config ${{matrix.type}} --target install env: - VERBOSE: 1 + VERBOSE: 1 build_msvc_2019: runs-on: windows-2019 @@ -396,7 +508,8 @@ jobs: working-directory: ${{runner.workspace}}/build run: | cmake %GITHUB_WORKSPACE% -A ${{matrix.arch}} -DCMAKE_BUILD_TYPE=${{matrix.type}} -DCMAKE_INSTALL_PREFIX=install ^ - -DCMAKE_PREFIX_PATH="${{runner.workspace}}/build/install" -DBoost_USE_STATIC_LIBS=ON ^ + -DCMAKE_PREFIX_PATH="${{runner.workspace}}/build/install" ^ + -DCMAKE_POLICY_DEFAULT_CMP0167=OLD -DBoost_USE_STATIC_LIBS=ON ^ -DCMAKE_CXX_STANDARD=${{matrix.cpp}} -DOPT_FORCE_EXTRA_BOOST_LIBS=ON - name: Build Target @@ -425,7 +538,7 @@ jobs: if: matrix.arch == 'x64' shell: cmd run: | - choco install boost-msvc-14.3 + choco install boost-msvc-14.3 --version=1.85.0 - name: Prepare externals shell: cmd @@ -447,7 +560,8 @@ jobs: working-directory: ${{runner.workspace}}/build run: | cmake %GITHUB_WORKSPACE% -A ${{matrix.arch}} -DCMAKE_BUILD_TYPE=${{matrix.type}} -DCMAKE_INSTALL_PREFIX=install ^ - -DCMAKE_PREFIX_PATH="${{runner.workspace}}/build/install" -DBoost_USE_STATIC_LIBS=ON ^ + -DCMAKE_PREFIX_PATH="${{runner.workspace}}/build/install" ^ + -DCMAKE_POLICY_DEFAULT_CMP0167=OLD -DBoost_USE_STATIC_LIBS=ON ^ -DCMAKE_CXX_STANDARD=${{matrix.cpp}} -DOPT_FORCE_EXTRA_BOOST_LIBS=ON - name: Build Target diff --git a/CMakeLists.txt b/CMakeLists.txt index d20e3693c..110320d15 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.1) +cmake_minimum_required (VERSION 3.10) project ("cc_tutorial") option (OPT_WARN_AS_ERR "Treat warnings as error" ON) @@ -11,8 +11,17 @@ option (OPT_USE_SANITIZERS "Compile with sanitizers." OFF) ##################################################### -set (CMAKE_CXX_STANDARD 11 CACHE STRING "The C++ standard to use") -set (MIN_COMMSDSL_VERSION "6.3.3") +set (MIN_COMMSDSL_VERSION "6.3.4") + +if ("${CMAKE_CXX_STANDARD}" STREQUAL "") + set(CMAKE_CXX_STANDARD 11) +endif () + +if (("${CMAKE_VERSION}" VERSION_GREATER_EQUAL "3.30") AND + (NOT DEFINED CMAKE_POLICY_DEFAULT_CMP0167)) + # Find boost cmake configuration from the boost installation + cmake_policy(SET CMP0167 NEW) +endif () include(GNUInstallDirs) diff --git a/README.md b/README.md index d44eef826..0363b19a5 100644 --- a/README.md +++ b/README.md @@ -122,8 +122,7 @@ the code generators). There are also scripts ( [script/prepare_externals.sh](script/prepare_externals.sh) for Linux and [script/prepare_externals.bat](script/prepare_externals.bat) for Windows) which can help in preparation of these dependencies. They are also used -in configuration of the [github actions](.github/workflows/actions_build.yml) and -[appveyor](.appveyor.yml). +in configuration of the [github actions](.github/workflows/actions_build.yml). **NOTE**, that [Boost](https://www.boost.org) libraries are also required. In case Boost libraries are not installed in expected default location diff --git a/howtos/howto1/include/howto1/Interface.h b/howtos/howto1/include/howto1/Interface.h index feac5c220..09a58b495 100644 --- a/howtos/howto1/include/howto1/Interface.h +++ b/howtos/howto1/include/howto1/Interface.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Interface" interface class. diff --git a/howtos/howto1/include/howto1/InterfaceCommon.h b/howtos/howto1/include/howto1/InterfaceCommon.h index 42b8cd967..793744592 100644 --- a/howtos/howto1/include/howto1/InterfaceCommon.h +++ b/howtos/howto1/include/howto1/InterfaceCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto1/include/howto1/MsgId.h b/howtos/howto1/include/howto1/MsgId.h index 23412055e..c2d5d8323 100644 --- a/howtos/howto1/include/howto1/MsgId.h +++ b/howtos/howto1/include/howto1/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/howtos/howto1/include/howto1/Version.h b/howtos/howto1/include/howto1/Version.h index 9a16408b6..ec2a717ce 100644 --- a/howtos/howto1/include/howto1/Version.h +++ b/howtos/howto1/include/howto1/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace howto1 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/howtos/howto1/include/howto1/dispatch/DispatchClientInputMessage.h b/howtos/howto1/include/howto1/dispatch/DispatchClientInputMessage.h index 0c3d4efba..4d71c6843 100644 --- a/howtos/howto1/include/howto1/dispatch/DispatchClientInputMessage.h +++ b/howtos/howto1/include/howto1/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto1/include/howto1/dispatch/DispatchMessage.h b/howtos/howto1/include/howto1/dispatch/DispatchMessage.h index d329c6245..07f62f48f 100644 --- a/howtos/howto1/include/howto1/dispatch/DispatchMessage.h +++ b/howtos/howto1/include/howto1/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/howtos/howto1/include/howto1/dispatch/DispatchServerInputMessage.h b/howtos/howto1/include/howto1/dispatch/DispatchServerInputMessage.h index 790090459..7a27701ce 100644 --- a/howtos/howto1/include/howto1/dispatch/DispatchServerInputMessage.h +++ b/howtos/howto1/include/howto1/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto1/include/howto1/factory/AllMessagesDynMemMsgFactory.h b/howtos/howto1/include/howto1/factory/AllMessagesDynMemMsgFactory.h index 86cc2b753..d4b607f1d 100644 --- a/howtos/howto1/include/howto1/factory/AllMessagesDynMemMsgFactory.h +++ b/howtos/howto1/include/howto1/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/howtos/howto1/include/howto1/factory/ClientInputMessagesDynMemMsgFactory.h b/howtos/howto1/include/howto1/factory/ClientInputMessagesDynMemMsgFactory.h index 5d822bd41..d560d950e 100644 --- a/howtos/howto1/include/howto1/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/howtos/howto1/include/howto1/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/howtos/howto1/include/howto1/factory/ServerInputMessagesDynMemMsgFactory.h b/howtos/howto1/include/howto1/factory/ServerInputMessagesDynMemMsgFactory.h index fd12a2a6f..b0919c2f0 100644 --- a/howtos/howto1/include/howto1/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/howtos/howto1/include/howto1/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/howtos/howto1/include/howto1/field/FieldBase.h b/howtos/howto1/include/howto1/field/FieldBase.h index 809dc9a11..1f8586dba 100644 --- a/howtos/howto1/include/howto1/field/FieldBase.h +++ b/howtos/howto1/include/howto1/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/howtos/howto1/include/howto1/field/InterfaceFlags.h b/howtos/howto1/include/howto1/field/InterfaceFlags.h index 991041206..342211ee3 100644 --- a/howtos/howto1/include/howto1/field/InterfaceFlags.h +++ b/howtos/howto1/include/howto1/field/InterfaceFlags.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "InterfaceFlags" field. diff --git a/howtos/howto1/include/howto1/field/InterfaceFlagsCommon.h b/howtos/howto1/include/howto1/field/InterfaceFlagsCommon.h index b2c48401c..0f51e87fe 100644 --- a/howtos/howto1/include/howto1/field/InterfaceFlagsCommon.h +++ b/howtos/howto1/include/howto1/field/InterfaceFlagsCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto1/include/howto1/field/MsgId.h b/howtos/howto1/include/howto1/field/MsgId.h index 84270a714..30dd41a45 100644 --- a/howtos/howto1/include/howto1/field/MsgId.h +++ b/howtos/howto1/include/howto1/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/howtos/howto1/include/howto1/field/MsgIdCommon.h b/howtos/howto1/include/howto1/field/MsgIdCommon.h index 9b166ef4c..6679e58ba 100644 --- a/howtos/howto1/include/howto1/field/MsgIdCommon.h +++ b/howtos/howto1/include/howto1/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto1/include/howto1/frame/Frame.h b/howtos/howto1/include/howto1/frame/Frame.h index b913b6ede..5825e2a7d 100644 --- a/howtos/howto1/include/howto1/frame/Frame.h +++ b/howtos/howto1/include/howto1/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/howtos/howto1/include/howto1/frame/FrameCommon.h b/howtos/howto1/include/howto1/frame/FrameCommon.h index 6f4f7baf1..264ad3ec3 100644 --- a/howtos/howto1/include/howto1/frame/FrameCommon.h +++ b/howtos/howto1/include/howto1/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto1/include/howto1/input/AllMessages.h b/howtos/howto1/include/howto1/input/AllMessages.h index 8ccfd56f2..0ee8e4444 100644 --- a/howtos/howto1/include/howto1/input/AllMessages.h +++ b/howtos/howto1/include/howto1/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/howtos/howto1/include/howto1/input/ClientInputMessages.h b/howtos/howto1/include/howto1/input/ClientInputMessages.h index 39f74dd5e..a3b3c00d1 100644 --- a/howtos/howto1/include/howto1/input/ClientInputMessages.h +++ b/howtos/howto1/include/howto1/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/howtos/howto1/include/howto1/input/ServerInputMessages.h b/howtos/howto1/include/howto1/input/ServerInputMessages.h index 271d19996..7595259a4 100644 --- a/howtos/howto1/include/howto1/input/ServerInputMessages.h +++ b/howtos/howto1/include/howto1/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/howtos/howto1/include/howto1/message/Msg1.h b/howtos/howto1/include/howto1/message/Msg1.h index 2d20bc6eb..8720e2a5a 100644 --- a/howtos/howto1/include/howto1/message/Msg1.h +++ b/howtos/howto1/include/howto1/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/howtos/howto1/include/howto1/message/Msg1Common.h b/howtos/howto1/include/howto1/message/Msg1Common.h index d4375f9f3..ac7abaf10 100644 --- a/howtos/howto1/include/howto1/message/Msg1Common.h +++ b/howtos/howto1/include/howto1/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto1/include/howto1/message/Msg2.h b/howtos/howto1/include/howto1/message/Msg2.h index d8444235e..3c1066ea2 100644 --- a/howtos/howto1/include/howto1/message/Msg2.h +++ b/howtos/howto1/include/howto1/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/howtos/howto1/include/howto1/message/Msg2Common.h b/howtos/howto1/include/howto1/message/Msg2Common.h index 02ac61951..9f81a0f14 100644 --- a/howtos/howto1/include/howto1/message/Msg2Common.h +++ b/howtos/howto1/include/howto1/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto1/include/howto1/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto1/include/howto1/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index d9cb020bf..f2a6f5064 100644 --- a/howtos/howto1/include/howto1/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto1/include/howto1/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/howtos/howto1/include/howto1/options/BareMetalDefaultOptions.h b/howtos/howto1/include/howto1/options/BareMetalDefaultOptions.h index 5f8d7988f..c029ae8b7 100644 --- a/howtos/howto1/include/howto1/options/BareMetalDefaultOptions.h +++ b/howtos/howto1/include/howto1/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/howtos/howto1/include/howto1/options/ClientDefaultOptions.h b/howtos/howto1/include/howto1/options/ClientDefaultOptions.h index a1ffc8542..40938c563 100644 --- a/howtos/howto1/include/howto1/options/ClientDefaultOptions.h +++ b/howtos/howto1/include/howto1/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/howtos/howto1/include/howto1/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto1/include/howto1/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index ab66a3982..eaa6861fd 100644 --- a/howtos/howto1/include/howto1/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto1/include/howto1/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/howtos/howto1/include/howto1/options/DataViewDefaultOptions.h b/howtos/howto1/include/howto1/options/DataViewDefaultOptions.h index 9f6f95136..ab7b563a0 100644 --- a/howtos/howto1/include/howto1/options/DataViewDefaultOptions.h +++ b/howtos/howto1/include/howto1/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/howtos/howto1/include/howto1/options/DefaultOptions.h b/howtos/howto1/include/howto1/options/DefaultOptions.h index cb720df23..2e904a263 100644 --- a/howtos/howto1/include/howto1/options/DefaultOptions.h +++ b/howtos/howto1/include/howto1/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/howtos/howto1/include/howto1/options/ServerDefaultOptions.h b/howtos/howto1/include/howto1/options/ServerDefaultOptions.h index 87bd22737..a38bf8f80 100644 --- a/howtos/howto1/include/howto1/options/ServerDefaultOptions.h +++ b/howtos/howto1/include/howto1/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/howtos/howto1/include/howto1/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto1/include/howto1/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 7d1fdb957..0dace4777 100644 --- a/howtos/howto1/include/howto1/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto1/include/howto1/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/howtos/howto10/include/howto10/Interface.h b/howtos/howto10/include/howto10/Interface.h index ffe156d3e..cbf392b17 100644 --- a/howtos/howto10/include/howto10/Interface.h +++ b/howtos/howto10/include/howto10/Interface.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Interface" interface class. diff --git a/howtos/howto10/include/howto10/InterfaceCommon.h b/howtos/howto10/include/howto10/InterfaceCommon.h index 6ec000e94..400f99071 100644 --- a/howtos/howto10/include/howto10/InterfaceCommon.h +++ b/howtos/howto10/include/howto10/InterfaceCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto10/include/howto10/MsgId.h b/howtos/howto10/include/howto10/MsgId.h index b6b45a1af..3a65ad017 100644 --- a/howtos/howto10/include/howto10/MsgId.h +++ b/howtos/howto10/include/howto10/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/howtos/howto10/include/howto10/Version.h b/howtos/howto10/include/howto10/Version.h index 3eeafe3e2..9a6d023a0 100644 --- a/howtos/howto10/include/howto10/Version.h +++ b/howtos/howto10/include/howto10/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace howto10 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/howtos/howto10/include/howto10/dispatch/DispatchClientInputMessage.h b/howtos/howto10/include/howto10/dispatch/DispatchClientInputMessage.h index dcf487d65..e96324491 100644 --- a/howtos/howto10/include/howto10/dispatch/DispatchClientInputMessage.h +++ b/howtos/howto10/include/howto10/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto10/include/howto10/dispatch/DispatchMessage.h b/howtos/howto10/include/howto10/dispatch/DispatchMessage.h index 0cf79c6a5..1a45073d4 100644 --- a/howtos/howto10/include/howto10/dispatch/DispatchMessage.h +++ b/howtos/howto10/include/howto10/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/howtos/howto10/include/howto10/dispatch/DispatchServerInputMessage.h b/howtos/howto10/include/howto10/dispatch/DispatchServerInputMessage.h index 56c7e570c..24249aa85 100644 --- a/howtos/howto10/include/howto10/dispatch/DispatchServerInputMessage.h +++ b/howtos/howto10/include/howto10/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto10/include/howto10/factory/AllMessagesDynMemMsgFactory.h b/howtos/howto10/include/howto10/factory/AllMessagesDynMemMsgFactory.h index 14f317e29..acab8056c 100644 --- a/howtos/howto10/include/howto10/factory/AllMessagesDynMemMsgFactory.h +++ b/howtos/howto10/include/howto10/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/howtos/howto10/include/howto10/factory/ClientInputMessagesDynMemMsgFactory.h b/howtos/howto10/include/howto10/factory/ClientInputMessagesDynMemMsgFactory.h index 0c55189a6..25a587cc9 100644 --- a/howtos/howto10/include/howto10/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/howtos/howto10/include/howto10/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/howtos/howto10/include/howto10/factory/ServerInputMessagesDynMemMsgFactory.h b/howtos/howto10/include/howto10/factory/ServerInputMessagesDynMemMsgFactory.h index 381b95804..cc1f91484 100644 --- a/howtos/howto10/include/howto10/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/howtos/howto10/include/howto10/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/howtos/howto10/include/howto10/field/FieldBase.h b/howtos/howto10/include/howto10/field/FieldBase.h index 662c13e2a..b49f13c25 100644 --- a/howtos/howto10/include/howto10/field/FieldBase.h +++ b/howtos/howto10/include/howto10/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/howtos/howto10/include/howto10/field/Flags.h b/howtos/howto10/include/howto10/field/Flags.h index ec9c5f9c1..693245935 100644 --- a/howtos/howto10/include/howto10/field/Flags.h +++ b/howtos/howto10/include/howto10/field/Flags.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Flags" field. diff --git a/howtos/howto10/include/howto10/field/FlagsCommon.h b/howtos/howto10/include/howto10/field/FlagsCommon.h index fe17bb042..498edaaa2 100644 --- a/howtos/howto10/include/howto10/field/FlagsCommon.h +++ b/howtos/howto10/include/howto10/field/FlagsCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto10/include/howto10/field/MsgId.h b/howtos/howto10/include/howto10/field/MsgId.h index 7c4c0e823..46eee4947 100644 --- a/howtos/howto10/include/howto10/field/MsgId.h +++ b/howtos/howto10/include/howto10/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/howtos/howto10/include/howto10/field/MsgIdCommon.h b/howtos/howto10/include/howto10/field/MsgIdCommon.h index 13f09b047..bd030b502 100644 --- a/howtos/howto10/include/howto10/field/MsgIdCommon.h +++ b/howtos/howto10/include/howto10/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto10/include/howto10/frame/Frame.h b/howtos/howto10/include/howto10/frame/Frame.h index fd65784b4..471b425a7 100644 --- a/howtos/howto10/include/howto10/frame/Frame.h +++ b/howtos/howto10/include/howto10/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/howtos/howto10/include/howto10/frame/FrameCommon.h b/howtos/howto10/include/howto10/frame/FrameCommon.h index c89137f9c..77003b0f0 100644 --- a/howtos/howto10/include/howto10/frame/FrameCommon.h +++ b/howtos/howto10/include/howto10/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto10/include/howto10/input/AllMessages.h b/howtos/howto10/include/howto10/input/AllMessages.h index bcbfb2747..d47aa5b42 100644 --- a/howtos/howto10/include/howto10/input/AllMessages.h +++ b/howtos/howto10/include/howto10/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/howtos/howto10/include/howto10/input/ClientInputMessages.h b/howtos/howto10/include/howto10/input/ClientInputMessages.h index 7c22d5c8d..3dc865f14 100644 --- a/howtos/howto10/include/howto10/input/ClientInputMessages.h +++ b/howtos/howto10/include/howto10/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/howtos/howto10/include/howto10/input/ServerInputMessages.h b/howtos/howto10/include/howto10/input/ServerInputMessages.h index 7f469f826..67a2ee4e3 100644 --- a/howtos/howto10/include/howto10/input/ServerInputMessages.h +++ b/howtos/howto10/include/howto10/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/howtos/howto10/include/howto10/message/Msg1.h b/howtos/howto10/include/howto10/message/Msg1.h index 6cf5b5505..a2b2a191e 100644 --- a/howtos/howto10/include/howto10/message/Msg1.h +++ b/howtos/howto10/include/howto10/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/howtos/howto10/include/howto10/message/Msg1Common.h b/howtos/howto10/include/howto10/message/Msg1Common.h index 0d6e3c68b..e67f66ecd 100644 --- a/howtos/howto10/include/howto10/message/Msg1Common.h +++ b/howtos/howto10/include/howto10/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto10/include/howto10/message/Msg2.h b/howtos/howto10/include/howto10/message/Msg2.h index 970d7d8aa..7f71b9339 100644 --- a/howtos/howto10/include/howto10/message/Msg2.h +++ b/howtos/howto10/include/howto10/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/howtos/howto10/include/howto10/message/Msg2Common.h b/howtos/howto10/include/howto10/message/Msg2Common.h index c64fcaf72..dc16ed056 100644 --- a/howtos/howto10/include/howto10/message/Msg2Common.h +++ b/howtos/howto10/include/howto10/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto10/include/howto10/message/Msg3.h b/howtos/howto10/include/howto10/message/Msg3.h index 1dc199774..2298e0997 100644 --- a/howtos/howto10/include/howto10/message/Msg3.h +++ b/howtos/howto10/include/howto10/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/howtos/howto10/include/howto10/message/Msg3Common.h b/howtos/howto10/include/howto10/message/Msg3Common.h index db0d217b3..66d472be0 100644 --- a/howtos/howto10/include/howto10/message/Msg3Common.h +++ b/howtos/howto10/include/howto10/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto10/include/howto10/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto10/include/howto10/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index aa668a516..0f18663ea 100644 --- a/howtos/howto10/include/howto10/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto10/include/howto10/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/howtos/howto10/include/howto10/options/BareMetalDefaultOptions.h b/howtos/howto10/include/howto10/options/BareMetalDefaultOptions.h index f0bd12b46..b4b04a2e9 100644 --- a/howtos/howto10/include/howto10/options/BareMetalDefaultOptions.h +++ b/howtos/howto10/include/howto10/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/howtos/howto10/include/howto10/options/ClientDefaultOptions.h b/howtos/howto10/include/howto10/options/ClientDefaultOptions.h index 44ce99892..644450a70 100644 --- a/howtos/howto10/include/howto10/options/ClientDefaultOptions.h +++ b/howtos/howto10/include/howto10/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/howtos/howto10/include/howto10/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto10/include/howto10/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 24fa1cd94..9d71bbbc7 100644 --- a/howtos/howto10/include/howto10/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto10/include/howto10/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/howtos/howto10/include/howto10/options/DataViewDefaultOptions.h b/howtos/howto10/include/howto10/options/DataViewDefaultOptions.h index ba2425d67..ad236e8fa 100644 --- a/howtos/howto10/include/howto10/options/DataViewDefaultOptions.h +++ b/howtos/howto10/include/howto10/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/howtos/howto10/include/howto10/options/DefaultOptions.h b/howtos/howto10/include/howto10/options/DefaultOptions.h index 001eee15d..3fb543840 100644 --- a/howtos/howto10/include/howto10/options/DefaultOptions.h +++ b/howtos/howto10/include/howto10/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/howtos/howto10/include/howto10/options/ServerDefaultOptions.h b/howtos/howto10/include/howto10/options/ServerDefaultOptions.h index dd6fe08e6..dc46770b8 100644 --- a/howtos/howto10/include/howto10/options/ServerDefaultOptions.h +++ b/howtos/howto10/include/howto10/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/howtos/howto10/include/howto10/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto10/include/howto10/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 9fb62d9ff..237ec5b87 100644 --- a/howtos/howto10/include/howto10/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto10/include/howto10/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/howtos/howto2/include/howto2/Message.h b/howtos/howto2/include/howto2/Message.h index 97e372053..efe17b430 100644 --- a/howtos/howto2/include/howto2/Message.h +++ b/howtos/howto2/include/howto2/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/howtos/howto2/include/howto2/MsgId.h b/howtos/howto2/include/howto2/MsgId.h index 598224c63..93581878a 100644 --- a/howtos/howto2/include/howto2/MsgId.h +++ b/howtos/howto2/include/howto2/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/howtos/howto2/include/howto2/Version.h b/howtos/howto2/include/howto2/Version.h index e8c95b5cd..20e65cea1 100644 --- a/howtos/howto2/include/howto2/Version.h +++ b/howtos/howto2/include/howto2/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace howto2 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/howtos/howto2/include/howto2/dispatch/DispatchClientInputMessage.h b/howtos/howto2/include/howto2/dispatch/DispatchClientInputMessage.h index db7286277..8e435b6f3 100644 --- a/howtos/howto2/include/howto2/dispatch/DispatchClientInputMessage.h +++ b/howtos/howto2/include/howto2/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto2/include/howto2/dispatch/DispatchMessage.h b/howtos/howto2/include/howto2/dispatch/DispatchMessage.h index 7adad655f..a904ba41c 100644 --- a/howtos/howto2/include/howto2/dispatch/DispatchMessage.h +++ b/howtos/howto2/include/howto2/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/howtos/howto2/include/howto2/dispatch/DispatchServerInputMessage.h b/howtos/howto2/include/howto2/dispatch/DispatchServerInputMessage.h index 0ea34d71e..5c6350530 100644 --- a/howtos/howto2/include/howto2/dispatch/DispatchServerInputMessage.h +++ b/howtos/howto2/include/howto2/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto2/include/howto2/factory/AllMessagesDynMemMsgFactory.h b/howtos/howto2/include/howto2/factory/AllMessagesDynMemMsgFactory.h index c7ea835b9..c10940cea 100644 --- a/howtos/howto2/include/howto2/factory/AllMessagesDynMemMsgFactory.h +++ b/howtos/howto2/include/howto2/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/howtos/howto2/include/howto2/factory/ClientInputMessagesDynMemMsgFactory.h b/howtos/howto2/include/howto2/factory/ClientInputMessagesDynMemMsgFactory.h index ed2e61378..58c462571 100644 --- a/howtos/howto2/include/howto2/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/howtos/howto2/include/howto2/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/howtos/howto2/include/howto2/factory/ServerInputMessagesDynMemMsgFactory.h b/howtos/howto2/include/howto2/factory/ServerInputMessagesDynMemMsgFactory.h index 424ec9f2a..300d39dcd 100644 --- a/howtos/howto2/include/howto2/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/howtos/howto2/include/howto2/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/howtos/howto2/include/howto2/field/FieldBase.h b/howtos/howto2/include/howto2/field/FieldBase.h index 860cbd624..fd1980d39 100644 --- a/howtos/howto2/include/howto2/field/FieldBase.h +++ b/howtos/howto2/include/howto2/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/howtos/howto2/include/howto2/field/MsgId.h b/howtos/howto2/include/howto2/field/MsgId.h index eef66e97e..472325f35 100644 --- a/howtos/howto2/include/howto2/field/MsgId.h +++ b/howtos/howto2/include/howto2/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/howtos/howto2/include/howto2/field/MsgIdCommon.h b/howtos/howto2/include/howto2/field/MsgIdCommon.h index 6489c0cb6..ade7daecc 100644 --- a/howtos/howto2/include/howto2/field/MsgIdCommon.h +++ b/howtos/howto2/include/howto2/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto2/include/howto2/frame/Frame.h b/howtos/howto2/include/howto2/frame/Frame.h index 2a62a8d73..a0a9657d8 100644 --- a/howtos/howto2/include/howto2/frame/Frame.h +++ b/howtos/howto2/include/howto2/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/howtos/howto2/include/howto2/frame/FrameCommon.h b/howtos/howto2/include/howto2/frame/FrameCommon.h index 04bcd6557..0c3c516d7 100644 --- a/howtos/howto2/include/howto2/frame/FrameCommon.h +++ b/howtos/howto2/include/howto2/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto2/include/howto2/input/AllMessages.h b/howtos/howto2/include/howto2/input/AllMessages.h index 9e0caef8f..1d92df6b2 100644 --- a/howtos/howto2/include/howto2/input/AllMessages.h +++ b/howtos/howto2/include/howto2/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/howtos/howto2/include/howto2/input/ClientInputMessages.h b/howtos/howto2/include/howto2/input/ClientInputMessages.h index fb4831a33..00089ae87 100644 --- a/howtos/howto2/include/howto2/input/ClientInputMessages.h +++ b/howtos/howto2/include/howto2/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/howtos/howto2/include/howto2/input/ServerInputMessages.h b/howtos/howto2/include/howto2/input/ServerInputMessages.h index 74af77da0..12abe94b1 100644 --- a/howtos/howto2/include/howto2/input/ServerInputMessages.h +++ b/howtos/howto2/include/howto2/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/howtos/howto2/include/howto2/message/Msg1.h b/howtos/howto2/include/howto2/message/Msg1.h index 4b17a85b9..11664444e 100644 --- a/howtos/howto2/include/howto2/message/Msg1.h +++ b/howtos/howto2/include/howto2/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/howtos/howto2/include/howto2/message/Msg1Common.h b/howtos/howto2/include/howto2/message/Msg1Common.h index 5d09315c3..bf975ddb2 100644 --- a/howtos/howto2/include/howto2/message/Msg1Common.h +++ b/howtos/howto2/include/howto2/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto2/include/howto2/message/Msg2.h b/howtos/howto2/include/howto2/message/Msg2.h index 9e8ab1d3e..36f82f6d8 100644 --- a/howtos/howto2/include/howto2/message/Msg2.h +++ b/howtos/howto2/include/howto2/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/howtos/howto2/include/howto2/message/Msg2Common.h b/howtos/howto2/include/howto2/message/Msg2Common.h index d0735442f..d62979050 100644 --- a/howtos/howto2/include/howto2/message/Msg2Common.h +++ b/howtos/howto2/include/howto2/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto2/include/howto2/message/Msg3.h b/howtos/howto2/include/howto2/message/Msg3.h index 9e789ffb6..b15cf5438 100644 --- a/howtos/howto2/include/howto2/message/Msg3.h +++ b/howtos/howto2/include/howto2/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/howtos/howto2/include/howto2/message/Msg3Common.h b/howtos/howto2/include/howto2/message/Msg3Common.h index d054ed3b7..8e8c8566e 100644 --- a/howtos/howto2/include/howto2/message/Msg3Common.h +++ b/howtos/howto2/include/howto2/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto2/include/howto2/message/Msg4.h b/howtos/howto2/include/howto2/message/Msg4.h index 41dc6e9b2..14c9f2f06 100644 --- a/howtos/howto2/include/howto2/message/Msg4.h +++ b/howtos/howto2/include/howto2/message/Msg4.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 4" message and its fields. diff --git a/howtos/howto2/include/howto2/message/Msg4Common.h b/howtos/howto2/include/howto2/message/Msg4Common.h index a4a7b4089..9d9126b34 100644 --- a/howtos/howto2/include/howto2/message/Msg4Common.h +++ b/howtos/howto2/include/howto2/message/Msg4Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto2/include/howto2/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto2/include/howto2/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 8cb5d3e5c..9ca4ced7e 100644 --- a/howtos/howto2/include/howto2/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto2/include/howto2/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/howtos/howto2/include/howto2/options/BareMetalDefaultOptions.h b/howtos/howto2/include/howto2/options/BareMetalDefaultOptions.h index c92552ef0..6e0da329e 100644 --- a/howtos/howto2/include/howto2/options/BareMetalDefaultOptions.h +++ b/howtos/howto2/include/howto2/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/howtos/howto2/include/howto2/options/ClientDefaultOptions.h b/howtos/howto2/include/howto2/options/ClientDefaultOptions.h index 2e2a8e973..c51d436e2 100644 --- a/howtos/howto2/include/howto2/options/ClientDefaultOptions.h +++ b/howtos/howto2/include/howto2/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/howtos/howto2/include/howto2/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto2/include/howto2/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index bd09f7a67..04755b9df 100644 --- a/howtos/howto2/include/howto2/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto2/include/howto2/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/howtos/howto2/include/howto2/options/DataViewDefaultOptions.h b/howtos/howto2/include/howto2/options/DataViewDefaultOptions.h index ead2979b3..c177d41fa 100644 --- a/howtos/howto2/include/howto2/options/DataViewDefaultOptions.h +++ b/howtos/howto2/include/howto2/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/howtos/howto2/include/howto2/options/DefaultOptions.h b/howtos/howto2/include/howto2/options/DefaultOptions.h index 234eb01f9..8986b5031 100644 --- a/howtos/howto2/include/howto2/options/DefaultOptions.h +++ b/howtos/howto2/include/howto2/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/howtos/howto2/include/howto2/options/ServerDefaultOptions.h b/howtos/howto2/include/howto2/options/ServerDefaultOptions.h index bc01a594e..52e01694b 100644 --- a/howtos/howto2/include/howto2/options/ServerDefaultOptions.h +++ b/howtos/howto2/include/howto2/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/howtos/howto2/include/howto2/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto2/include/howto2/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index bf1e2fa42..e5fd73d2c 100644 --- a/howtos/howto2/include/howto2/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto2/include/howto2/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/howtos/howto3/include/howto3/Message.h b/howtos/howto3/include/howto3/Message.h index 1d4905883..799180798 100644 --- a/howtos/howto3/include/howto3/Message.h +++ b/howtos/howto3/include/howto3/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/howtos/howto3/include/howto3/MsgId.h b/howtos/howto3/include/howto3/MsgId.h index 14a83bcb9..413c8404d 100644 --- a/howtos/howto3/include/howto3/MsgId.h +++ b/howtos/howto3/include/howto3/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/howtos/howto3/include/howto3/Version.h b/howtos/howto3/include/howto3/Version.h index 9c98d02f2..5b9535c33 100644 --- a/howtos/howto3/include/howto3/Version.h +++ b/howtos/howto3/include/howto3/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace howto3 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/howtos/howto3/include/howto3/dispatch/DispatchClientInputMessage.h b/howtos/howto3/include/howto3/dispatch/DispatchClientInputMessage.h index f2e5fe4b1..d983dafd2 100644 --- a/howtos/howto3/include/howto3/dispatch/DispatchClientInputMessage.h +++ b/howtos/howto3/include/howto3/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto3/include/howto3/dispatch/DispatchMessage.h b/howtos/howto3/include/howto3/dispatch/DispatchMessage.h index e5d00619e..c12d3a88a 100644 --- a/howtos/howto3/include/howto3/dispatch/DispatchMessage.h +++ b/howtos/howto3/include/howto3/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/howtos/howto3/include/howto3/dispatch/DispatchServerInputMessage.h b/howtos/howto3/include/howto3/dispatch/DispatchServerInputMessage.h index 63dcd1dd8..d59a26045 100644 --- a/howtos/howto3/include/howto3/dispatch/DispatchServerInputMessage.h +++ b/howtos/howto3/include/howto3/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto3/include/howto3/factory/AllMessagesDynMemMsgFactory.h b/howtos/howto3/include/howto3/factory/AllMessagesDynMemMsgFactory.h index fed77f8c4..d675b4cc9 100644 --- a/howtos/howto3/include/howto3/factory/AllMessagesDynMemMsgFactory.h +++ b/howtos/howto3/include/howto3/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/howtos/howto3/include/howto3/factory/ClientInputMessagesDynMemMsgFactory.h b/howtos/howto3/include/howto3/factory/ClientInputMessagesDynMemMsgFactory.h index b06cdf2b4..9017ba93e 100644 --- a/howtos/howto3/include/howto3/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/howtos/howto3/include/howto3/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/howtos/howto3/include/howto3/factory/ServerInputMessagesDynMemMsgFactory.h b/howtos/howto3/include/howto3/factory/ServerInputMessagesDynMemMsgFactory.h index a40a1e400..18bdfd839 100644 --- a/howtos/howto3/include/howto3/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/howtos/howto3/include/howto3/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/howtos/howto3/include/howto3/field/FieldBase.h b/howtos/howto3/include/howto3/field/FieldBase.h index 7007f745c..ccb0cab8e 100644 --- a/howtos/howto3/include/howto3/field/FieldBase.h +++ b/howtos/howto3/include/howto3/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/howtos/howto3/include/howto3/field/MsgId.h b/howtos/howto3/include/howto3/field/MsgId.h index 73ec3892e..cba0f0464 100644 --- a/howtos/howto3/include/howto3/field/MsgId.h +++ b/howtos/howto3/include/howto3/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/howtos/howto3/include/howto3/field/MsgIdCommon.h b/howtos/howto3/include/howto3/field/MsgIdCommon.h index 30af74bca..e5e5ea681 100644 --- a/howtos/howto3/include/howto3/field/MsgIdCommon.h +++ b/howtos/howto3/include/howto3/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto3/include/howto3/frame/Frame.h b/howtos/howto3/include/howto3/frame/Frame.h index 0e8e1c9f7..d99773964 100644 --- a/howtos/howto3/include/howto3/frame/Frame.h +++ b/howtos/howto3/include/howto3/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/howtos/howto3/include/howto3/input/AllMessages.h b/howtos/howto3/include/howto3/input/AllMessages.h index f5591bdac..c82127205 100644 --- a/howtos/howto3/include/howto3/input/AllMessages.h +++ b/howtos/howto3/include/howto3/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/howtos/howto3/include/howto3/input/ClientInputMessages.h b/howtos/howto3/include/howto3/input/ClientInputMessages.h index 3c2237421..4415dd26a 100644 --- a/howtos/howto3/include/howto3/input/ClientInputMessages.h +++ b/howtos/howto3/include/howto3/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/howtos/howto3/include/howto3/input/ServerInputMessages.h b/howtos/howto3/include/howto3/input/ServerInputMessages.h index 7859c02f9..1afedd560 100644 --- a/howtos/howto3/include/howto3/input/ServerInputMessages.h +++ b/howtos/howto3/include/howto3/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/howtos/howto3/include/howto3/message/Msg1.h b/howtos/howto3/include/howto3/message/Msg1.h index e8fb72092..4fbeb47b8 100644 --- a/howtos/howto3/include/howto3/message/Msg1.h +++ b/howtos/howto3/include/howto3/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/howtos/howto3/include/howto3/message/Msg1Common.h b/howtos/howto3/include/howto3/message/Msg1Common.h index b8159475f..e9845d162 100644 --- a/howtos/howto3/include/howto3/message/Msg1Common.h +++ b/howtos/howto3/include/howto3/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto3/include/howto3/message/Msg2.h b/howtos/howto3/include/howto3/message/Msg2.h index 6a28a9d37..a205a7212 100644 --- a/howtos/howto3/include/howto3/message/Msg2.h +++ b/howtos/howto3/include/howto3/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/howtos/howto3/include/howto3/message/Msg2Common.h b/howtos/howto3/include/howto3/message/Msg2Common.h index 4a1ea896b..d80df7dff 100644 --- a/howtos/howto3/include/howto3/message/Msg2Common.h +++ b/howtos/howto3/include/howto3/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto3/include/howto3/message/Msg3.h b/howtos/howto3/include/howto3/message/Msg3.h index 33b6a1236..5707dce74 100644 --- a/howtos/howto3/include/howto3/message/Msg3.h +++ b/howtos/howto3/include/howto3/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/howtos/howto3/include/howto3/message/Msg3Common.h b/howtos/howto3/include/howto3/message/Msg3Common.h index ce1988ed4..ad837eda7 100644 --- a/howtos/howto3/include/howto3/message/Msg3Common.h +++ b/howtos/howto3/include/howto3/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto3/include/howto3/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto3/include/howto3/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index b7d61dbdf..77077e88e 100644 --- a/howtos/howto3/include/howto3/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto3/include/howto3/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/howtos/howto3/include/howto3/options/BareMetalDefaultOptions.h b/howtos/howto3/include/howto3/options/BareMetalDefaultOptions.h index 210595122..5f1820439 100644 --- a/howtos/howto3/include/howto3/options/BareMetalDefaultOptions.h +++ b/howtos/howto3/include/howto3/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/howtos/howto3/include/howto3/options/ClientDefaultOptions.h b/howtos/howto3/include/howto3/options/ClientDefaultOptions.h index bc705befa..e1c474de0 100644 --- a/howtos/howto3/include/howto3/options/ClientDefaultOptions.h +++ b/howtos/howto3/include/howto3/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/howtos/howto3/include/howto3/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto3/include/howto3/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index d01b7e40c..4e5e83a98 100644 --- a/howtos/howto3/include/howto3/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto3/include/howto3/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/howtos/howto3/include/howto3/options/DataViewDefaultOptions.h b/howtos/howto3/include/howto3/options/DataViewDefaultOptions.h index f62c5a3e2..94ef51b62 100644 --- a/howtos/howto3/include/howto3/options/DataViewDefaultOptions.h +++ b/howtos/howto3/include/howto3/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/howtos/howto3/include/howto3/options/DefaultOptions.h b/howtos/howto3/include/howto3/options/DefaultOptions.h index ab6c68a8b..d087f474f 100644 --- a/howtos/howto3/include/howto3/options/DefaultOptions.h +++ b/howtos/howto3/include/howto3/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/howtos/howto3/include/howto3/options/ServerDefaultOptions.h b/howtos/howto3/include/howto3/options/ServerDefaultOptions.h index 66b57657f..450829bdd 100644 --- a/howtos/howto3/include/howto3/options/ServerDefaultOptions.h +++ b/howtos/howto3/include/howto3/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/howtos/howto3/include/howto3/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto3/include/howto3/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index b0ca15a5b..665724da1 100644 --- a/howtos/howto3/include/howto3/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto3/include/howto3/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/howtos/howto4/include/howto4/Message.h b/howtos/howto4/include/howto4/Message.h index 1b02f1a09..71c518d23 100644 --- a/howtos/howto4/include/howto4/Message.h +++ b/howtos/howto4/include/howto4/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/howtos/howto4/include/howto4/MsgId.h b/howtos/howto4/include/howto4/MsgId.h index 685b87ce6..3ced80e4c 100644 --- a/howtos/howto4/include/howto4/MsgId.h +++ b/howtos/howto4/include/howto4/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/howtos/howto4/include/howto4/Version.h b/howtos/howto4/include/howto4/Version.h index 47ac4197b..373572f9b 100644 --- a/howtos/howto4/include/howto4/Version.h +++ b/howtos/howto4/include/howto4/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace howto4 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/howtos/howto4/include/howto4/dispatch/DispatchClientInputMessage.h b/howtos/howto4/include/howto4/dispatch/DispatchClientInputMessage.h index 5de5b4ee2..e8b75bca2 100644 --- a/howtos/howto4/include/howto4/dispatch/DispatchClientInputMessage.h +++ b/howtos/howto4/include/howto4/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto4/include/howto4/dispatch/DispatchMessage.h b/howtos/howto4/include/howto4/dispatch/DispatchMessage.h index 6e89a1a4b..6944b6c09 100644 --- a/howtos/howto4/include/howto4/dispatch/DispatchMessage.h +++ b/howtos/howto4/include/howto4/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/howtos/howto4/include/howto4/dispatch/DispatchServerInputMessage.h b/howtos/howto4/include/howto4/dispatch/DispatchServerInputMessage.h index f1f973e1a..b08c41d7e 100644 --- a/howtos/howto4/include/howto4/dispatch/DispatchServerInputMessage.h +++ b/howtos/howto4/include/howto4/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto4/include/howto4/factory/AllMessagesDynMemMsgFactory.h b/howtos/howto4/include/howto4/factory/AllMessagesDynMemMsgFactory.h index c02c74227..fe8f39808 100644 --- a/howtos/howto4/include/howto4/factory/AllMessagesDynMemMsgFactory.h +++ b/howtos/howto4/include/howto4/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/howtos/howto4/include/howto4/factory/ClientInputMessagesDynMemMsgFactory.h b/howtos/howto4/include/howto4/factory/ClientInputMessagesDynMemMsgFactory.h index 881308eab..74d0508fc 100644 --- a/howtos/howto4/include/howto4/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/howtos/howto4/include/howto4/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/howtos/howto4/include/howto4/factory/ServerInputMessagesDynMemMsgFactory.h b/howtos/howto4/include/howto4/factory/ServerInputMessagesDynMemMsgFactory.h index f93b21110..a1110c6a7 100644 --- a/howtos/howto4/include/howto4/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/howtos/howto4/include/howto4/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/howtos/howto4/include/howto4/field/FieldBase.h b/howtos/howto4/include/howto4/field/FieldBase.h index f3c71113d..1fc0525a6 100644 --- a/howtos/howto4/include/howto4/field/FieldBase.h +++ b/howtos/howto4/include/howto4/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/howtos/howto4/include/howto4/field/TlvProp.h b/howtos/howto4/include/howto4/field/TlvProp.h index c9df3e587..28ad72c90 100644 --- a/howtos/howto4/include/howto4/field/TlvProp.h +++ b/howtos/howto4/include/howto4/field/TlvProp.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "TlvProp" field. diff --git a/howtos/howto4/include/howto4/field/TlvPropCommon.h b/howtos/howto4/include/howto4/field/TlvPropCommon.h index 2c424b484..dc636c1e6 100644 --- a/howtos/howto4/include/howto4/field/TlvPropCommon.h +++ b/howtos/howto4/include/howto4/field/TlvPropCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto4/include/howto4/frame/Frame.h b/howtos/howto4/include/howto4/frame/Frame.h index 4434aee62..c2acb9bf2 100644 --- a/howtos/howto4/include/howto4/frame/Frame.h +++ b/howtos/howto4/include/howto4/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/howtos/howto4/include/howto4/frame/FrameCommon.h b/howtos/howto4/include/howto4/frame/FrameCommon.h index 13384cb16..7b18563e0 100644 --- a/howtos/howto4/include/howto4/frame/FrameCommon.h +++ b/howtos/howto4/include/howto4/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto4/include/howto4/input/AllMessages.h b/howtos/howto4/include/howto4/input/AllMessages.h index 37c0e290c..d88d7fad0 100644 --- a/howtos/howto4/include/howto4/input/AllMessages.h +++ b/howtos/howto4/include/howto4/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/howtos/howto4/include/howto4/input/ClientInputMessages.h b/howtos/howto4/include/howto4/input/ClientInputMessages.h index ea0d6d229..31407b0dd 100644 --- a/howtos/howto4/include/howto4/input/ClientInputMessages.h +++ b/howtos/howto4/include/howto4/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/howtos/howto4/include/howto4/input/ServerInputMessages.h b/howtos/howto4/include/howto4/input/ServerInputMessages.h index 91845d537..e5f58a61a 100644 --- a/howtos/howto4/include/howto4/input/ServerInputMessages.h +++ b/howtos/howto4/include/howto4/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/howtos/howto4/include/howto4/message/Msg.h b/howtos/howto4/include/howto4/message/Msg.h index be1f93af5..0a36189fa 100644 --- a/howtos/howto4/include/howto4/message/Msg.h +++ b/howtos/howto4/include/howto4/message/Msg.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" message and its fields. diff --git a/howtos/howto4/include/howto4/message/MsgCommon.h b/howtos/howto4/include/howto4/message/MsgCommon.h index 111349665..c3b57a59d 100644 --- a/howtos/howto4/include/howto4/message/MsgCommon.h +++ b/howtos/howto4/include/howto4/message/MsgCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto4/include/howto4/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto4/include/howto4/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 8b48b2c85..890595eca 100644 --- a/howtos/howto4/include/howto4/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto4/include/howto4/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/howtos/howto4/include/howto4/options/BareMetalDefaultOptions.h b/howtos/howto4/include/howto4/options/BareMetalDefaultOptions.h index d77084b2f..04beb51f5 100644 --- a/howtos/howto4/include/howto4/options/BareMetalDefaultOptions.h +++ b/howtos/howto4/include/howto4/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/howtos/howto4/include/howto4/options/ClientDefaultOptions.h b/howtos/howto4/include/howto4/options/ClientDefaultOptions.h index 74a3df647..ff431c410 100644 --- a/howtos/howto4/include/howto4/options/ClientDefaultOptions.h +++ b/howtos/howto4/include/howto4/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/howtos/howto4/include/howto4/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto4/include/howto4/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 8bdcb6377..2df94246f 100644 --- a/howtos/howto4/include/howto4/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto4/include/howto4/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/howtos/howto4/include/howto4/options/DataViewDefaultOptions.h b/howtos/howto4/include/howto4/options/DataViewDefaultOptions.h index 5a413edb3..08404acf3 100644 --- a/howtos/howto4/include/howto4/options/DataViewDefaultOptions.h +++ b/howtos/howto4/include/howto4/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/howtos/howto4/include/howto4/options/DefaultOptions.h b/howtos/howto4/include/howto4/options/DefaultOptions.h index 5cd5a79d3..e5a31487c 100644 --- a/howtos/howto4/include/howto4/options/DefaultOptions.h +++ b/howtos/howto4/include/howto4/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/howtos/howto4/include/howto4/options/ServerDefaultOptions.h b/howtos/howto4/include/howto4/options/ServerDefaultOptions.h index e4d49b08a..2be8f4a8e 100644 --- a/howtos/howto4/include/howto4/options/ServerDefaultOptions.h +++ b/howtos/howto4/include/howto4/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/howtos/howto4/include/howto4/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto4/include/howto4/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 10c621bb2..dcaf2f625 100644 --- a/howtos/howto4/include/howto4/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto4/include/howto4/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/howtos/howto5/include/howto5/Interface.h b/howtos/howto5/include/howto5/Interface.h index bdb873f15..a87888ec6 100644 --- a/howtos/howto5/include/howto5/Interface.h +++ b/howtos/howto5/include/howto5/Interface.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Interface" interface class. diff --git a/howtos/howto5/include/howto5/InterfaceCommon.h b/howtos/howto5/include/howto5/InterfaceCommon.h index c3f3d7eea..0cf4c7fc4 100644 --- a/howtos/howto5/include/howto5/InterfaceCommon.h +++ b/howtos/howto5/include/howto5/InterfaceCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto5/include/howto5/MsgId.h b/howtos/howto5/include/howto5/MsgId.h index 85188ef7c..930ee13be 100644 --- a/howtos/howto5/include/howto5/MsgId.h +++ b/howtos/howto5/include/howto5/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/howtos/howto5/include/howto5/Version.h b/howtos/howto5/include/howto5/Version.h index 1965483fc..37b968af7 100644 --- a/howtos/howto5/include/howto5/Version.h +++ b/howtos/howto5/include/howto5/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace howto5 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/howtos/howto5/include/howto5/dispatch/DispatchClientInputMessage.h b/howtos/howto5/include/howto5/dispatch/DispatchClientInputMessage.h index 62b97bb75..363288109 100644 --- a/howtos/howto5/include/howto5/dispatch/DispatchClientInputMessage.h +++ b/howtos/howto5/include/howto5/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto5/include/howto5/dispatch/DispatchMessage.h b/howtos/howto5/include/howto5/dispatch/DispatchMessage.h index 89b035021..cbc8e2337 100644 --- a/howtos/howto5/include/howto5/dispatch/DispatchMessage.h +++ b/howtos/howto5/include/howto5/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/howtos/howto5/include/howto5/dispatch/DispatchServerInputMessage.h b/howtos/howto5/include/howto5/dispatch/DispatchServerInputMessage.h index a2d8f294b..ffc62dd88 100644 --- a/howtos/howto5/include/howto5/dispatch/DispatchServerInputMessage.h +++ b/howtos/howto5/include/howto5/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto5/include/howto5/factory/AllMessagesDynMemMsgFactory.h b/howtos/howto5/include/howto5/factory/AllMessagesDynMemMsgFactory.h index 8b2f33086..0e24c2388 100644 --- a/howtos/howto5/include/howto5/factory/AllMessagesDynMemMsgFactory.h +++ b/howtos/howto5/include/howto5/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/howtos/howto5/include/howto5/factory/ClientInputMessagesDynMemMsgFactory.h b/howtos/howto5/include/howto5/factory/ClientInputMessagesDynMemMsgFactory.h index c57d77388..33732b395 100644 --- a/howtos/howto5/include/howto5/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/howtos/howto5/include/howto5/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/howtos/howto5/include/howto5/factory/ServerInputMessagesDynMemMsgFactory.h b/howtos/howto5/include/howto5/factory/ServerInputMessagesDynMemMsgFactory.h index c4e4b331e..d99fcc202 100644 --- a/howtos/howto5/include/howto5/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/howtos/howto5/include/howto5/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/howtos/howto5/include/howto5/field/FieldBase.h b/howtos/howto5/include/howto5/field/FieldBase.h index c126c35cf..b56e2bd42 100644 --- a/howtos/howto5/include/howto5/field/FieldBase.h +++ b/howtos/howto5/include/howto5/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/howtos/howto5/include/howto5/field/InterfaceFlags.h b/howtos/howto5/include/howto5/field/InterfaceFlags.h index 91199252e..f272edbb0 100644 --- a/howtos/howto5/include/howto5/field/InterfaceFlags.h +++ b/howtos/howto5/include/howto5/field/InterfaceFlags.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "InterfaceFlags" field. diff --git a/howtos/howto5/include/howto5/field/InterfaceFlagsCommon.h b/howtos/howto5/include/howto5/field/InterfaceFlagsCommon.h index 97175e89f..c67a4c0de 100644 --- a/howtos/howto5/include/howto5/field/InterfaceFlagsCommon.h +++ b/howtos/howto5/include/howto5/field/InterfaceFlagsCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto5/include/howto5/field/MsgId.h b/howtos/howto5/include/howto5/field/MsgId.h index 9db6bceb0..9621a26ce 100644 --- a/howtos/howto5/include/howto5/field/MsgId.h +++ b/howtos/howto5/include/howto5/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/howtos/howto5/include/howto5/field/MsgIdCommon.h b/howtos/howto5/include/howto5/field/MsgIdCommon.h index 7ebc60001..442152841 100644 --- a/howtos/howto5/include/howto5/field/MsgIdCommon.h +++ b/howtos/howto5/include/howto5/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto5/include/howto5/field/Version.h b/howtos/howto5/include/howto5/field/Version.h index 2719e1d2b..7c58a1555 100644 --- a/howtos/howto5/include/howto5/field/Version.h +++ b/howtos/howto5/include/howto5/field/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Version" field. diff --git a/howtos/howto5/include/howto5/field/VersionCommon.h b/howtos/howto5/include/howto5/field/VersionCommon.h index b63c55ac8..3894a911f 100644 --- a/howtos/howto5/include/howto5/field/VersionCommon.h +++ b/howtos/howto5/include/howto5/field/VersionCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto5/include/howto5/field/VersionWithFlags.h b/howtos/howto5/include/howto5/field/VersionWithFlags.h index 7aacb067f..c164a2214 100644 --- a/howtos/howto5/include/howto5/field/VersionWithFlags.h +++ b/howtos/howto5/include/howto5/field/VersionWithFlags.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "VersionWithFlags" field. diff --git a/howtos/howto5/include/howto5/field/VersionWithFlagsCommon.h b/howtos/howto5/include/howto5/field/VersionWithFlagsCommon.h index f0b523306..ed6e496b0 100644 --- a/howtos/howto5/include/howto5/field/VersionWithFlagsCommon.h +++ b/howtos/howto5/include/howto5/field/VersionWithFlagsCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto5/include/howto5/frame/Frame.h b/howtos/howto5/include/howto5/frame/Frame.h index 4db69b916..43b98040d 100644 --- a/howtos/howto5/include/howto5/frame/Frame.h +++ b/howtos/howto5/include/howto5/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/howtos/howto5/include/howto5/frame/FrameCommon.h b/howtos/howto5/include/howto5/frame/FrameCommon.h index ae26c6fc6..2a3258834 100644 --- a/howtos/howto5/include/howto5/frame/FrameCommon.h +++ b/howtos/howto5/include/howto5/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto5/include/howto5/input/AllMessages.h b/howtos/howto5/include/howto5/input/AllMessages.h index 0fd02d8e7..abbb9310b 100644 --- a/howtos/howto5/include/howto5/input/AllMessages.h +++ b/howtos/howto5/include/howto5/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/howtos/howto5/include/howto5/input/ClientInputMessages.h b/howtos/howto5/include/howto5/input/ClientInputMessages.h index 318673583..b100aea27 100644 --- a/howtos/howto5/include/howto5/input/ClientInputMessages.h +++ b/howtos/howto5/include/howto5/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/howtos/howto5/include/howto5/input/ServerInputMessages.h b/howtos/howto5/include/howto5/input/ServerInputMessages.h index a6046462c..208a288f4 100644 --- a/howtos/howto5/include/howto5/input/ServerInputMessages.h +++ b/howtos/howto5/include/howto5/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/howtos/howto5/include/howto5/message/Msg1.h b/howtos/howto5/include/howto5/message/Msg1.h index ffb025774..941cd7f62 100644 --- a/howtos/howto5/include/howto5/message/Msg1.h +++ b/howtos/howto5/include/howto5/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/howtos/howto5/include/howto5/message/Msg1Common.h b/howtos/howto5/include/howto5/message/Msg1Common.h index ae908265f..458d0c548 100644 --- a/howtos/howto5/include/howto5/message/Msg1Common.h +++ b/howtos/howto5/include/howto5/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto5/include/howto5/message/Msg2.h b/howtos/howto5/include/howto5/message/Msg2.h index a7db4b4e0..92589c129 100644 --- a/howtos/howto5/include/howto5/message/Msg2.h +++ b/howtos/howto5/include/howto5/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/howtos/howto5/include/howto5/message/Msg2Common.h b/howtos/howto5/include/howto5/message/Msg2Common.h index f3ac2c79a..e2dd67beb 100644 --- a/howtos/howto5/include/howto5/message/Msg2Common.h +++ b/howtos/howto5/include/howto5/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto5/include/howto5/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto5/include/howto5/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 26ec540b7..457e78754 100644 --- a/howtos/howto5/include/howto5/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto5/include/howto5/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/howtos/howto5/include/howto5/options/BareMetalDefaultOptions.h b/howtos/howto5/include/howto5/options/BareMetalDefaultOptions.h index fb6ac3428..81d37c680 100644 --- a/howtos/howto5/include/howto5/options/BareMetalDefaultOptions.h +++ b/howtos/howto5/include/howto5/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/howtos/howto5/include/howto5/options/ClientDefaultOptions.h b/howtos/howto5/include/howto5/options/ClientDefaultOptions.h index 5f1481a41..4d33229e1 100644 --- a/howtos/howto5/include/howto5/options/ClientDefaultOptions.h +++ b/howtos/howto5/include/howto5/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/howtos/howto5/include/howto5/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto5/include/howto5/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 9792f2931..0337b6e74 100644 --- a/howtos/howto5/include/howto5/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto5/include/howto5/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/howtos/howto5/include/howto5/options/DataViewDefaultOptions.h b/howtos/howto5/include/howto5/options/DataViewDefaultOptions.h index 75ffbb300..66649f94c 100644 --- a/howtos/howto5/include/howto5/options/DataViewDefaultOptions.h +++ b/howtos/howto5/include/howto5/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/howtos/howto5/include/howto5/options/DefaultOptions.h b/howtos/howto5/include/howto5/options/DefaultOptions.h index f43ce4d98..c77e22ef4 100644 --- a/howtos/howto5/include/howto5/options/DefaultOptions.h +++ b/howtos/howto5/include/howto5/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/howtos/howto5/include/howto5/options/ServerDefaultOptions.h b/howtos/howto5/include/howto5/options/ServerDefaultOptions.h index 60200e5b7..829e14fd9 100644 --- a/howtos/howto5/include/howto5/options/ServerDefaultOptions.h +++ b/howtos/howto5/include/howto5/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/howtos/howto5/include/howto5/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto5/include/howto5/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 0b4c6cd13..06e6c5346 100644 --- a/howtos/howto5/include/howto5/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto5/include/howto5/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/howtos/howto6/include/howto6/Interface.h b/howtos/howto6/include/howto6/Interface.h index 73880c8ac..5ba8a613f 100644 --- a/howtos/howto6/include/howto6/Interface.h +++ b/howtos/howto6/include/howto6/Interface.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Interface" interface class. diff --git a/howtos/howto6/include/howto6/InterfaceCommon.h b/howtos/howto6/include/howto6/InterfaceCommon.h index 2382df3f3..1d523fe8f 100644 --- a/howtos/howto6/include/howto6/InterfaceCommon.h +++ b/howtos/howto6/include/howto6/InterfaceCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto6/include/howto6/MsgId.h b/howtos/howto6/include/howto6/MsgId.h index a0be97da3..c1921dbcd 100644 --- a/howtos/howto6/include/howto6/MsgId.h +++ b/howtos/howto6/include/howto6/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/howtos/howto6/include/howto6/Version.h b/howtos/howto6/include/howto6/Version.h index 672abcf10..bd99cf8f4 100644 --- a/howtos/howto6/include/howto6/Version.h +++ b/howtos/howto6/include/howto6/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace howto6 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/howtos/howto6/include/howto6/dispatch/DispatchClientInputMessage.h b/howtos/howto6/include/howto6/dispatch/DispatchClientInputMessage.h index 6d6be20c7..e652a930b 100644 --- a/howtos/howto6/include/howto6/dispatch/DispatchClientInputMessage.h +++ b/howtos/howto6/include/howto6/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto6/include/howto6/dispatch/DispatchMessage.h b/howtos/howto6/include/howto6/dispatch/DispatchMessage.h index 5292591d5..eb3fcb72e 100644 --- a/howtos/howto6/include/howto6/dispatch/DispatchMessage.h +++ b/howtos/howto6/include/howto6/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/howtos/howto6/include/howto6/dispatch/DispatchServerInputMessage.h b/howtos/howto6/include/howto6/dispatch/DispatchServerInputMessage.h index 0f3bd234f..12066f355 100644 --- a/howtos/howto6/include/howto6/dispatch/DispatchServerInputMessage.h +++ b/howtos/howto6/include/howto6/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto6/include/howto6/factory/AllMessagesDynMemMsgFactory.h b/howtos/howto6/include/howto6/factory/AllMessagesDynMemMsgFactory.h index bff3bf4b7..10cbc406b 100644 --- a/howtos/howto6/include/howto6/factory/AllMessagesDynMemMsgFactory.h +++ b/howtos/howto6/include/howto6/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/howtos/howto6/include/howto6/factory/ClientInputMessagesDynMemMsgFactory.h b/howtos/howto6/include/howto6/factory/ClientInputMessagesDynMemMsgFactory.h index e9627709a..1b0d93440 100644 --- a/howtos/howto6/include/howto6/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/howtos/howto6/include/howto6/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/howtos/howto6/include/howto6/factory/ServerInputMessagesDynMemMsgFactory.h b/howtos/howto6/include/howto6/factory/ServerInputMessagesDynMemMsgFactory.h index 4a8a469a1..99a5e98fc 100644 --- a/howtos/howto6/include/howto6/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/howtos/howto6/include/howto6/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/howtos/howto6/include/howto6/field/ChecksumType.h b/howtos/howto6/include/howto6/field/ChecksumType.h index 24d925a19..c1e7da61e 100644 --- a/howtos/howto6/include/howto6/field/ChecksumType.h +++ b/howtos/howto6/include/howto6/field/ChecksumType.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "ChecksumType" field. diff --git a/howtos/howto6/include/howto6/field/ChecksumTypeCommon.h b/howtos/howto6/include/howto6/field/ChecksumTypeCommon.h index 8e8d95ed4..493f3a37b 100644 --- a/howtos/howto6/include/howto6/field/ChecksumTypeCommon.h +++ b/howtos/howto6/include/howto6/field/ChecksumTypeCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto6/include/howto6/field/FieldBase.h b/howtos/howto6/include/howto6/field/FieldBase.h index 11f06a863..b5c910060 100644 --- a/howtos/howto6/include/howto6/field/FieldBase.h +++ b/howtos/howto6/include/howto6/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/howtos/howto6/include/howto6/field/MsgId.h b/howtos/howto6/include/howto6/field/MsgId.h index 673d54666..8f774b819 100644 --- a/howtos/howto6/include/howto6/field/MsgId.h +++ b/howtos/howto6/include/howto6/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/howtos/howto6/include/howto6/field/MsgIdCommon.h b/howtos/howto6/include/howto6/field/MsgIdCommon.h index 147b6d7e4..029a31e4b 100644 --- a/howtos/howto6/include/howto6/field/MsgIdCommon.h +++ b/howtos/howto6/include/howto6/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto6/include/howto6/frame/Frame.h b/howtos/howto6/include/howto6/frame/Frame.h index 31e263671..a3789e1bc 100644 --- a/howtos/howto6/include/howto6/frame/Frame.h +++ b/howtos/howto6/include/howto6/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/howtos/howto6/include/howto6/frame/FrameCommon.h b/howtos/howto6/include/howto6/frame/FrameCommon.h index 11df36e7f..7e23197e3 100644 --- a/howtos/howto6/include/howto6/frame/FrameCommon.h +++ b/howtos/howto6/include/howto6/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto6/include/howto6/input/AllMessages.h b/howtos/howto6/include/howto6/input/AllMessages.h index d35193c79..f61793d5e 100644 --- a/howtos/howto6/include/howto6/input/AllMessages.h +++ b/howtos/howto6/include/howto6/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/howtos/howto6/include/howto6/input/ClientInputMessages.h b/howtos/howto6/include/howto6/input/ClientInputMessages.h index 88688bbe8..3ef2bc547 100644 --- a/howtos/howto6/include/howto6/input/ClientInputMessages.h +++ b/howtos/howto6/include/howto6/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/howtos/howto6/include/howto6/input/ServerInputMessages.h b/howtos/howto6/include/howto6/input/ServerInputMessages.h index ac7011801..3968c4f26 100644 --- a/howtos/howto6/include/howto6/input/ServerInputMessages.h +++ b/howtos/howto6/include/howto6/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/howtos/howto6/include/howto6/message/Msg1.h b/howtos/howto6/include/howto6/message/Msg1.h index e9690344a..50ca87430 100644 --- a/howtos/howto6/include/howto6/message/Msg1.h +++ b/howtos/howto6/include/howto6/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/howtos/howto6/include/howto6/message/Msg1Common.h b/howtos/howto6/include/howto6/message/Msg1Common.h index ea16db15f..03d8a7461 100644 --- a/howtos/howto6/include/howto6/message/Msg1Common.h +++ b/howtos/howto6/include/howto6/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto6/include/howto6/message/Msg2.h b/howtos/howto6/include/howto6/message/Msg2.h index 140fbc470..912c18546 100644 --- a/howtos/howto6/include/howto6/message/Msg2.h +++ b/howtos/howto6/include/howto6/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/howtos/howto6/include/howto6/message/Msg2Common.h b/howtos/howto6/include/howto6/message/Msg2Common.h index 8b49947e2..6d9559d81 100644 --- a/howtos/howto6/include/howto6/message/Msg2Common.h +++ b/howtos/howto6/include/howto6/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto6/include/howto6/message/Msg3.h b/howtos/howto6/include/howto6/message/Msg3.h index 1f339d3f1..1737c0129 100644 --- a/howtos/howto6/include/howto6/message/Msg3.h +++ b/howtos/howto6/include/howto6/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/howtos/howto6/include/howto6/message/Msg3Common.h b/howtos/howto6/include/howto6/message/Msg3Common.h index 96f483474..8bb26167c 100644 --- a/howtos/howto6/include/howto6/message/Msg3Common.h +++ b/howtos/howto6/include/howto6/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto6/include/howto6/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto6/include/howto6/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 61ebc4cc9..fa766aebe 100644 --- a/howtos/howto6/include/howto6/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto6/include/howto6/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/howtos/howto6/include/howto6/options/BareMetalDefaultOptions.h b/howtos/howto6/include/howto6/options/BareMetalDefaultOptions.h index 1350cbeba..7c881431f 100644 --- a/howtos/howto6/include/howto6/options/BareMetalDefaultOptions.h +++ b/howtos/howto6/include/howto6/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/howtos/howto6/include/howto6/options/ClientDefaultOptions.h b/howtos/howto6/include/howto6/options/ClientDefaultOptions.h index e9aa611cd..e4c1da45e 100644 --- a/howtos/howto6/include/howto6/options/ClientDefaultOptions.h +++ b/howtos/howto6/include/howto6/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/howtos/howto6/include/howto6/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto6/include/howto6/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 0375d0770..512385671 100644 --- a/howtos/howto6/include/howto6/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto6/include/howto6/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/howtos/howto6/include/howto6/options/DataViewDefaultOptions.h b/howtos/howto6/include/howto6/options/DataViewDefaultOptions.h index 843ca73c5..94b4ee6b8 100644 --- a/howtos/howto6/include/howto6/options/DataViewDefaultOptions.h +++ b/howtos/howto6/include/howto6/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/howtos/howto6/include/howto6/options/DefaultOptions.h b/howtos/howto6/include/howto6/options/DefaultOptions.h index e29f37170..95d810178 100644 --- a/howtos/howto6/include/howto6/options/DefaultOptions.h +++ b/howtos/howto6/include/howto6/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/howtos/howto6/include/howto6/options/ServerDefaultOptions.h b/howtos/howto6/include/howto6/options/ServerDefaultOptions.h index f5721f54d..a9d8d29c1 100644 --- a/howtos/howto6/include/howto6/options/ServerDefaultOptions.h +++ b/howtos/howto6/include/howto6/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/howtos/howto6/include/howto6/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto6/include/howto6/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 2c095c628..debfd85e4 100644 --- a/howtos/howto6/include/howto6/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto6/include/howto6/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/howtos/howto7/include/howto7/Message.h b/howtos/howto7/include/howto7/Message.h index 04f6944f0..41e971549 100644 --- a/howtos/howto7/include/howto7/Message.h +++ b/howtos/howto7/include/howto7/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/howtos/howto7/include/howto7/MsgId.h b/howtos/howto7/include/howto7/MsgId.h index 63cb467bc..630e0f959 100644 --- a/howtos/howto7/include/howto7/MsgId.h +++ b/howtos/howto7/include/howto7/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/howtos/howto7/include/howto7/Version.h b/howtos/howto7/include/howto7/Version.h index bb10200a8..0ce6d9746 100644 --- a/howtos/howto7/include/howto7/Version.h +++ b/howtos/howto7/include/howto7/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace howto7 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/howtos/howto7/include/howto7/dispatch/DispatchClientInputMessage.h b/howtos/howto7/include/howto7/dispatch/DispatchClientInputMessage.h index bcc3c3c7e..22c579161 100644 --- a/howtos/howto7/include/howto7/dispatch/DispatchClientInputMessage.h +++ b/howtos/howto7/include/howto7/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto7/include/howto7/dispatch/DispatchMessage.h b/howtos/howto7/include/howto7/dispatch/DispatchMessage.h index 37dcd6c00..04bd2b673 100644 --- a/howtos/howto7/include/howto7/dispatch/DispatchMessage.h +++ b/howtos/howto7/include/howto7/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/howtos/howto7/include/howto7/dispatch/DispatchServerInputMessage.h b/howtos/howto7/include/howto7/dispatch/DispatchServerInputMessage.h index 51f618e88..4275a704c 100644 --- a/howtos/howto7/include/howto7/dispatch/DispatchServerInputMessage.h +++ b/howtos/howto7/include/howto7/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto7/include/howto7/factory/AllMessagesDynMemMsgFactory.h b/howtos/howto7/include/howto7/factory/AllMessagesDynMemMsgFactory.h index 6c7e7b856..e4722a27f 100644 --- a/howtos/howto7/include/howto7/factory/AllMessagesDynMemMsgFactory.h +++ b/howtos/howto7/include/howto7/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/howtos/howto7/include/howto7/factory/ClientInputMessagesDynMemMsgFactory.h b/howtos/howto7/include/howto7/factory/ClientInputMessagesDynMemMsgFactory.h index e48ba1528..18e1401d0 100644 --- a/howtos/howto7/include/howto7/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/howtos/howto7/include/howto7/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/howtos/howto7/include/howto7/factory/ServerInputMessagesDynMemMsgFactory.h b/howtos/howto7/include/howto7/factory/ServerInputMessagesDynMemMsgFactory.h index c531c8768..4b3cce299 100644 --- a/howtos/howto7/include/howto7/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/howtos/howto7/include/howto7/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/howtos/howto7/include/howto7/field/FieldBase.h b/howtos/howto7/include/howto7/field/FieldBase.h index fa8671ef3..3dba5518a 100644 --- a/howtos/howto7/include/howto7/field/FieldBase.h +++ b/howtos/howto7/include/howto7/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/howtos/howto7/include/howto7/field/MsgId.h b/howtos/howto7/include/howto7/field/MsgId.h index e11b4076e..81519d3dd 100644 --- a/howtos/howto7/include/howto7/field/MsgId.h +++ b/howtos/howto7/include/howto7/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/howtos/howto7/include/howto7/field/MsgIdCommon.h b/howtos/howto7/include/howto7/field/MsgIdCommon.h index 4b675ec13..8281f57aa 100644 --- a/howtos/howto7/include/howto7/field/MsgIdCommon.h +++ b/howtos/howto7/include/howto7/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto7/include/howto7/frame/Frame.h b/howtos/howto7/include/howto7/frame/Frame.h index 9a8e7218e..de491a285 100644 --- a/howtos/howto7/include/howto7/frame/Frame.h +++ b/howtos/howto7/include/howto7/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/howtos/howto7/include/howto7/frame/FrameCommon.h b/howtos/howto7/include/howto7/frame/FrameCommon.h index 2370223ba..2021aeb1b 100644 --- a/howtos/howto7/include/howto7/frame/FrameCommon.h +++ b/howtos/howto7/include/howto7/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto7/include/howto7/input/AllMessages.h b/howtos/howto7/include/howto7/input/AllMessages.h index af65b534d..0cb23b194 100644 --- a/howtos/howto7/include/howto7/input/AllMessages.h +++ b/howtos/howto7/include/howto7/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/howtos/howto7/include/howto7/input/ClientInputMessages.h b/howtos/howto7/include/howto7/input/ClientInputMessages.h index 097acd0b4..9f42cdafe 100644 --- a/howtos/howto7/include/howto7/input/ClientInputMessages.h +++ b/howtos/howto7/include/howto7/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/howtos/howto7/include/howto7/input/ServerInputMessages.h b/howtos/howto7/include/howto7/input/ServerInputMessages.h index d471889ee..e5ebf34df 100644 --- a/howtos/howto7/include/howto7/input/ServerInputMessages.h +++ b/howtos/howto7/include/howto7/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/howtos/howto7/include/howto7/message/Msg1.h b/howtos/howto7/include/howto7/message/Msg1.h index 1fc17bbda..90fbaa93a 100644 --- a/howtos/howto7/include/howto7/message/Msg1.h +++ b/howtos/howto7/include/howto7/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/howtos/howto7/include/howto7/message/Msg1Common.h b/howtos/howto7/include/howto7/message/Msg1Common.h index 972c0e472..bb9c3e997 100644 --- a/howtos/howto7/include/howto7/message/Msg1Common.h +++ b/howtos/howto7/include/howto7/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto7/include/howto7/message/Msg2.h b/howtos/howto7/include/howto7/message/Msg2.h index 67ba1f647..ce3a0bfb5 100644 --- a/howtos/howto7/include/howto7/message/Msg2.h +++ b/howtos/howto7/include/howto7/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/howtos/howto7/include/howto7/message/Msg2Common.h b/howtos/howto7/include/howto7/message/Msg2Common.h index dc7ecb217..bff334f5c 100644 --- a/howtos/howto7/include/howto7/message/Msg2Common.h +++ b/howtos/howto7/include/howto7/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto7/include/howto7/message/Msg3.h b/howtos/howto7/include/howto7/message/Msg3.h index 04640ef64..82e8c5331 100644 --- a/howtos/howto7/include/howto7/message/Msg3.h +++ b/howtos/howto7/include/howto7/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/howtos/howto7/include/howto7/message/Msg3Common.h b/howtos/howto7/include/howto7/message/Msg3Common.h index 93e7a143c..ef6a49211 100644 --- a/howtos/howto7/include/howto7/message/Msg3Common.h +++ b/howtos/howto7/include/howto7/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto7/include/howto7/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto7/include/howto7/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 2ec270085..897e47bd2 100644 --- a/howtos/howto7/include/howto7/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto7/include/howto7/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/howtos/howto7/include/howto7/options/BareMetalDefaultOptions.h b/howtos/howto7/include/howto7/options/BareMetalDefaultOptions.h index 606bf649f..93ee82e37 100644 --- a/howtos/howto7/include/howto7/options/BareMetalDefaultOptions.h +++ b/howtos/howto7/include/howto7/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/howtos/howto7/include/howto7/options/ClientDefaultOptions.h b/howtos/howto7/include/howto7/options/ClientDefaultOptions.h index 4d3e654e9..b64e343a8 100644 --- a/howtos/howto7/include/howto7/options/ClientDefaultOptions.h +++ b/howtos/howto7/include/howto7/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/howtos/howto7/include/howto7/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto7/include/howto7/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 065315ad0..170b1beb8 100644 --- a/howtos/howto7/include/howto7/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto7/include/howto7/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/howtos/howto7/include/howto7/options/DataViewDefaultOptions.h b/howtos/howto7/include/howto7/options/DataViewDefaultOptions.h index c11000842..c161ee757 100644 --- a/howtos/howto7/include/howto7/options/DataViewDefaultOptions.h +++ b/howtos/howto7/include/howto7/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/howtos/howto7/include/howto7/options/DefaultOptions.h b/howtos/howto7/include/howto7/options/DefaultOptions.h index 820ea9713..05251a95c 100644 --- a/howtos/howto7/include/howto7/options/DefaultOptions.h +++ b/howtos/howto7/include/howto7/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/howtos/howto7/include/howto7/options/ServerDefaultOptions.h b/howtos/howto7/include/howto7/options/ServerDefaultOptions.h index 8fcfdd953..13454db62 100644 --- a/howtos/howto7/include/howto7/options/ServerDefaultOptions.h +++ b/howtos/howto7/include/howto7/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/howtos/howto7/include/howto7/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto7/include/howto7/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index d70bca5a2..2e57a5655 100644 --- a/howtos/howto7/include/howto7/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto7/include/howto7/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/howtos/howto8/include/howto8/Interface.h b/howtos/howto8/include/howto8/Interface.h index 53e2f3a58..3bad0a684 100644 --- a/howtos/howto8/include/howto8/Interface.h +++ b/howtos/howto8/include/howto8/Interface.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Interface" interface class. diff --git a/howtos/howto8/include/howto8/InterfaceCommon.h b/howtos/howto8/include/howto8/InterfaceCommon.h index e4670f92b..ef696c08c 100644 --- a/howtos/howto8/include/howto8/InterfaceCommon.h +++ b/howtos/howto8/include/howto8/InterfaceCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto8/include/howto8/MsgId.h b/howtos/howto8/include/howto8/MsgId.h index 99e6e1e94..efe318d0e 100644 --- a/howtos/howto8/include/howto8/MsgId.h +++ b/howtos/howto8/include/howto8/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/howtos/howto8/include/howto8/Version.h b/howtos/howto8/include/howto8/Version.h index 8b18075e0..f1e00a5e9 100644 --- a/howtos/howto8/include/howto8/Version.h +++ b/howtos/howto8/include/howto8/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace howto8 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/howtos/howto8/include/howto8/dispatch/DispatchClientInputMessage.h b/howtos/howto8/include/howto8/dispatch/DispatchClientInputMessage.h index 22936aedc..e70d26080 100644 --- a/howtos/howto8/include/howto8/dispatch/DispatchClientInputMessage.h +++ b/howtos/howto8/include/howto8/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto8/include/howto8/dispatch/DispatchMessage.h b/howtos/howto8/include/howto8/dispatch/DispatchMessage.h index bdf7d44f7..17f67ea8b 100644 --- a/howtos/howto8/include/howto8/dispatch/DispatchMessage.h +++ b/howtos/howto8/include/howto8/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/howtos/howto8/include/howto8/dispatch/DispatchServerInputMessage.h b/howtos/howto8/include/howto8/dispatch/DispatchServerInputMessage.h index b637af9fe..dbf8039f4 100644 --- a/howtos/howto8/include/howto8/dispatch/DispatchServerInputMessage.h +++ b/howtos/howto8/include/howto8/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto8/include/howto8/factory/AllMessagesDynMemMsgFactory.h b/howtos/howto8/include/howto8/factory/AllMessagesDynMemMsgFactory.h index 811a0214c..2787d87fe 100644 --- a/howtos/howto8/include/howto8/factory/AllMessagesDynMemMsgFactory.h +++ b/howtos/howto8/include/howto8/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/howtos/howto8/include/howto8/factory/ClientInputMessagesDynMemMsgFactory.h b/howtos/howto8/include/howto8/factory/ClientInputMessagesDynMemMsgFactory.h index a99b2a07d..a43ca5c9c 100644 --- a/howtos/howto8/include/howto8/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/howtos/howto8/include/howto8/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/howtos/howto8/include/howto8/factory/ServerInputMessagesDynMemMsgFactory.h b/howtos/howto8/include/howto8/factory/ServerInputMessagesDynMemMsgFactory.h index 18e339cf9..b2b43bf70 100644 --- a/howtos/howto8/include/howto8/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/howtos/howto8/include/howto8/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/howtos/howto8/include/howto8/field/FieldBase.h b/howtos/howto8/include/howto8/field/FieldBase.h index 0fceb3e2a..aef2723a2 100644 --- a/howtos/howto8/include/howto8/field/FieldBase.h +++ b/howtos/howto8/include/howto8/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/howtos/howto8/include/howto8/field/Flags.h b/howtos/howto8/include/howto8/field/Flags.h index ca725cfe8..5095cce49 100644 --- a/howtos/howto8/include/howto8/field/Flags.h +++ b/howtos/howto8/include/howto8/field/Flags.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Flags" field. diff --git a/howtos/howto8/include/howto8/field/FlagsCommon.h b/howtos/howto8/include/howto8/field/FlagsCommon.h index afa6d1ca4..fb4eef49c 100644 --- a/howtos/howto8/include/howto8/field/FlagsCommon.h +++ b/howtos/howto8/include/howto8/field/FlagsCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto8/include/howto8/field/MsgId.h b/howtos/howto8/include/howto8/field/MsgId.h index f8c7dbd0d..b7ae44495 100644 --- a/howtos/howto8/include/howto8/field/MsgId.h +++ b/howtos/howto8/include/howto8/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/howtos/howto8/include/howto8/field/MsgIdCommon.h b/howtos/howto8/include/howto8/field/MsgIdCommon.h index fee2a7f15..bd3d24cf8 100644 --- a/howtos/howto8/include/howto8/field/MsgIdCommon.h +++ b/howtos/howto8/include/howto8/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto8/include/howto8/frame/Frame.h b/howtos/howto8/include/howto8/frame/Frame.h index 893707365..abec047ab 100644 --- a/howtos/howto8/include/howto8/frame/Frame.h +++ b/howtos/howto8/include/howto8/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/howtos/howto8/include/howto8/frame/FrameCommon.h b/howtos/howto8/include/howto8/frame/FrameCommon.h index fe2b43c51..ea2efce6f 100644 --- a/howtos/howto8/include/howto8/frame/FrameCommon.h +++ b/howtos/howto8/include/howto8/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto8/include/howto8/input/AllMessages.h b/howtos/howto8/include/howto8/input/AllMessages.h index 238864e3f..7c557b140 100644 --- a/howtos/howto8/include/howto8/input/AllMessages.h +++ b/howtos/howto8/include/howto8/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/howtos/howto8/include/howto8/input/ClientInputMessages.h b/howtos/howto8/include/howto8/input/ClientInputMessages.h index a9f574dd7..61cb12c23 100644 --- a/howtos/howto8/include/howto8/input/ClientInputMessages.h +++ b/howtos/howto8/include/howto8/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/howtos/howto8/include/howto8/input/ServerInputMessages.h b/howtos/howto8/include/howto8/input/ServerInputMessages.h index 57ea795fc..60e41b399 100644 --- a/howtos/howto8/include/howto8/input/ServerInputMessages.h +++ b/howtos/howto8/include/howto8/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/howtos/howto8/include/howto8/message/Msg1.h b/howtos/howto8/include/howto8/message/Msg1.h index 216f4eaa4..f7ab0ed6e 100644 --- a/howtos/howto8/include/howto8/message/Msg1.h +++ b/howtos/howto8/include/howto8/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/howtos/howto8/include/howto8/message/Msg1Common.h b/howtos/howto8/include/howto8/message/Msg1Common.h index 55bbb9888..c718fe1b5 100644 --- a/howtos/howto8/include/howto8/message/Msg1Common.h +++ b/howtos/howto8/include/howto8/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto8/include/howto8/message/Msg2.h b/howtos/howto8/include/howto8/message/Msg2.h index ca149a74c..d3ac110f9 100644 --- a/howtos/howto8/include/howto8/message/Msg2.h +++ b/howtos/howto8/include/howto8/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/howtos/howto8/include/howto8/message/Msg2Common.h b/howtos/howto8/include/howto8/message/Msg2Common.h index b8c2fb043..9486b0c04 100644 --- a/howtos/howto8/include/howto8/message/Msg2Common.h +++ b/howtos/howto8/include/howto8/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto8/include/howto8/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto8/include/howto8/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 2c9e4a7a2..cb3e45838 100644 --- a/howtos/howto8/include/howto8/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto8/include/howto8/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/howtos/howto8/include/howto8/options/BareMetalDefaultOptions.h b/howtos/howto8/include/howto8/options/BareMetalDefaultOptions.h index 5e6e06e1e..753b3b8cc 100644 --- a/howtos/howto8/include/howto8/options/BareMetalDefaultOptions.h +++ b/howtos/howto8/include/howto8/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/howtos/howto8/include/howto8/options/ClientDefaultOptions.h b/howtos/howto8/include/howto8/options/ClientDefaultOptions.h index cc98cc621..7f99ce4dc 100644 --- a/howtos/howto8/include/howto8/options/ClientDefaultOptions.h +++ b/howtos/howto8/include/howto8/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/howtos/howto8/include/howto8/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto8/include/howto8/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 9656717c5..41b738e6e 100644 --- a/howtos/howto8/include/howto8/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto8/include/howto8/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/howtos/howto8/include/howto8/options/DataViewDefaultOptions.h b/howtos/howto8/include/howto8/options/DataViewDefaultOptions.h index 988f277ab..9061ceda6 100644 --- a/howtos/howto8/include/howto8/options/DataViewDefaultOptions.h +++ b/howtos/howto8/include/howto8/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/howtos/howto8/include/howto8/options/DefaultOptions.h b/howtos/howto8/include/howto8/options/DefaultOptions.h index e17b167d7..2c3779727 100644 --- a/howtos/howto8/include/howto8/options/DefaultOptions.h +++ b/howtos/howto8/include/howto8/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/howtos/howto8/include/howto8/options/ServerDefaultOptions.h b/howtos/howto8/include/howto8/options/ServerDefaultOptions.h index e23fe8475..e2b35d77b 100644 --- a/howtos/howto8/include/howto8/options/ServerDefaultOptions.h +++ b/howtos/howto8/include/howto8/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/howtos/howto8/include/howto8/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto8/include/howto8/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index a452c4876..9741e2f92 100644 --- a/howtos/howto8/include/howto8/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto8/include/howto8/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/howtos/howto9/include/howto9/Message.h b/howtos/howto9/include/howto9/Message.h index 9850ace1c..9260a279b 100644 --- a/howtos/howto9/include/howto9/Message.h +++ b/howtos/howto9/include/howto9/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/howtos/howto9/include/howto9/MsgId.h b/howtos/howto9/include/howto9/MsgId.h index 6bcd100ff..2177a1151 100644 --- a/howtos/howto9/include/howto9/MsgId.h +++ b/howtos/howto9/include/howto9/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/howtos/howto9/include/howto9/Version.h b/howtos/howto9/include/howto9/Version.h index 26875d05c..5cd616ad6 100644 --- a/howtos/howto9/include/howto9/Version.h +++ b/howtos/howto9/include/howto9/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace howto9 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/howtos/howto9/include/howto9/dispatch/DispatchClientInputMessage.h b/howtos/howto9/include/howto9/dispatch/DispatchClientInputMessage.h index 7ad0f4745..8ef23d646 100644 --- a/howtos/howto9/include/howto9/dispatch/DispatchClientInputMessage.h +++ b/howtos/howto9/include/howto9/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto9/include/howto9/dispatch/DispatchMessage.h b/howtos/howto9/include/howto9/dispatch/DispatchMessage.h index 9e28b243e..9ad9b576c 100644 --- a/howtos/howto9/include/howto9/dispatch/DispatchMessage.h +++ b/howtos/howto9/include/howto9/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/howtos/howto9/include/howto9/dispatch/DispatchServerInputMessage.h b/howtos/howto9/include/howto9/dispatch/DispatchServerInputMessage.h index a8be989b0..dc5909e69 100644 --- a/howtos/howto9/include/howto9/dispatch/DispatchServerInputMessage.h +++ b/howtos/howto9/include/howto9/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/howtos/howto9/include/howto9/factory/AllMessagesDynMemMsgFactory.h b/howtos/howto9/include/howto9/factory/AllMessagesDynMemMsgFactory.h index 03c14aa1b..857c4b4a9 100644 --- a/howtos/howto9/include/howto9/factory/AllMessagesDynMemMsgFactory.h +++ b/howtos/howto9/include/howto9/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/howtos/howto9/include/howto9/factory/ClientInputMessagesDynMemMsgFactory.h b/howtos/howto9/include/howto9/factory/ClientInputMessagesDynMemMsgFactory.h index 1ae51e01c..6775b6da2 100644 --- a/howtos/howto9/include/howto9/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/howtos/howto9/include/howto9/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/howtos/howto9/include/howto9/factory/ServerInputMessagesDynMemMsgFactory.h b/howtos/howto9/include/howto9/factory/ServerInputMessagesDynMemMsgFactory.h index 45d199605..a49fa3a1c 100644 --- a/howtos/howto9/include/howto9/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/howtos/howto9/include/howto9/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/howtos/howto9/include/howto9/field/FieldBase.h b/howtos/howto9/include/howto9/field/FieldBase.h index 27826d063..712b604e2 100644 --- a/howtos/howto9/include/howto9/field/FieldBase.h +++ b/howtos/howto9/include/howto9/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/howtos/howto9/include/howto9/field/MsgId.h b/howtos/howto9/include/howto9/field/MsgId.h index c0555c29f..75df807f1 100644 --- a/howtos/howto9/include/howto9/field/MsgId.h +++ b/howtos/howto9/include/howto9/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/howtos/howto9/include/howto9/field/MsgIdCommon.h b/howtos/howto9/include/howto9/field/MsgIdCommon.h index eace1e1b1..3ae149363 100644 --- a/howtos/howto9/include/howto9/field/MsgIdCommon.h +++ b/howtos/howto9/include/howto9/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto9/include/howto9/field/SizeField.h b/howtos/howto9/include/howto9/field/SizeField.h index ef41a4801..73dcfad3d 100644 --- a/howtos/howto9/include/howto9/field/SizeField.h +++ b/howtos/howto9/include/howto9/field/SizeField.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "SizeField" field. diff --git a/howtos/howto9/include/howto9/field/SizeFieldCommon.h b/howtos/howto9/include/howto9/field/SizeFieldCommon.h index e6f428933..5dc86da1a 100644 --- a/howtos/howto9/include/howto9/field/SizeFieldCommon.h +++ b/howtos/howto9/include/howto9/field/SizeFieldCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto9/include/howto9/field/SyncField.h b/howtos/howto9/include/howto9/field/SyncField.h index 0a57ad6d7..9fd32f639 100644 --- a/howtos/howto9/include/howto9/field/SyncField.h +++ b/howtos/howto9/include/howto9/field/SyncField.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "SyncField" field. diff --git a/howtos/howto9/include/howto9/field/SyncFieldCommon.h b/howtos/howto9/include/howto9/field/SyncFieldCommon.h index d2831f431..64ff063c8 100644 --- a/howtos/howto9/include/howto9/field/SyncFieldCommon.h +++ b/howtos/howto9/include/howto9/field/SyncFieldCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto9/include/howto9/frame/Frame.h b/howtos/howto9/include/howto9/frame/Frame.h index 8561d2b26..090b24466 100644 --- a/howtos/howto9/include/howto9/frame/Frame.h +++ b/howtos/howto9/include/howto9/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/howtos/howto9/include/howto9/frame/FrameCommon.h b/howtos/howto9/include/howto9/frame/FrameCommon.h index 5b7360343..332076183 100644 --- a/howtos/howto9/include/howto9/frame/FrameCommon.h +++ b/howtos/howto9/include/howto9/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto9/include/howto9/input/AllMessages.h b/howtos/howto9/include/howto9/input/AllMessages.h index 48f0f16ae..5dafbb9d4 100644 --- a/howtos/howto9/include/howto9/input/AllMessages.h +++ b/howtos/howto9/include/howto9/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/howtos/howto9/include/howto9/input/ClientInputMessages.h b/howtos/howto9/include/howto9/input/ClientInputMessages.h index 3cbe4f09a..b9df1dda9 100644 --- a/howtos/howto9/include/howto9/input/ClientInputMessages.h +++ b/howtos/howto9/include/howto9/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/howtos/howto9/include/howto9/input/ServerInputMessages.h b/howtos/howto9/include/howto9/input/ServerInputMessages.h index f1508e089..077f8e8d8 100644 --- a/howtos/howto9/include/howto9/input/ServerInputMessages.h +++ b/howtos/howto9/include/howto9/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/howtos/howto9/include/howto9/message/Msg1.h b/howtos/howto9/include/howto9/message/Msg1.h index 75a760926..6d579f4eb 100644 --- a/howtos/howto9/include/howto9/message/Msg1.h +++ b/howtos/howto9/include/howto9/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/howtos/howto9/include/howto9/message/Msg1Common.h b/howtos/howto9/include/howto9/message/Msg1Common.h index 4a6a4f588..9c5c03655 100644 --- a/howtos/howto9/include/howto9/message/Msg1Common.h +++ b/howtos/howto9/include/howto9/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto9/include/howto9/message/Msg2.h b/howtos/howto9/include/howto9/message/Msg2.h index 72974d572..90a59d588 100644 --- a/howtos/howto9/include/howto9/message/Msg2.h +++ b/howtos/howto9/include/howto9/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/howtos/howto9/include/howto9/message/Msg2Common.h b/howtos/howto9/include/howto9/message/Msg2Common.h index f6f63780b..c62d1c243 100644 --- a/howtos/howto9/include/howto9/message/Msg2Common.h +++ b/howtos/howto9/include/howto9/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto9/include/howto9/message/Msg3.h b/howtos/howto9/include/howto9/message/Msg3.h index 4582d9828..813271596 100644 --- a/howtos/howto9/include/howto9/message/Msg3.h +++ b/howtos/howto9/include/howto9/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/howtos/howto9/include/howto9/message/Msg3Common.h b/howtos/howto9/include/howto9/message/Msg3Common.h index 0db4057e8..85689abd4 100644 --- a/howtos/howto9/include/howto9/message/Msg3Common.h +++ b/howtos/howto9/include/howto9/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/howtos/howto9/include/howto9/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto9/include/howto9/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 88affef0a..2f1042962 100644 --- a/howtos/howto9/include/howto9/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto9/include/howto9/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/howtos/howto9/include/howto9/options/BareMetalDefaultOptions.h b/howtos/howto9/include/howto9/options/BareMetalDefaultOptions.h index 3e2b1259a..01ef927e7 100644 --- a/howtos/howto9/include/howto9/options/BareMetalDefaultOptions.h +++ b/howtos/howto9/include/howto9/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/howtos/howto9/include/howto9/options/ClientDefaultOptions.h b/howtos/howto9/include/howto9/options/ClientDefaultOptions.h index e667c92af..05de037c4 100644 --- a/howtos/howto9/include/howto9/options/ClientDefaultOptions.h +++ b/howtos/howto9/include/howto9/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/howtos/howto9/include/howto9/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto9/include/howto9/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 975ac20aa..e87d3e89b 100644 --- a/howtos/howto9/include/howto9/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto9/include/howto9/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/howtos/howto9/include/howto9/options/DataViewDefaultOptions.h b/howtos/howto9/include/howto9/options/DataViewDefaultOptions.h index d775c6932..ce68a85f4 100644 --- a/howtos/howto9/include/howto9/options/DataViewDefaultOptions.h +++ b/howtos/howto9/include/howto9/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/howtos/howto9/include/howto9/options/DefaultOptions.h b/howtos/howto9/include/howto9/options/DefaultOptions.h index 3b44fe3c7..96440781d 100644 --- a/howtos/howto9/include/howto9/options/DefaultOptions.h +++ b/howtos/howto9/include/howto9/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/howtos/howto9/include/howto9/options/ServerDefaultOptions.h b/howtos/howto9/include/howto9/options/ServerDefaultOptions.h index 7ba490abb..5aeca9dcc 100644 --- a/howtos/howto9/include/howto9/options/ServerDefaultOptions.h +++ b/howtos/howto9/include/howto9/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/howtos/howto9/include/howto9/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/howtos/howto9/include/howto9/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 388f21307..db4ef0af5 100644 --- a/howtos/howto9/include/howto9/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/howtos/howto9/include/howto9/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/lib/src/Session.cpp b/lib/src/Session.cpp index 5b84e8d9a..30d4b1279 100644 --- a/lib/src/Session.cpp +++ b/lib/src/Session.cpp @@ -75,6 +75,7 @@ void Session::doRead() auto bufLen = bytesCount; bool useVector = !m_inData.empty(); if (useVector) { + m_inData.reserve(m_inData.size() + bufLen); m_inData.insert(m_inData.end(), buf, buf + bufLen); buf = &m_inData[0]; bufLen = m_inData.size(); diff --git a/script/env_dev_clang.sh b/script/env_dev_clang.sh index c9e59f973..c5d020b2a 100755 --- a/script/env_dev_clang.sh +++ b/script/env_dev_clang.sh @@ -1,7 +1,12 @@ #!/bin/bash -export CC=clang -export CXX=clang++ +if [ -z "${CC}" ]; then + export CC=clang +fi + +if [ -z "${CXX}" ]; then + export CXX=clang++ +fi SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" source ${SCRIPT_DIR}/env_dev.sh "$@" diff --git a/script/env_dev_size_gcc.sh b/script/env_dev_size_gcc.sh index 9a6c652a8..78212bba5 100755 --- a/script/env_dev_size_gcc.sh +++ b/script/env_dev_size_gcc.sh @@ -1,7 +1,12 @@ #!/bin/bash -export CC=gcc -export CXX=g++ +if [ -z "${CC}" ]; then + export CC=gcc +fi + +if [ -z "${CXX}" ]; then + export CXX=g++ +fi SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" source ${SCRIPT_DIR}/env_dev_size.sh "$@" diff --git a/script/full_build.sh b/script/full_build.sh new file mode 100755 index 000000000..2ff315d0b --- /dev/null +++ b/script/full_build.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +if [ -z "${CC}" -o -z "$CXX" ]; then + echo "ERROR: Compilers are not provided" + exit 1 +fi + +if [ -z "${COMMON_BUILD_TYPE}" ]; then + echo "ERROR: Build type not provided" + exit 1 +fi + +SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +ROOT_DIR=$( dirname ${SCRIPT_DIR} ) +export BUILD_DIR="${ROOT_DIR}/build.full.${CC}.${COMMON_BUILD_TYPE}" +export COMMON_INSTALL_DIR=${BUILD_DIR}/install +export EXTERNALS_DIR=${ROOT_DIR}/externals +mkdir -p ${BUILD_DIR} + +${SCRIPT_DIR}/prepare_externals.sh + +source ${SCRIPT_DIR}/env_dev.sh "$@" + +procs=$(nproc) +if [ -n "${procs}" ]; then + procs_param="--parallel ${procs}" +fi + +cmake --build ${BUILD_DIR} --config ${COMMON_BUILD_TYPE} --target install ${procs_param} diff --git a/script/full_debug_build.sh b/script/full_debug_build.sh index ab339013a..7b74d0eb2 100755 --- a/script/full_debug_build.sh +++ b/script/full_debug_build.sh @@ -6,20 +6,6 @@ if [ -z "${CC}" -o -z "$CXX" ]; then fi SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -ROOT_DIR=$( dirname ${SCRIPT_DIR} ) -export BUILD_DIR="${ROOT_DIR}/build.full.${CC}" -export COMMON_INSTALL_DIR=${BUILD_DIR}/install export COMMON_BUILD_TYPE=Debug -export EXTERNALS_DIR=${ROOT_DIR}/externals -mkdir -p ${BUILD_DIR} +exec ${SCRIPT_DIR}/full_build.sh -${SCRIPT_DIR}/prepare_externals.sh - -source ${SCRIPT_DIR}/env_dev.sh "$@" - -procs=$(nproc) -if [ -n "${procs}" ]; then - procs_param="--parallel ${procs}" -fi - -cmake --build ${BUILD_DIR} --config ${COMMON_BUILD_TYPE} --target install ${procs_param} diff --git a/script/full_debug_build_clang.sh b/script/full_debug_build_clang.sh index fc808781c..319ebab1c 100755 --- a/script/full_debug_build_clang.sh +++ b/script/full_debug_build_clang.sh @@ -1,8 +1,13 @@ #!/bin/bash -export CC=clang -export CXX=clang++ +if [ -z "${CC}" ]; then + export CC=clang +fi + +if [ -z "${CXX}" ]; then + export CXX=clang++ +fi SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -${SCRIPT_DIR}/full_debug_build.sh "$@" +exec ${SCRIPT_DIR}/full_debug_build.sh "$@" diff --git a/script/full_debug_build_gcc.sh b/script/full_debug_build_gcc.sh index 101913490..6545627b0 100755 --- a/script/full_debug_build_gcc.sh +++ b/script/full_debug_build_gcc.sh @@ -1,8 +1,13 @@ #!/bin/bash -export CC=gcc -export CXX=g++ +if [ -z "${CC}" ]; then + export CC=gcc +fi + +if [ -z "${CXX}" ]; then + export CXX=g++ +fi SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -${SCRIPT_DIR}/full_debug_build.sh "$@" +exec ${SCRIPT_DIR}/full_debug_build.sh "$@" diff --git a/script/full_release_build.sh b/script/full_release_build.sh new file mode 100755 index 000000000..ea8503dcc --- /dev/null +++ b/script/full_release_build.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +if [ -z "${CC}" -o -z "$CXX" ]; then + echo "ERROR: Compilers are not provided" + exit 1 +fi + +SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +export COMMON_BUILD_TYPE=Release +exec ${SCRIPT_DIR}/full_build.sh + diff --git a/script/full_release_build_clang.sh b/script/full_release_build_clang.sh new file mode 100755 index 000000000..f9e18627c --- /dev/null +++ b/script/full_release_build_clang.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +if [ -z "${CC}" ]; then + export CC=clang +fi + +if [ -z "${CXX}" ]; then + export CXX=clang++ +fi + +SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +exec ${SCRIPT_DIR}/full_release_build.sh "$@" + diff --git a/script/full_release_build_gcc.sh b/script/full_release_build_gcc.sh new file mode 100755 index 000000000..f877f3c7c --- /dev/null +++ b/script/full_release_build_gcc.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +if [ -z "${CC}" ]; then + export CC=gcc +fi + +if [ -z "${CXX}" ]; then + export CXX=g++ +fi + +SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +exec ${SCRIPT_DIR}/full_release_build.sh "$@" + diff --git a/tutorials/tutorial1/include/tutorial1/Message.h b/tutorials/tutorial1/include/tutorial1/Message.h index 5b12a9114..c28170cba 100644 --- a/tutorials/tutorial1/include/tutorial1/Message.h +++ b/tutorials/tutorial1/include/tutorial1/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial1/include/tutorial1/MsgId.h b/tutorials/tutorial1/include/tutorial1/MsgId.h index 34aa24488..60ad4f6b2 100644 --- a/tutorials/tutorial1/include/tutorial1/MsgId.h +++ b/tutorials/tutorial1/include/tutorial1/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial1/include/tutorial1/Version.h b/tutorials/tutorial1/include/tutorial1/Version.h index e3807fece..d75788adc 100644 --- a/tutorials/tutorial1/include/tutorial1/Version.h +++ b/tutorials/tutorial1/include/tutorial1/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial1 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial1/include/tutorial1/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial1/include/tutorial1/dispatch/DispatchClientInputMessage.h index a8c7fee9f..1ec58550b 100644 --- a/tutorials/tutorial1/include/tutorial1/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial1/include/tutorial1/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial1/include/tutorial1/dispatch/DispatchMessage.h b/tutorials/tutorial1/include/tutorial1/dispatch/DispatchMessage.h index 575bbcdf2..a59b21ba5 100644 --- a/tutorials/tutorial1/include/tutorial1/dispatch/DispatchMessage.h +++ b/tutorials/tutorial1/include/tutorial1/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial1/include/tutorial1/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial1/include/tutorial1/dispatch/DispatchServerInputMessage.h index 99a8870f0..9a65ed261 100644 --- a/tutorials/tutorial1/include/tutorial1/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial1/include/tutorial1/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial1/include/tutorial1/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial1/include/tutorial1/factory/AllMessagesDynMemMsgFactory.h index 577518f80..eca808afc 100644 --- a/tutorials/tutorial1/include/tutorial1/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial1/include/tutorial1/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial1/include/tutorial1/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial1/include/tutorial1/factory/ClientInputMessagesDynMemMsgFactory.h index 46fcff238..2d04f546c 100644 --- a/tutorials/tutorial1/include/tutorial1/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial1/include/tutorial1/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial1/include/tutorial1/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial1/include/tutorial1/factory/ServerInputMessagesDynMemMsgFactory.h index 6e2dedb4c..4dfb3375c 100644 --- a/tutorials/tutorial1/include/tutorial1/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial1/include/tutorial1/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial1/include/tutorial1/field/FieldBase.h b/tutorials/tutorial1/include/tutorial1/field/FieldBase.h index 5aed5c19b..3db75eb80 100644 --- a/tutorials/tutorial1/include/tutorial1/field/FieldBase.h +++ b/tutorials/tutorial1/include/tutorial1/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial1/include/tutorial1/field/MsgId.h b/tutorials/tutorial1/include/tutorial1/field/MsgId.h index aa89af926..6b647796c 100644 --- a/tutorials/tutorial1/include/tutorial1/field/MsgId.h +++ b/tutorials/tutorial1/include/tutorial1/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial1/include/tutorial1/field/MsgIdCommon.h b/tutorials/tutorial1/include/tutorial1/field/MsgIdCommon.h index 979861e61..3f33cdc9f 100644 --- a/tutorials/tutorial1/include/tutorial1/field/MsgIdCommon.h +++ b/tutorials/tutorial1/include/tutorial1/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial1/include/tutorial1/frame/Frame.h b/tutorials/tutorial1/include/tutorial1/frame/Frame.h index 5b3855ba3..6c90a5bca 100644 --- a/tutorials/tutorial1/include/tutorial1/frame/Frame.h +++ b/tutorials/tutorial1/include/tutorial1/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial1/include/tutorial1/input/AllMessages.h b/tutorials/tutorial1/include/tutorial1/input/AllMessages.h index ace32ce7e..cdc14a536 100644 --- a/tutorials/tutorial1/include/tutorial1/input/AllMessages.h +++ b/tutorials/tutorial1/include/tutorial1/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial1/include/tutorial1/input/ClientInputMessages.h b/tutorials/tutorial1/include/tutorial1/input/ClientInputMessages.h index 16175b56f..bd8751371 100644 --- a/tutorials/tutorial1/include/tutorial1/input/ClientInputMessages.h +++ b/tutorials/tutorial1/include/tutorial1/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial1/include/tutorial1/input/ServerInputMessages.h b/tutorials/tutorial1/include/tutorial1/input/ServerInputMessages.h index 2b74f547d..7e1a887e5 100644 --- a/tutorials/tutorial1/include/tutorial1/input/ServerInputMessages.h +++ b/tutorials/tutorial1/include/tutorial1/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial1/include/tutorial1/message/Msg1.h b/tutorials/tutorial1/include/tutorial1/message/Msg1.h index ad0c3b24d..545662b42 100644 --- a/tutorials/tutorial1/include/tutorial1/message/Msg1.h +++ b/tutorials/tutorial1/include/tutorial1/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial1/include/tutorial1/message/Msg1Common.h b/tutorials/tutorial1/include/tutorial1/message/Msg1Common.h index bdded4bce..aa73d8016 100644 --- a/tutorials/tutorial1/include/tutorial1/message/Msg1Common.h +++ b/tutorials/tutorial1/include/tutorial1/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial1/include/tutorial1/message/Msg2.h b/tutorials/tutorial1/include/tutorial1/message/Msg2.h index 986114606..aa63f131a 100644 --- a/tutorials/tutorial1/include/tutorial1/message/Msg2.h +++ b/tutorials/tutorial1/include/tutorial1/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial1/include/tutorial1/message/Msg2Common.h b/tutorials/tutorial1/include/tutorial1/message/Msg2Common.h index 9770c0f31..90627a36e 100644 --- a/tutorials/tutorial1/include/tutorial1/message/Msg2Common.h +++ b/tutorials/tutorial1/include/tutorial1/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial1/include/tutorial1/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial1/include/tutorial1/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 0f10d48c7..0e1f8b934 100644 --- a/tutorials/tutorial1/include/tutorial1/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial1/include/tutorial1/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial1/include/tutorial1/options/BareMetalDefaultOptions.h b/tutorials/tutorial1/include/tutorial1/options/BareMetalDefaultOptions.h index 034fff409..e6dacaa51 100644 --- a/tutorials/tutorial1/include/tutorial1/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial1/include/tutorial1/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial1/include/tutorial1/options/ClientDefaultOptions.h b/tutorials/tutorial1/include/tutorial1/options/ClientDefaultOptions.h index c9d0a6aef..1f30d0b6e 100644 --- a/tutorials/tutorial1/include/tutorial1/options/ClientDefaultOptions.h +++ b/tutorials/tutorial1/include/tutorial1/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial1/include/tutorial1/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial1/include/tutorial1/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 16c069b1b..5af262692 100644 --- a/tutorials/tutorial1/include/tutorial1/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial1/include/tutorial1/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial1/include/tutorial1/options/DataViewDefaultOptions.h b/tutorials/tutorial1/include/tutorial1/options/DataViewDefaultOptions.h index e80463c8d..c34d94094 100644 --- a/tutorials/tutorial1/include/tutorial1/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial1/include/tutorial1/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial1/include/tutorial1/options/DefaultOptions.h b/tutorials/tutorial1/include/tutorial1/options/DefaultOptions.h index 76db9e668..5b4f33270 100644 --- a/tutorials/tutorial1/include/tutorial1/options/DefaultOptions.h +++ b/tutorials/tutorial1/include/tutorial1/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial1/include/tutorial1/options/ServerDefaultOptions.h b/tutorials/tutorial1/include/tutorial1/options/ServerDefaultOptions.h index ad4169426..ddad125fa 100644 --- a/tutorials/tutorial1/include/tutorial1/options/ServerDefaultOptions.h +++ b/tutorials/tutorial1/include/tutorial1/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial1/include/tutorial1/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial1/include/tutorial1/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 4241fbbfa..3a9b3cf81 100644 --- a/tutorials/tutorial1/include/tutorial1/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial1/include/tutorial1/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial10/include/tutorial10/Message.h b/tutorials/tutorial10/include/tutorial10/Message.h index 831ceb149..3270dec0c 100644 --- a/tutorials/tutorial10/include/tutorial10/Message.h +++ b/tutorials/tutorial10/include/tutorial10/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial10/include/tutorial10/MsgId.h b/tutorials/tutorial10/include/tutorial10/MsgId.h index 365bb6393..a3705c623 100644 --- a/tutorials/tutorial10/include/tutorial10/MsgId.h +++ b/tutorials/tutorial10/include/tutorial10/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial10/include/tutorial10/Version.h b/tutorials/tutorial10/include/tutorial10/Version.h index a99127796..90b1126ef 100644 --- a/tutorials/tutorial10/include/tutorial10/Version.h +++ b/tutorials/tutorial10/include/tutorial10/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial10 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial10/include/tutorial10/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial10/include/tutorial10/dispatch/DispatchClientInputMessage.h index fdf298dd7..ca1c9fa99 100644 --- a/tutorials/tutorial10/include/tutorial10/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial10/include/tutorial10/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial10/include/tutorial10/dispatch/DispatchMessage.h b/tutorials/tutorial10/include/tutorial10/dispatch/DispatchMessage.h index 03d5eab1c..490c0c082 100644 --- a/tutorials/tutorial10/include/tutorial10/dispatch/DispatchMessage.h +++ b/tutorials/tutorial10/include/tutorial10/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial10/include/tutorial10/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial10/include/tutorial10/dispatch/DispatchServerInputMessage.h index 8e6520841..3b7a5b286 100644 --- a/tutorials/tutorial10/include/tutorial10/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial10/include/tutorial10/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial10/include/tutorial10/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial10/include/tutorial10/factory/AllMessagesDynMemMsgFactory.h index f6c3b8856..d6b0b5cc1 100644 --- a/tutorials/tutorial10/include/tutorial10/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial10/include/tutorial10/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial10/include/tutorial10/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial10/include/tutorial10/factory/ClientInputMessagesDynMemMsgFactory.h index 861bbf9b8..5ca05e806 100644 --- a/tutorials/tutorial10/include/tutorial10/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial10/include/tutorial10/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial10/include/tutorial10/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial10/include/tutorial10/factory/ServerInputMessagesDynMemMsgFactory.h index 5f91ce7c7..ee41e6779 100644 --- a/tutorials/tutorial10/include/tutorial10/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial10/include/tutorial10/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial10/include/tutorial10/field/FieldBase.h b/tutorials/tutorial10/include/tutorial10/field/FieldBase.h index c3a4be092..4418ac533 100644 --- a/tutorials/tutorial10/include/tutorial10/field/FieldBase.h +++ b/tutorials/tutorial10/include/tutorial10/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial10/include/tutorial10/field/MsgId.h b/tutorials/tutorial10/include/tutorial10/field/MsgId.h index a03b4e7f4..c2e1cede7 100644 --- a/tutorials/tutorial10/include/tutorial10/field/MsgId.h +++ b/tutorials/tutorial10/include/tutorial10/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial10/include/tutorial10/field/MsgIdCommon.h b/tutorials/tutorial10/include/tutorial10/field/MsgIdCommon.h index 6bd80d6ab..649402220 100644 --- a/tutorials/tutorial10/include/tutorial10/field/MsgIdCommon.h +++ b/tutorials/tutorial10/include/tutorial10/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial10/include/tutorial10/frame/Frame.h b/tutorials/tutorial10/include/tutorial10/frame/Frame.h index d24cb8caa..fc520e1f1 100644 --- a/tutorials/tutorial10/include/tutorial10/frame/Frame.h +++ b/tutorials/tutorial10/include/tutorial10/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial10/include/tutorial10/frame/FrameCommon.h b/tutorials/tutorial10/include/tutorial10/frame/FrameCommon.h index 11ffe1a80..dba621943 100644 --- a/tutorials/tutorial10/include/tutorial10/frame/FrameCommon.h +++ b/tutorials/tutorial10/include/tutorial10/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial10/include/tutorial10/input/AllMessages.h b/tutorials/tutorial10/include/tutorial10/input/AllMessages.h index bb54f8398..bb7d21cf2 100644 --- a/tutorials/tutorial10/include/tutorial10/input/AllMessages.h +++ b/tutorials/tutorial10/include/tutorial10/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial10/include/tutorial10/input/ClientInputMessages.h b/tutorials/tutorial10/include/tutorial10/input/ClientInputMessages.h index 09afde5d4..877ce8671 100644 --- a/tutorials/tutorial10/include/tutorial10/input/ClientInputMessages.h +++ b/tutorials/tutorial10/include/tutorial10/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial10/include/tutorial10/input/ServerInputMessages.h b/tutorials/tutorial10/include/tutorial10/input/ServerInputMessages.h index 614061cfa..51e7ab654 100644 --- a/tutorials/tutorial10/include/tutorial10/input/ServerInputMessages.h +++ b/tutorials/tutorial10/include/tutorial10/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial10/include/tutorial10/message/Msg1.h b/tutorials/tutorial10/include/tutorial10/message/Msg1.h index dc1cfef11..fae5dda70 100644 --- a/tutorials/tutorial10/include/tutorial10/message/Msg1.h +++ b/tutorials/tutorial10/include/tutorial10/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial10/include/tutorial10/message/Msg1Common.h b/tutorials/tutorial10/include/tutorial10/message/Msg1Common.h index dfecd98c2..4aa082d0c 100644 --- a/tutorials/tutorial10/include/tutorial10/message/Msg1Common.h +++ b/tutorials/tutorial10/include/tutorial10/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial10/include/tutorial10/message/Msg2.h b/tutorials/tutorial10/include/tutorial10/message/Msg2.h index 1777fdb78..882edaf92 100644 --- a/tutorials/tutorial10/include/tutorial10/message/Msg2.h +++ b/tutorials/tutorial10/include/tutorial10/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial10/include/tutorial10/message/Msg2Common.h b/tutorials/tutorial10/include/tutorial10/message/Msg2Common.h index 58b708804..c73cf391f 100644 --- a/tutorials/tutorial10/include/tutorial10/message/Msg2Common.h +++ b/tutorials/tutorial10/include/tutorial10/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial10/include/tutorial10/message/Msg3.h b/tutorials/tutorial10/include/tutorial10/message/Msg3.h index 44233da57..3d160728c 100644 --- a/tutorials/tutorial10/include/tutorial10/message/Msg3.h +++ b/tutorials/tutorial10/include/tutorial10/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/tutorials/tutorial10/include/tutorial10/message/Msg3Common.h b/tutorials/tutorial10/include/tutorial10/message/Msg3Common.h index bdfa337e7..a23a6b7cc 100644 --- a/tutorials/tutorial10/include/tutorial10/message/Msg3Common.h +++ b/tutorials/tutorial10/include/tutorial10/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial10/include/tutorial10/message/Msg4.h b/tutorials/tutorial10/include/tutorial10/message/Msg4.h index 83c945c78..53829108b 100644 --- a/tutorials/tutorial10/include/tutorial10/message/Msg4.h +++ b/tutorials/tutorial10/include/tutorial10/message/Msg4.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 4" message and its fields. diff --git a/tutorials/tutorial10/include/tutorial10/message/Msg4Common.h b/tutorials/tutorial10/include/tutorial10/message/Msg4Common.h index ce1ffdef5..fc9c068fd 100644 --- a/tutorials/tutorial10/include/tutorial10/message/Msg4Common.h +++ b/tutorials/tutorial10/include/tutorial10/message/Msg4Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial10/include/tutorial10/message/Msg5.h b/tutorials/tutorial10/include/tutorial10/message/Msg5.h index 135b8f40e..f37b4b16a 100644 --- a/tutorials/tutorial10/include/tutorial10/message/Msg5.h +++ b/tutorials/tutorial10/include/tutorial10/message/Msg5.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 5" message and its fields. diff --git a/tutorials/tutorial10/include/tutorial10/message/Msg5Common.h b/tutorials/tutorial10/include/tutorial10/message/Msg5Common.h index 6c3e497a0..704ee52bd 100644 --- a/tutorials/tutorial10/include/tutorial10/message/Msg5Common.h +++ b/tutorials/tutorial10/include/tutorial10/message/Msg5Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial10/include/tutorial10/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial10/include/tutorial10/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index f3f6840ad..593b6e2d5 100644 --- a/tutorials/tutorial10/include/tutorial10/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial10/include/tutorial10/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial10/include/tutorial10/options/BareMetalDefaultOptions.h b/tutorials/tutorial10/include/tutorial10/options/BareMetalDefaultOptions.h index b73ae3b40..ada02ef0a 100644 --- a/tutorials/tutorial10/include/tutorial10/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial10/include/tutorial10/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial10/include/tutorial10/options/ClientDefaultOptions.h b/tutorials/tutorial10/include/tutorial10/options/ClientDefaultOptions.h index 749528fe2..a4fc3c4cd 100644 --- a/tutorials/tutorial10/include/tutorial10/options/ClientDefaultOptions.h +++ b/tutorials/tutorial10/include/tutorial10/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial10/include/tutorial10/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial10/include/tutorial10/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 150deabb1..0d209dd2f 100644 --- a/tutorials/tutorial10/include/tutorial10/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial10/include/tutorial10/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial10/include/tutorial10/options/DataViewDefaultOptions.h b/tutorials/tutorial10/include/tutorial10/options/DataViewDefaultOptions.h index 2638151a1..1d1a2c4ba 100644 --- a/tutorials/tutorial10/include/tutorial10/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial10/include/tutorial10/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial10/include/tutorial10/options/DefaultOptions.h b/tutorials/tutorial10/include/tutorial10/options/DefaultOptions.h index e42d53b73..f71693a82 100644 --- a/tutorials/tutorial10/include/tutorial10/options/DefaultOptions.h +++ b/tutorials/tutorial10/include/tutorial10/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial10/include/tutorial10/options/ServerDefaultOptions.h b/tutorials/tutorial10/include/tutorial10/options/ServerDefaultOptions.h index 7e08f541f..d639423a0 100644 --- a/tutorials/tutorial10/include/tutorial10/options/ServerDefaultOptions.h +++ b/tutorials/tutorial10/include/tutorial10/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial10/include/tutorial10/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial10/include/tutorial10/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index b0aa17612..4b17818dc 100644 --- a/tutorials/tutorial10/include/tutorial10/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial10/include/tutorial10/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial11/include/tutorial11/Message.h b/tutorials/tutorial11/include/tutorial11/Message.h index 7cd108e48..06c6118a9 100644 --- a/tutorials/tutorial11/include/tutorial11/Message.h +++ b/tutorials/tutorial11/include/tutorial11/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial11/include/tutorial11/MsgId.h b/tutorials/tutorial11/include/tutorial11/MsgId.h index 37c1bda29..0858e87a0 100644 --- a/tutorials/tutorial11/include/tutorial11/MsgId.h +++ b/tutorials/tutorial11/include/tutorial11/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial11/include/tutorial11/Version.h b/tutorials/tutorial11/include/tutorial11/Version.h index d9a4448a9..d5a1b2657 100644 --- a/tutorials/tutorial11/include/tutorial11/Version.h +++ b/tutorials/tutorial11/include/tutorial11/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial11 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial11/include/tutorial11/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial11/include/tutorial11/dispatch/DispatchClientInputMessage.h index 0df0f5ca8..a9ea0d989 100644 --- a/tutorials/tutorial11/include/tutorial11/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial11/include/tutorial11/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial11/include/tutorial11/dispatch/DispatchMessage.h b/tutorials/tutorial11/include/tutorial11/dispatch/DispatchMessage.h index 5c4dfe1a9..3f566bb50 100644 --- a/tutorials/tutorial11/include/tutorial11/dispatch/DispatchMessage.h +++ b/tutorials/tutorial11/include/tutorial11/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial11/include/tutorial11/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial11/include/tutorial11/dispatch/DispatchServerInputMessage.h index fc2c3b4d3..3241932f3 100644 --- a/tutorials/tutorial11/include/tutorial11/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial11/include/tutorial11/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial11/include/tutorial11/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial11/include/tutorial11/factory/AllMessagesDynMemMsgFactory.h index 4295e67e3..dc35b7235 100644 --- a/tutorials/tutorial11/include/tutorial11/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial11/include/tutorial11/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial11/include/tutorial11/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial11/include/tutorial11/factory/ClientInputMessagesDynMemMsgFactory.h index 1e261950a..29391a586 100644 --- a/tutorials/tutorial11/include/tutorial11/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial11/include/tutorial11/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial11/include/tutorial11/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial11/include/tutorial11/factory/ServerInputMessagesDynMemMsgFactory.h index 3776a07b0..549e9bd87 100644 --- a/tutorials/tutorial11/include/tutorial11/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial11/include/tutorial11/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial11/include/tutorial11/field/FieldBase.h b/tutorials/tutorial11/include/tutorial11/field/FieldBase.h index f475f9d25..96a3b9545 100644 --- a/tutorials/tutorial11/include/tutorial11/field/FieldBase.h +++ b/tutorials/tutorial11/include/tutorial11/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial11/include/tutorial11/field/MsgId.h b/tutorials/tutorial11/include/tutorial11/field/MsgId.h index fc3dc32c7..a8bb2cd4b 100644 --- a/tutorials/tutorial11/include/tutorial11/field/MsgId.h +++ b/tutorials/tutorial11/include/tutorial11/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial11/include/tutorial11/field/MsgIdCommon.h b/tutorials/tutorial11/include/tutorial11/field/MsgIdCommon.h index 6642149a9..5f61170a4 100644 --- a/tutorials/tutorial11/include/tutorial11/field/MsgIdCommon.h +++ b/tutorials/tutorial11/include/tutorial11/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial11/include/tutorial11/frame/Frame.h b/tutorials/tutorial11/include/tutorial11/frame/Frame.h index ae6406a76..f88dadf78 100644 --- a/tutorials/tutorial11/include/tutorial11/frame/Frame.h +++ b/tutorials/tutorial11/include/tutorial11/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial11/include/tutorial11/frame/FrameCommon.h b/tutorials/tutorial11/include/tutorial11/frame/FrameCommon.h index 81c739394..9ffeed678 100644 --- a/tutorials/tutorial11/include/tutorial11/frame/FrameCommon.h +++ b/tutorials/tutorial11/include/tutorial11/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial11/include/tutorial11/input/AllMessages.h b/tutorials/tutorial11/include/tutorial11/input/AllMessages.h index a575211ed..7ebd9b5f8 100644 --- a/tutorials/tutorial11/include/tutorial11/input/AllMessages.h +++ b/tutorials/tutorial11/include/tutorial11/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial11/include/tutorial11/input/ClientInputMessages.h b/tutorials/tutorial11/include/tutorial11/input/ClientInputMessages.h index 5e39286fc..2e9d3435c 100644 --- a/tutorials/tutorial11/include/tutorial11/input/ClientInputMessages.h +++ b/tutorials/tutorial11/include/tutorial11/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial11/include/tutorial11/input/ServerInputMessages.h b/tutorials/tutorial11/include/tutorial11/input/ServerInputMessages.h index 9349b849d..c7212228e 100644 --- a/tutorials/tutorial11/include/tutorial11/input/ServerInputMessages.h +++ b/tutorials/tutorial11/include/tutorial11/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial11/include/tutorial11/message/Msg1.h b/tutorials/tutorial11/include/tutorial11/message/Msg1.h index 76d4b0e83..d689c73a3 100644 --- a/tutorials/tutorial11/include/tutorial11/message/Msg1.h +++ b/tutorials/tutorial11/include/tutorial11/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial11/include/tutorial11/message/Msg1Common.h b/tutorials/tutorial11/include/tutorial11/message/Msg1Common.h index 67606e5b9..cff6fae75 100644 --- a/tutorials/tutorial11/include/tutorial11/message/Msg1Common.h +++ b/tutorials/tutorial11/include/tutorial11/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial11/include/tutorial11/message/Msg2.h b/tutorials/tutorial11/include/tutorial11/message/Msg2.h index d6c46dd63..ae3700593 100644 --- a/tutorials/tutorial11/include/tutorial11/message/Msg2.h +++ b/tutorials/tutorial11/include/tutorial11/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial11/include/tutorial11/message/Msg2Common.h b/tutorials/tutorial11/include/tutorial11/message/Msg2Common.h index b41c7ece9..0f24add87 100644 --- a/tutorials/tutorial11/include/tutorial11/message/Msg2Common.h +++ b/tutorials/tutorial11/include/tutorial11/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial11/include/tutorial11/message/Msg3.h b/tutorials/tutorial11/include/tutorial11/message/Msg3.h index 1db389a24..b26b6dcdb 100644 --- a/tutorials/tutorial11/include/tutorial11/message/Msg3.h +++ b/tutorials/tutorial11/include/tutorial11/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/tutorials/tutorial11/include/tutorial11/message/Msg3Common.h b/tutorials/tutorial11/include/tutorial11/message/Msg3Common.h index 9fa2f57a6..fa163c912 100644 --- a/tutorials/tutorial11/include/tutorial11/message/Msg3Common.h +++ b/tutorials/tutorial11/include/tutorial11/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial11/include/tutorial11/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial11/include/tutorial11/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index a31930f0f..78122aa6f 100644 --- a/tutorials/tutorial11/include/tutorial11/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial11/include/tutorial11/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial11/include/tutorial11/options/BareMetalDefaultOptions.h b/tutorials/tutorial11/include/tutorial11/options/BareMetalDefaultOptions.h index fe514d3c1..34d17cf12 100644 --- a/tutorials/tutorial11/include/tutorial11/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial11/include/tutorial11/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial11/include/tutorial11/options/ClientDefaultOptions.h b/tutorials/tutorial11/include/tutorial11/options/ClientDefaultOptions.h index 868ce2fc4..ed14b8c4d 100644 --- a/tutorials/tutorial11/include/tutorial11/options/ClientDefaultOptions.h +++ b/tutorials/tutorial11/include/tutorial11/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial11/include/tutorial11/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial11/include/tutorial11/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 8c65a0151..26d6261c8 100644 --- a/tutorials/tutorial11/include/tutorial11/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial11/include/tutorial11/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial11/include/tutorial11/options/DataViewDefaultOptions.h b/tutorials/tutorial11/include/tutorial11/options/DataViewDefaultOptions.h index ffb89b451..8b79214b6 100644 --- a/tutorials/tutorial11/include/tutorial11/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial11/include/tutorial11/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial11/include/tutorial11/options/DefaultOptions.h b/tutorials/tutorial11/include/tutorial11/options/DefaultOptions.h index 5d11a2e22..fc535f78f 100644 --- a/tutorials/tutorial11/include/tutorial11/options/DefaultOptions.h +++ b/tutorials/tutorial11/include/tutorial11/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial11/include/tutorial11/options/ServerDefaultOptions.h b/tutorials/tutorial11/include/tutorial11/options/ServerDefaultOptions.h index 657a21c4b..b5e526e2c 100644 --- a/tutorials/tutorial11/include/tutorial11/options/ServerDefaultOptions.h +++ b/tutorials/tutorial11/include/tutorial11/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial11/include/tutorial11/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial11/include/tutorial11/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 910d7261c..db2bc0b1a 100644 --- a/tutorials/tutorial11/include/tutorial11/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial11/include/tutorial11/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial12/include/tutorial12/Message.h b/tutorials/tutorial12/include/tutorial12/Message.h index b52599296..1002308a6 100644 --- a/tutorials/tutorial12/include/tutorial12/Message.h +++ b/tutorials/tutorial12/include/tutorial12/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial12/include/tutorial12/MsgId.h b/tutorials/tutorial12/include/tutorial12/MsgId.h index e959ec54e..e40c42857 100644 --- a/tutorials/tutorial12/include/tutorial12/MsgId.h +++ b/tutorials/tutorial12/include/tutorial12/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial12/include/tutorial12/Version.h b/tutorials/tutorial12/include/tutorial12/Version.h index 8dd441fe6..951df5e92 100644 --- a/tutorials/tutorial12/include/tutorial12/Version.h +++ b/tutorials/tutorial12/include/tutorial12/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial12 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial12/include/tutorial12/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial12/include/tutorial12/dispatch/DispatchClientInputMessage.h index e5e10994c..275972463 100644 --- a/tutorials/tutorial12/include/tutorial12/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial12/include/tutorial12/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial12/include/tutorial12/dispatch/DispatchMessage.h b/tutorials/tutorial12/include/tutorial12/dispatch/DispatchMessage.h index 786cc7033..982bdd493 100644 --- a/tutorials/tutorial12/include/tutorial12/dispatch/DispatchMessage.h +++ b/tutorials/tutorial12/include/tutorial12/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial12/include/tutorial12/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial12/include/tutorial12/dispatch/DispatchServerInputMessage.h index 0da4b0a01..72cc24d98 100644 --- a/tutorials/tutorial12/include/tutorial12/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial12/include/tutorial12/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial12/include/tutorial12/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial12/include/tutorial12/factory/AllMessagesDynMemMsgFactory.h index 5d0ed50f9..b2b021e57 100644 --- a/tutorials/tutorial12/include/tutorial12/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial12/include/tutorial12/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial12/include/tutorial12/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial12/include/tutorial12/factory/ClientInputMessagesDynMemMsgFactory.h index 3f242cf5b..44b466c58 100644 --- a/tutorials/tutorial12/include/tutorial12/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial12/include/tutorial12/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial12/include/tutorial12/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial12/include/tutorial12/factory/ServerInputMessagesDynMemMsgFactory.h index aa6ed80e7..5d8894d0c 100644 --- a/tutorials/tutorial12/include/tutorial12/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial12/include/tutorial12/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial12/include/tutorial12/field/FieldBase.h b/tutorials/tutorial12/include/tutorial12/field/FieldBase.h index 02269842f..243751d7c 100644 --- a/tutorials/tutorial12/include/tutorial12/field/FieldBase.h +++ b/tutorials/tutorial12/include/tutorial12/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial12/include/tutorial12/field/Length.h b/tutorials/tutorial12/include/tutorial12/field/Length.h index 7cc990ae7..1552e05d1 100644 --- a/tutorials/tutorial12/include/tutorial12/field/Length.h +++ b/tutorials/tutorial12/include/tutorial12/field/Length.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Length" field. diff --git a/tutorials/tutorial12/include/tutorial12/field/LengthCommon.h b/tutorials/tutorial12/include/tutorial12/field/LengthCommon.h index ee24afc1e..678f965f4 100644 --- a/tutorials/tutorial12/include/tutorial12/field/LengthCommon.h +++ b/tutorials/tutorial12/include/tutorial12/field/LengthCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial12/include/tutorial12/field/MsgId.h b/tutorials/tutorial12/include/tutorial12/field/MsgId.h index 2fe925914..0dea59b0a 100644 --- a/tutorials/tutorial12/include/tutorial12/field/MsgId.h +++ b/tutorials/tutorial12/include/tutorial12/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial12/include/tutorial12/field/MsgIdCommon.h b/tutorials/tutorial12/include/tutorial12/field/MsgIdCommon.h index 3f7c506e7..48cbf8c08 100644 --- a/tutorials/tutorial12/include/tutorial12/field/MsgIdCommon.h +++ b/tutorials/tutorial12/include/tutorial12/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial12/include/tutorial12/frame/Frame.h b/tutorials/tutorial12/include/tutorial12/frame/Frame.h index 14e1fd96c..9742edfdc 100644 --- a/tutorials/tutorial12/include/tutorial12/frame/Frame.h +++ b/tutorials/tutorial12/include/tutorial12/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial12/include/tutorial12/frame/FrameCommon.h b/tutorials/tutorial12/include/tutorial12/frame/FrameCommon.h index f4dd2696a..15440486e 100644 --- a/tutorials/tutorial12/include/tutorial12/frame/FrameCommon.h +++ b/tutorials/tutorial12/include/tutorial12/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial12/include/tutorial12/input/AllMessages.h b/tutorials/tutorial12/include/tutorial12/input/AllMessages.h index 2623889de..6b7819cd7 100644 --- a/tutorials/tutorial12/include/tutorial12/input/AllMessages.h +++ b/tutorials/tutorial12/include/tutorial12/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial12/include/tutorial12/input/ClientInputMessages.h b/tutorials/tutorial12/include/tutorial12/input/ClientInputMessages.h index ada423c47..9e6e1c56c 100644 --- a/tutorials/tutorial12/include/tutorial12/input/ClientInputMessages.h +++ b/tutorials/tutorial12/include/tutorial12/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial12/include/tutorial12/input/ServerInputMessages.h b/tutorials/tutorial12/include/tutorial12/input/ServerInputMessages.h index 5192e5429..decf5ae67 100644 --- a/tutorials/tutorial12/include/tutorial12/input/ServerInputMessages.h +++ b/tutorials/tutorial12/include/tutorial12/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial12/include/tutorial12/message/Msg1.h b/tutorials/tutorial12/include/tutorial12/message/Msg1.h index 7e0719d5a..e30a3c381 100644 --- a/tutorials/tutorial12/include/tutorial12/message/Msg1.h +++ b/tutorials/tutorial12/include/tutorial12/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial12/include/tutorial12/message/Msg1Common.h b/tutorials/tutorial12/include/tutorial12/message/Msg1Common.h index c20228921..2c2d20877 100644 --- a/tutorials/tutorial12/include/tutorial12/message/Msg1Common.h +++ b/tutorials/tutorial12/include/tutorial12/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial12/include/tutorial12/message/Msg2.h b/tutorials/tutorial12/include/tutorial12/message/Msg2.h index d5892266e..ce1e4836a 100644 --- a/tutorials/tutorial12/include/tutorial12/message/Msg2.h +++ b/tutorials/tutorial12/include/tutorial12/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial12/include/tutorial12/message/Msg2Common.h b/tutorials/tutorial12/include/tutorial12/message/Msg2Common.h index f4ccb23f3..47a03b676 100644 --- a/tutorials/tutorial12/include/tutorial12/message/Msg2Common.h +++ b/tutorials/tutorial12/include/tutorial12/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial12/include/tutorial12/message/Msg3.h b/tutorials/tutorial12/include/tutorial12/message/Msg3.h index 38171dfa5..d14b53104 100644 --- a/tutorials/tutorial12/include/tutorial12/message/Msg3.h +++ b/tutorials/tutorial12/include/tutorial12/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/tutorials/tutorial12/include/tutorial12/message/Msg3Common.h b/tutorials/tutorial12/include/tutorial12/message/Msg3Common.h index c06f870cb..1175148a6 100644 --- a/tutorials/tutorial12/include/tutorial12/message/Msg3Common.h +++ b/tutorials/tutorial12/include/tutorial12/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial12/include/tutorial12/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial12/include/tutorial12/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 78ca29f78..1da319493 100644 --- a/tutorials/tutorial12/include/tutorial12/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial12/include/tutorial12/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial12/include/tutorial12/options/BareMetalDefaultOptions.h b/tutorials/tutorial12/include/tutorial12/options/BareMetalDefaultOptions.h index f9e95b2c0..88baa0c87 100644 --- a/tutorials/tutorial12/include/tutorial12/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial12/include/tutorial12/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial12/include/tutorial12/options/ClientDefaultOptions.h b/tutorials/tutorial12/include/tutorial12/options/ClientDefaultOptions.h index 717f06e13..da066538b 100644 --- a/tutorials/tutorial12/include/tutorial12/options/ClientDefaultOptions.h +++ b/tutorials/tutorial12/include/tutorial12/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial12/include/tutorial12/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial12/include/tutorial12/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 9795fd5b0..038613d3e 100644 --- a/tutorials/tutorial12/include/tutorial12/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial12/include/tutorial12/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial12/include/tutorial12/options/DataViewDefaultOptions.h b/tutorials/tutorial12/include/tutorial12/options/DataViewDefaultOptions.h index d3ce287c7..6e0bde336 100644 --- a/tutorials/tutorial12/include/tutorial12/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial12/include/tutorial12/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial12/include/tutorial12/options/DefaultOptions.h b/tutorials/tutorial12/include/tutorial12/options/DefaultOptions.h index 7beeb33db..6b99f00a9 100644 --- a/tutorials/tutorial12/include/tutorial12/options/DefaultOptions.h +++ b/tutorials/tutorial12/include/tutorial12/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial12/include/tutorial12/options/ServerDefaultOptions.h b/tutorials/tutorial12/include/tutorial12/options/ServerDefaultOptions.h index 392f2ab24..4327ad534 100644 --- a/tutorials/tutorial12/include/tutorial12/options/ServerDefaultOptions.h +++ b/tutorials/tutorial12/include/tutorial12/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial12/include/tutorial12/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial12/include/tutorial12/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index b0b02eb7b..5264bb438 100644 --- a/tutorials/tutorial12/include/tutorial12/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial12/include/tutorial12/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial13/include/tutorial13/Message.h b/tutorials/tutorial13/include/tutorial13/Message.h index 82a62550f..f307cdf51 100644 --- a/tutorials/tutorial13/include/tutorial13/Message.h +++ b/tutorials/tutorial13/include/tutorial13/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial13/include/tutorial13/MsgId.h b/tutorials/tutorial13/include/tutorial13/MsgId.h index 016dc828e..b47dc8409 100644 --- a/tutorials/tutorial13/include/tutorial13/MsgId.h +++ b/tutorials/tutorial13/include/tutorial13/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial13/include/tutorial13/Version.h b/tutorials/tutorial13/include/tutorial13/Version.h index c05477235..08895e9c6 100644 --- a/tutorials/tutorial13/include/tutorial13/Version.h +++ b/tutorials/tutorial13/include/tutorial13/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial13 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial13/include/tutorial13/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial13/include/tutorial13/dispatch/DispatchClientInputMessage.h index fde2b7a70..9ccfef4dd 100644 --- a/tutorials/tutorial13/include/tutorial13/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial13/include/tutorial13/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial13/include/tutorial13/dispatch/DispatchMessage.h b/tutorials/tutorial13/include/tutorial13/dispatch/DispatchMessage.h index 7dfb2414c..cfa17e003 100644 --- a/tutorials/tutorial13/include/tutorial13/dispatch/DispatchMessage.h +++ b/tutorials/tutorial13/include/tutorial13/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial13/include/tutorial13/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial13/include/tutorial13/dispatch/DispatchServerInputMessage.h index 11a96b0dd..d122fe598 100644 --- a/tutorials/tutorial13/include/tutorial13/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial13/include/tutorial13/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial13/include/tutorial13/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial13/include/tutorial13/factory/AllMessagesDynMemMsgFactory.h index 8b4937d49..528f45ab5 100644 --- a/tutorials/tutorial13/include/tutorial13/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial13/include/tutorial13/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial13/include/tutorial13/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial13/include/tutorial13/factory/ClientInputMessagesDynMemMsgFactory.h index c91ea10ae..722393c3e 100644 --- a/tutorials/tutorial13/include/tutorial13/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial13/include/tutorial13/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial13/include/tutorial13/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial13/include/tutorial13/factory/ServerInputMessagesDynMemMsgFactory.h index a35f6f38e..636dee852 100644 --- a/tutorials/tutorial13/include/tutorial13/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial13/include/tutorial13/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial13/include/tutorial13/field/FieldBase.h b/tutorials/tutorial13/include/tutorial13/field/FieldBase.h index f1db1fd98..fa526f52e 100644 --- a/tutorials/tutorial13/include/tutorial13/field/FieldBase.h +++ b/tutorials/tutorial13/include/tutorial13/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial13/include/tutorial13/field/MsgId.h b/tutorials/tutorial13/include/tutorial13/field/MsgId.h index 47a5a1487..444d3b27a 100644 --- a/tutorials/tutorial13/include/tutorial13/field/MsgId.h +++ b/tutorials/tutorial13/include/tutorial13/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial13/include/tutorial13/field/MsgIdCommon.h b/tutorials/tutorial13/include/tutorial13/field/MsgIdCommon.h index c4faaacbc..74d8adf8e 100644 --- a/tutorials/tutorial13/include/tutorial13/field/MsgIdCommon.h +++ b/tutorials/tutorial13/include/tutorial13/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial13/include/tutorial13/frame/Frame.h b/tutorials/tutorial13/include/tutorial13/frame/Frame.h index 956d51242..8610bd68f 100644 --- a/tutorials/tutorial13/include/tutorial13/frame/Frame.h +++ b/tutorials/tutorial13/include/tutorial13/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial13/include/tutorial13/frame/FrameCommon.h b/tutorials/tutorial13/include/tutorial13/frame/FrameCommon.h index 5d765d04e..b127d5874 100644 --- a/tutorials/tutorial13/include/tutorial13/frame/FrameCommon.h +++ b/tutorials/tutorial13/include/tutorial13/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial13/include/tutorial13/input/AllMessages.h b/tutorials/tutorial13/include/tutorial13/input/AllMessages.h index ee5edbde1..c1ddba9c3 100644 --- a/tutorials/tutorial13/include/tutorial13/input/AllMessages.h +++ b/tutorials/tutorial13/include/tutorial13/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial13/include/tutorial13/input/ClientInputMessages.h b/tutorials/tutorial13/include/tutorial13/input/ClientInputMessages.h index 3bfaf2276..0e5759adf 100644 --- a/tutorials/tutorial13/include/tutorial13/input/ClientInputMessages.h +++ b/tutorials/tutorial13/include/tutorial13/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial13/include/tutorial13/input/ServerInputMessages.h b/tutorials/tutorial13/include/tutorial13/input/ServerInputMessages.h index 0384ee8e8..90521ea3e 100644 --- a/tutorials/tutorial13/include/tutorial13/input/ServerInputMessages.h +++ b/tutorials/tutorial13/include/tutorial13/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial13/include/tutorial13/message/Msg1_1.h b/tutorials/tutorial13/include/tutorial13/message/Msg1_1.h index 5b772aa77..1427f0d06 100644 --- a/tutorials/tutorial13/include/tutorial13/message/Msg1_1.h +++ b/tutorials/tutorial13/include/tutorial13/message/Msg1_1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1 (1)" message and its fields. diff --git a/tutorials/tutorial13/include/tutorial13/message/Msg1_1Common.h b/tutorials/tutorial13/include/tutorial13/message/Msg1_1Common.h index ddd67ae1e..dfe3648fc 100644 --- a/tutorials/tutorial13/include/tutorial13/message/Msg1_1Common.h +++ b/tutorials/tutorial13/include/tutorial13/message/Msg1_1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial13/include/tutorial13/message/Msg1_2.h b/tutorials/tutorial13/include/tutorial13/message/Msg1_2.h index 1383671fc..2a03b7456 100644 --- a/tutorials/tutorial13/include/tutorial13/message/Msg1_2.h +++ b/tutorials/tutorial13/include/tutorial13/message/Msg1_2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1 (2)" message and its fields. diff --git a/tutorials/tutorial13/include/tutorial13/message/Msg1_2Common.h b/tutorials/tutorial13/include/tutorial13/message/Msg1_2Common.h index 1822d3853..d9ae00feb 100644 --- a/tutorials/tutorial13/include/tutorial13/message/Msg1_2Common.h +++ b/tutorials/tutorial13/include/tutorial13/message/Msg1_2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial13/include/tutorial13/message/Msg1_3.h b/tutorials/tutorial13/include/tutorial13/message/Msg1_3.h index b59440f7d..6253deddc 100644 --- a/tutorials/tutorial13/include/tutorial13/message/Msg1_3.h +++ b/tutorials/tutorial13/include/tutorial13/message/Msg1_3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1 (3)" message and its fields. diff --git a/tutorials/tutorial13/include/tutorial13/message/Msg1_3Common.h b/tutorials/tutorial13/include/tutorial13/message/Msg1_3Common.h index a20ced96e..c26ddb060 100644 --- a/tutorials/tutorial13/include/tutorial13/message/Msg1_3Common.h +++ b/tutorials/tutorial13/include/tutorial13/message/Msg1_3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial13/include/tutorial13/message/Msg2_1.h b/tutorials/tutorial13/include/tutorial13/message/Msg2_1.h index 2c0ad60f5..9a6ba7ad0 100644 --- a/tutorials/tutorial13/include/tutorial13/message/Msg2_1.h +++ b/tutorials/tutorial13/include/tutorial13/message/Msg2_1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2 (1)" message and its fields. diff --git a/tutorials/tutorial13/include/tutorial13/message/Msg2_1Common.h b/tutorials/tutorial13/include/tutorial13/message/Msg2_1Common.h index 0dc3e09e8..5f4ff5610 100644 --- a/tutorials/tutorial13/include/tutorial13/message/Msg2_1Common.h +++ b/tutorials/tutorial13/include/tutorial13/message/Msg2_1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial13/include/tutorial13/message/Msg2_2.h b/tutorials/tutorial13/include/tutorial13/message/Msg2_2.h index b0d658908..e475aba33 100644 --- a/tutorials/tutorial13/include/tutorial13/message/Msg2_2.h +++ b/tutorials/tutorial13/include/tutorial13/message/Msg2_2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2 (2)" message and its fields. diff --git a/tutorials/tutorial13/include/tutorial13/message/Msg2_2Common.h b/tutorials/tutorial13/include/tutorial13/message/Msg2_2Common.h index 3a8fe337a..2719d476f 100644 --- a/tutorials/tutorial13/include/tutorial13/message/Msg2_2Common.h +++ b/tutorials/tutorial13/include/tutorial13/message/Msg2_2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial13/include/tutorial13/message/Msg2_3.h b/tutorials/tutorial13/include/tutorial13/message/Msg2_3.h index a5d6b38f5..2aca0b4d5 100644 --- a/tutorials/tutorial13/include/tutorial13/message/Msg2_3.h +++ b/tutorials/tutorial13/include/tutorial13/message/Msg2_3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2 (3)" message and its fields. diff --git a/tutorials/tutorial13/include/tutorial13/message/Msg2_3Common.h b/tutorials/tutorial13/include/tutorial13/message/Msg2_3Common.h index bf2c6a6df..00035d26f 100644 --- a/tutorials/tutorial13/include/tutorial13/message/Msg2_3Common.h +++ b/tutorials/tutorial13/include/tutorial13/message/Msg2_3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial13/include/tutorial13/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial13/include/tutorial13/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index a05a8a87b..22ec75e07 100644 --- a/tutorials/tutorial13/include/tutorial13/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial13/include/tutorial13/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial13/include/tutorial13/options/BareMetalDefaultOptions.h b/tutorials/tutorial13/include/tutorial13/options/BareMetalDefaultOptions.h index bb3834add..68ebc94d9 100644 --- a/tutorials/tutorial13/include/tutorial13/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial13/include/tutorial13/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial13/include/tutorial13/options/ClientDefaultOptions.h b/tutorials/tutorial13/include/tutorial13/options/ClientDefaultOptions.h index 569e26416..50a9da86f 100644 --- a/tutorials/tutorial13/include/tutorial13/options/ClientDefaultOptions.h +++ b/tutorials/tutorial13/include/tutorial13/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial13/include/tutorial13/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial13/include/tutorial13/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 50d840566..8abb9d8d8 100644 --- a/tutorials/tutorial13/include/tutorial13/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial13/include/tutorial13/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial13/include/tutorial13/options/DataViewDefaultOptions.h b/tutorials/tutorial13/include/tutorial13/options/DataViewDefaultOptions.h index 23345a114..d728b1053 100644 --- a/tutorials/tutorial13/include/tutorial13/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial13/include/tutorial13/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial13/include/tutorial13/options/DefaultOptions.h b/tutorials/tutorial13/include/tutorial13/options/DefaultOptions.h index dac240c82..80db2392d 100644 --- a/tutorials/tutorial13/include/tutorial13/options/DefaultOptions.h +++ b/tutorials/tutorial13/include/tutorial13/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial13/include/tutorial13/options/ServerDefaultOptions.h b/tutorials/tutorial13/include/tutorial13/options/ServerDefaultOptions.h index 73c446fe1..7a7a3be27 100644 --- a/tutorials/tutorial13/include/tutorial13/options/ServerDefaultOptions.h +++ b/tutorials/tutorial13/include/tutorial13/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial13/include/tutorial13/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial13/include/tutorial13/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 5abcdf8f8..ecd265e8d 100644 --- a/tutorials/tutorial13/include/tutorial13/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial13/include/tutorial13/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial14/include/tutorial14/Message.h b/tutorials/tutorial14/include/tutorial14/Message.h index 253ed1f32..872b18dbe 100644 --- a/tutorials/tutorial14/include/tutorial14/Message.h +++ b/tutorials/tutorial14/include/tutorial14/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial14/include/tutorial14/MsgId.h b/tutorials/tutorial14/include/tutorial14/MsgId.h index 493c4684f..6757d8eb0 100644 --- a/tutorials/tutorial14/include/tutorial14/MsgId.h +++ b/tutorials/tutorial14/include/tutorial14/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial14/include/tutorial14/Version.h b/tutorials/tutorial14/include/tutorial14/Version.h index 8cf7d798f..f4f8cd3ac 100644 --- a/tutorials/tutorial14/include/tutorial14/Version.h +++ b/tutorials/tutorial14/include/tutorial14/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial14 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial14/include/tutorial14/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial14/include/tutorial14/dispatch/DispatchClientInputMessage.h index 3cbb0b43a..efdb0e89d 100644 --- a/tutorials/tutorial14/include/tutorial14/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial14/include/tutorial14/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial14/include/tutorial14/dispatch/DispatchMessage.h b/tutorials/tutorial14/include/tutorial14/dispatch/DispatchMessage.h index 93af79513..153ebdee6 100644 --- a/tutorials/tutorial14/include/tutorial14/dispatch/DispatchMessage.h +++ b/tutorials/tutorial14/include/tutorial14/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial14/include/tutorial14/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial14/include/tutorial14/dispatch/DispatchServerInputMessage.h index 1577bfe5a..b00c91a13 100644 --- a/tutorials/tutorial14/include/tutorial14/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial14/include/tutorial14/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial14/include/tutorial14/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial14/include/tutorial14/factory/AllMessagesDynMemMsgFactory.h index d97fc23a0..82f875fc6 100644 --- a/tutorials/tutorial14/include/tutorial14/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial14/include/tutorial14/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial14/include/tutorial14/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial14/include/tutorial14/factory/ClientInputMessagesDynMemMsgFactory.h index 60afc7758..4e93b02fb 100644 --- a/tutorials/tutorial14/include/tutorial14/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial14/include/tutorial14/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial14/include/tutorial14/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial14/include/tutorial14/factory/ServerInputMessagesDynMemMsgFactory.h index 7db624778..03258f17f 100644 --- a/tutorials/tutorial14/include/tutorial14/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial14/include/tutorial14/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial14/include/tutorial14/field/FieldBase.h b/tutorials/tutorial14/include/tutorial14/field/FieldBase.h index 50aadba13..494e32c50 100644 --- a/tutorials/tutorial14/include/tutorial14/field/FieldBase.h +++ b/tutorials/tutorial14/include/tutorial14/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial14/include/tutorial14/field/MsgId.h b/tutorials/tutorial14/include/tutorial14/field/MsgId.h index 187f5b088..9c2f42d0d 100644 --- a/tutorials/tutorial14/include/tutorial14/field/MsgId.h +++ b/tutorials/tutorial14/include/tutorial14/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial14/include/tutorial14/field/MsgIdCommon.h b/tutorials/tutorial14/include/tutorial14/field/MsgIdCommon.h index 708320cf5..568f60a9b 100644 --- a/tutorials/tutorial14/include/tutorial14/field/MsgIdCommon.h +++ b/tutorials/tutorial14/include/tutorial14/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial14/include/tutorial14/frame/Frame.h b/tutorials/tutorial14/include/tutorial14/frame/Frame.h index 96d1d348f..16cdc16a2 100644 --- a/tutorials/tutorial14/include/tutorial14/frame/Frame.h +++ b/tutorials/tutorial14/include/tutorial14/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial14/include/tutorial14/frame/FrameCommon.h b/tutorials/tutorial14/include/tutorial14/frame/FrameCommon.h index 2aea1f7ca..b2cf9deb6 100644 --- a/tutorials/tutorial14/include/tutorial14/frame/FrameCommon.h +++ b/tutorials/tutorial14/include/tutorial14/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial14/include/tutorial14/input/AllMessages.h b/tutorials/tutorial14/include/tutorial14/input/AllMessages.h index b0d843136..61d202bac 100644 --- a/tutorials/tutorial14/include/tutorial14/input/AllMessages.h +++ b/tutorials/tutorial14/include/tutorial14/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial14/include/tutorial14/input/ClientInputMessages.h b/tutorials/tutorial14/include/tutorial14/input/ClientInputMessages.h index 9f3de059a..b8da63ba7 100644 --- a/tutorials/tutorial14/include/tutorial14/input/ClientInputMessages.h +++ b/tutorials/tutorial14/include/tutorial14/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial14/include/tutorial14/input/ServerInputMessages.h b/tutorials/tutorial14/include/tutorial14/input/ServerInputMessages.h index 54d3b43ed..876ade489 100644 --- a/tutorials/tutorial14/include/tutorial14/input/ServerInputMessages.h +++ b/tutorials/tutorial14/include/tutorial14/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial14/include/tutorial14/message/Msg1.h b/tutorials/tutorial14/include/tutorial14/message/Msg1.h index 5866b301e..dee148e4c 100644 --- a/tutorials/tutorial14/include/tutorial14/message/Msg1.h +++ b/tutorials/tutorial14/include/tutorial14/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial14/include/tutorial14/message/Msg1Common.h b/tutorials/tutorial14/include/tutorial14/message/Msg1Common.h index d2ad0cceb..5081a3949 100644 --- a/tutorials/tutorial14/include/tutorial14/message/Msg1Common.h +++ b/tutorials/tutorial14/include/tutorial14/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial14/include/tutorial14/message/Msg2.h b/tutorials/tutorial14/include/tutorial14/message/Msg2.h index 070715ef9..9f8ecc7a3 100644 --- a/tutorials/tutorial14/include/tutorial14/message/Msg2.h +++ b/tutorials/tutorial14/include/tutorial14/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial14/include/tutorial14/message/Msg2Common.h b/tutorials/tutorial14/include/tutorial14/message/Msg2Common.h index 3b9e8dc42..a97920297 100644 --- a/tutorials/tutorial14/include/tutorial14/message/Msg2Common.h +++ b/tutorials/tutorial14/include/tutorial14/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial14/include/tutorial14/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial14/include/tutorial14/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 062059e0b..2af537a4e 100644 --- a/tutorials/tutorial14/include/tutorial14/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial14/include/tutorial14/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial14/include/tutorial14/options/BareMetalDefaultOptions.h b/tutorials/tutorial14/include/tutorial14/options/BareMetalDefaultOptions.h index f102a4f03..93173ce83 100644 --- a/tutorials/tutorial14/include/tutorial14/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial14/include/tutorial14/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial14/include/tutorial14/options/ClientDefaultOptions.h b/tutorials/tutorial14/include/tutorial14/options/ClientDefaultOptions.h index a8ff6e448..fe2895c8a 100644 --- a/tutorials/tutorial14/include/tutorial14/options/ClientDefaultOptions.h +++ b/tutorials/tutorial14/include/tutorial14/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial14/include/tutorial14/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial14/include/tutorial14/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 846e33e66..38d8118ab 100644 --- a/tutorials/tutorial14/include/tutorial14/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial14/include/tutorial14/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial14/include/tutorial14/options/DataViewDefaultOptions.h b/tutorials/tutorial14/include/tutorial14/options/DataViewDefaultOptions.h index c1a42d2aa..2e4873b6d 100644 --- a/tutorials/tutorial14/include/tutorial14/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial14/include/tutorial14/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial14/include/tutorial14/options/DefaultOptions.h b/tutorials/tutorial14/include/tutorial14/options/DefaultOptions.h index 92110f2b2..d8431155c 100644 --- a/tutorials/tutorial14/include/tutorial14/options/DefaultOptions.h +++ b/tutorials/tutorial14/include/tutorial14/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial14/include/tutorial14/options/ServerDefaultOptions.h b/tutorials/tutorial14/include/tutorial14/options/ServerDefaultOptions.h index 5ddbbe1dc..6d7ed4982 100644 --- a/tutorials/tutorial14/include/tutorial14/options/ServerDefaultOptions.h +++ b/tutorials/tutorial14/include/tutorial14/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial14/include/tutorial14/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial14/include/tutorial14/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index d72b3a42c..1d10fd020 100644 --- a/tutorials/tutorial14/include/tutorial14/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial14/include/tutorial14/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial15/include/tutorial15/Message.h b/tutorials/tutorial15/include/tutorial15/Message.h index bc72d0205..9c213e407 100644 --- a/tutorials/tutorial15/include/tutorial15/Message.h +++ b/tutorials/tutorial15/include/tutorial15/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial15/include/tutorial15/MsgId.h b/tutorials/tutorial15/include/tutorial15/MsgId.h index 359eb6923..86e9b8efb 100644 --- a/tutorials/tutorial15/include/tutorial15/MsgId.h +++ b/tutorials/tutorial15/include/tutorial15/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial15/include/tutorial15/Version.h b/tutorials/tutorial15/include/tutorial15/Version.h index 79624eccb..96daa20aa 100644 --- a/tutorials/tutorial15/include/tutorial15/Version.h +++ b/tutorials/tutorial15/include/tutorial15/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial15 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial15/include/tutorial15/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial15/include/tutorial15/dispatch/DispatchClientInputMessage.h index 9d3c4393c..a1104a12b 100644 --- a/tutorials/tutorial15/include/tutorial15/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial15/include/tutorial15/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial15/include/tutorial15/dispatch/DispatchMessage.h b/tutorials/tutorial15/include/tutorial15/dispatch/DispatchMessage.h index 4c7e77529..c7fea0ffc 100644 --- a/tutorials/tutorial15/include/tutorial15/dispatch/DispatchMessage.h +++ b/tutorials/tutorial15/include/tutorial15/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial15/include/tutorial15/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial15/include/tutorial15/dispatch/DispatchServerInputMessage.h index d41cacb5f..ed6642ecb 100644 --- a/tutorials/tutorial15/include/tutorial15/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial15/include/tutorial15/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial15/include/tutorial15/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial15/include/tutorial15/factory/AllMessagesDynMemMsgFactory.h index 2084f1a58..3e5758924 100644 --- a/tutorials/tutorial15/include/tutorial15/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial15/include/tutorial15/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial15/include/tutorial15/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial15/include/tutorial15/factory/ClientInputMessagesDynMemMsgFactory.h index 327cc8e90..f1ec59411 100644 --- a/tutorials/tutorial15/include/tutorial15/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial15/include/tutorial15/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial15/include/tutorial15/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial15/include/tutorial15/factory/ServerInputMessagesDynMemMsgFactory.h index d2b06274e..513fe7cca 100644 --- a/tutorials/tutorial15/include/tutorial15/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial15/include/tutorial15/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial15/include/tutorial15/field/FieldBase.h b/tutorials/tutorial15/include/tutorial15/field/FieldBase.h index 549287ab5..bfd98e67b 100644 --- a/tutorials/tutorial15/include/tutorial15/field/FieldBase.h +++ b/tutorials/tutorial15/include/tutorial15/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial15/include/tutorial15/field/MsgId.h b/tutorials/tutorial15/include/tutorial15/field/MsgId.h index 7dcceac6b..d63c882be 100644 --- a/tutorials/tutorial15/include/tutorial15/field/MsgId.h +++ b/tutorials/tutorial15/include/tutorial15/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial15/include/tutorial15/field/MsgIdCommon.h b/tutorials/tutorial15/include/tutorial15/field/MsgIdCommon.h index 9155e5007..2b22272a0 100644 --- a/tutorials/tutorial15/include/tutorial15/field/MsgIdCommon.h +++ b/tutorials/tutorial15/include/tutorial15/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial15/include/tutorial15/frame/Frame.h b/tutorials/tutorial15/include/tutorial15/frame/Frame.h index 43be4075d..c28e0acf1 100644 --- a/tutorials/tutorial15/include/tutorial15/frame/Frame.h +++ b/tutorials/tutorial15/include/tutorial15/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial15/include/tutorial15/frame/FrameCommon.h b/tutorials/tutorial15/include/tutorial15/frame/FrameCommon.h index 620fec7b5..fbd694351 100644 --- a/tutorials/tutorial15/include/tutorial15/frame/FrameCommon.h +++ b/tutorials/tutorial15/include/tutorial15/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial15/include/tutorial15/input/AllMessages.h b/tutorials/tutorial15/include/tutorial15/input/AllMessages.h index f32fe2af9..b5f9605dd 100644 --- a/tutorials/tutorial15/include/tutorial15/input/AllMessages.h +++ b/tutorials/tutorial15/include/tutorial15/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial15/include/tutorial15/input/ClientInputMessages.h b/tutorials/tutorial15/include/tutorial15/input/ClientInputMessages.h index 9c475b4af..c64465312 100644 --- a/tutorials/tutorial15/include/tutorial15/input/ClientInputMessages.h +++ b/tutorials/tutorial15/include/tutorial15/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial15/include/tutorial15/input/ServerInputMessages.h b/tutorials/tutorial15/include/tutorial15/input/ServerInputMessages.h index 0319aa211..2a91f1dce 100644 --- a/tutorials/tutorial15/include/tutorial15/input/ServerInputMessages.h +++ b/tutorials/tutorial15/include/tutorial15/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial15/include/tutorial15/message/Msg1.h b/tutorials/tutorial15/include/tutorial15/message/Msg1.h index 390f5676e..632182615 100644 --- a/tutorials/tutorial15/include/tutorial15/message/Msg1.h +++ b/tutorials/tutorial15/include/tutorial15/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial15/include/tutorial15/message/Msg1Common.h b/tutorials/tutorial15/include/tutorial15/message/Msg1Common.h index c85e3ca98..fa78becf1 100644 --- a/tutorials/tutorial15/include/tutorial15/message/Msg1Common.h +++ b/tutorials/tutorial15/include/tutorial15/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial15/include/tutorial15/message/Msg2.h b/tutorials/tutorial15/include/tutorial15/message/Msg2.h index 9c15e60e1..a7a069799 100644 --- a/tutorials/tutorial15/include/tutorial15/message/Msg2.h +++ b/tutorials/tutorial15/include/tutorial15/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial15/include/tutorial15/message/Msg2Common.h b/tutorials/tutorial15/include/tutorial15/message/Msg2Common.h index 25c59ab6e..15756586e 100644 --- a/tutorials/tutorial15/include/tutorial15/message/Msg2Common.h +++ b/tutorials/tutorial15/include/tutorial15/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial15/include/tutorial15/message/Msg3.h b/tutorials/tutorial15/include/tutorial15/message/Msg3.h index 3213be4cb..56da22c27 100644 --- a/tutorials/tutorial15/include/tutorial15/message/Msg3.h +++ b/tutorials/tutorial15/include/tutorial15/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/tutorials/tutorial15/include/tutorial15/message/Msg3Common.h b/tutorials/tutorial15/include/tutorial15/message/Msg3Common.h index d55b76761..7767fd2dd 100644 --- a/tutorials/tutorial15/include/tutorial15/message/Msg3Common.h +++ b/tutorials/tutorial15/include/tutorial15/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial15/include/tutorial15/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial15/include/tutorial15/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index d334b388a..bb958459e 100644 --- a/tutorials/tutorial15/include/tutorial15/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial15/include/tutorial15/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial15/include/tutorial15/options/BareMetalDefaultOptions.h b/tutorials/tutorial15/include/tutorial15/options/BareMetalDefaultOptions.h index adfa74635..9e79278e6 100644 --- a/tutorials/tutorial15/include/tutorial15/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial15/include/tutorial15/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial15/include/tutorial15/options/ClientDefaultOptions.h b/tutorials/tutorial15/include/tutorial15/options/ClientDefaultOptions.h index 76713712b..5f1cab5ab 100644 --- a/tutorials/tutorial15/include/tutorial15/options/ClientDefaultOptions.h +++ b/tutorials/tutorial15/include/tutorial15/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial15/include/tutorial15/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial15/include/tutorial15/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 98ff12d25..ff1bb3d9c 100644 --- a/tutorials/tutorial15/include/tutorial15/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial15/include/tutorial15/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial15/include/tutorial15/options/DataViewDefaultOptions.h b/tutorials/tutorial15/include/tutorial15/options/DataViewDefaultOptions.h index cd6def72c..6f5af1714 100644 --- a/tutorials/tutorial15/include/tutorial15/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial15/include/tutorial15/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial15/include/tutorial15/options/DefaultOptions.h b/tutorials/tutorial15/include/tutorial15/options/DefaultOptions.h index 0407388b5..020a942d8 100644 --- a/tutorials/tutorial15/include/tutorial15/options/DefaultOptions.h +++ b/tutorials/tutorial15/include/tutorial15/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial15/include/tutorial15/options/ServerDefaultOptions.h b/tutorials/tutorial15/include/tutorial15/options/ServerDefaultOptions.h index fd791d71d..9b058681e 100644 --- a/tutorials/tutorial15/include/tutorial15/options/ServerDefaultOptions.h +++ b/tutorials/tutorial15/include/tutorial15/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial15/include/tutorial15/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial15/include/tutorial15/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 281fb82b3..2c31cede6 100644 --- a/tutorials/tutorial15/include/tutorial15/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial15/include/tutorial15/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial16/include/tutorial16/Interface.h b/tutorials/tutorial16/include/tutorial16/Interface.h index 315ef78e5..92e67457b 100644 --- a/tutorials/tutorial16/include/tutorial16/Interface.h +++ b/tutorials/tutorial16/include/tutorial16/Interface.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Interface" interface class. diff --git a/tutorials/tutorial16/include/tutorial16/InterfaceCommon.h b/tutorials/tutorial16/include/tutorial16/InterfaceCommon.h index 8b81be376..b38a92ef6 100644 --- a/tutorials/tutorial16/include/tutorial16/InterfaceCommon.h +++ b/tutorials/tutorial16/include/tutorial16/InterfaceCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial16/include/tutorial16/MsgId.h b/tutorials/tutorial16/include/tutorial16/MsgId.h index fbc195bca..66d1c87c5 100644 --- a/tutorials/tutorial16/include/tutorial16/MsgId.h +++ b/tutorials/tutorial16/include/tutorial16/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial16/include/tutorial16/Version.h b/tutorials/tutorial16/include/tutorial16/Version.h index 22313bab6..6dc1dba09 100644 --- a/tutorials/tutorial16/include/tutorial16/Version.h +++ b/tutorials/tutorial16/include/tutorial16/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial16 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial16/include/tutorial16/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial16/include/tutorial16/dispatch/DispatchClientInputMessage.h index cf2b9f6b8..bb7a3761c 100644 --- a/tutorials/tutorial16/include/tutorial16/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial16/include/tutorial16/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial16/include/tutorial16/dispatch/DispatchMessage.h b/tutorials/tutorial16/include/tutorial16/dispatch/DispatchMessage.h index bc57bb6e0..a98d7a36d 100644 --- a/tutorials/tutorial16/include/tutorial16/dispatch/DispatchMessage.h +++ b/tutorials/tutorial16/include/tutorial16/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial16/include/tutorial16/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial16/include/tutorial16/dispatch/DispatchServerInputMessage.h index 18676f3d9..56b9c8ca6 100644 --- a/tutorials/tutorial16/include/tutorial16/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial16/include/tutorial16/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial16/include/tutorial16/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial16/include/tutorial16/factory/AllMessagesDynMemMsgFactory.h index 46ead2256..ff349a1df 100644 --- a/tutorials/tutorial16/include/tutorial16/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial16/include/tutorial16/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial16/include/tutorial16/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial16/include/tutorial16/factory/ClientInputMessagesDynMemMsgFactory.h index 70543a2d1..2e2cf3ca5 100644 --- a/tutorials/tutorial16/include/tutorial16/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial16/include/tutorial16/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial16/include/tutorial16/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial16/include/tutorial16/factory/ServerInputMessagesDynMemMsgFactory.h index a07ff1c53..cdd65333c 100644 --- a/tutorials/tutorial16/include/tutorial16/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial16/include/tutorial16/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial16/include/tutorial16/field/FieldBase.h b/tutorials/tutorial16/include/tutorial16/field/FieldBase.h index 115421bcb..b1fa39537 100644 --- a/tutorials/tutorial16/include/tutorial16/field/FieldBase.h +++ b/tutorials/tutorial16/include/tutorial16/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial16/include/tutorial16/field/InterfaceFlags.h b/tutorials/tutorial16/include/tutorial16/field/InterfaceFlags.h index 8028dfda8..405503f55 100644 --- a/tutorials/tutorial16/include/tutorial16/field/InterfaceFlags.h +++ b/tutorials/tutorial16/include/tutorial16/field/InterfaceFlags.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "InterfaceFlags" field. diff --git a/tutorials/tutorial16/include/tutorial16/field/InterfaceFlagsCommon.h b/tutorials/tutorial16/include/tutorial16/field/InterfaceFlagsCommon.h index 365c59bda..3b9cdc0f6 100644 --- a/tutorials/tutorial16/include/tutorial16/field/InterfaceFlagsCommon.h +++ b/tutorials/tutorial16/include/tutorial16/field/InterfaceFlagsCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial16/include/tutorial16/field/MsgId.h b/tutorials/tutorial16/include/tutorial16/field/MsgId.h index 3fc85a605..1a288afdc 100644 --- a/tutorials/tutorial16/include/tutorial16/field/MsgId.h +++ b/tutorials/tutorial16/include/tutorial16/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial16/include/tutorial16/field/MsgIdCommon.h b/tutorials/tutorial16/include/tutorial16/field/MsgIdCommon.h index a8ccfb54d..cebaaf46c 100644 --- a/tutorials/tutorial16/include/tutorial16/field/MsgIdCommon.h +++ b/tutorials/tutorial16/include/tutorial16/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial16/include/tutorial16/frame/Frame.h b/tutorials/tutorial16/include/tutorial16/frame/Frame.h index f86cb7ace..e59c73bf1 100644 --- a/tutorials/tutorial16/include/tutorial16/frame/Frame.h +++ b/tutorials/tutorial16/include/tutorial16/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial16/include/tutorial16/frame/FrameCommon.h b/tutorials/tutorial16/include/tutorial16/frame/FrameCommon.h index 339bc64e9..4f65fd2f9 100644 --- a/tutorials/tutorial16/include/tutorial16/frame/FrameCommon.h +++ b/tutorials/tutorial16/include/tutorial16/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial16/include/tutorial16/input/AllMessages.h b/tutorials/tutorial16/include/tutorial16/input/AllMessages.h index f0acddcf3..8587ec0f9 100644 --- a/tutorials/tutorial16/include/tutorial16/input/AllMessages.h +++ b/tutorials/tutorial16/include/tutorial16/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial16/include/tutorial16/input/ClientInputMessages.h b/tutorials/tutorial16/include/tutorial16/input/ClientInputMessages.h index 8b7e45296..6335c48ca 100644 --- a/tutorials/tutorial16/include/tutorial16/input/ClientInputMessages.h +++ b/tutorials/tutorial16/include/tutorial16/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial16/include/tutorial16/input/ServerInputMessages.h b/tutorials/tutorial16/include/tutorial16/input/ServerInputMessages.h index 6f692ead5..bd17e621a 100644 --- a/tutorials/tutorial16/include/tutorial16/input/ServerInputMessages.h +++ b/tutorials/tutorial16/include/tutorial16/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial16/include/tutorial16/message/Msg1.h b/tutorials/tutorial16/include/tutorial16/message/Msg1.h index a08c24788..3c817e46a 100644 --- a/tutorials/tutorial16/include/tutorial16/message/Msg1.h +++ b/tutorials/tutorial16/include/tutorial16/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial16/include/tutorial16/message/Msg1Common.h b/tutorials/tutorial16/include/tutorial16/message/Msg1Common.h index 805aa6bc3..fa783df59 100644 --- a/tutorials/tutorial16/include/tutorial16/message/Msg1Common.h +++ b/tutorials/tutorial16/include/tutorial16/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial16/include/tutorial16/message/Msg2.h b/tutorials/tutorial16/include/tutorial16/message/Msg2.h index 2831172b4..cace32023 100644 --- a/tutorials/tutorial16/include/tutorial16/message/Msg2.h +++ b/tutorials/tutorial16/include/tutorial16/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial16/include/tutorial16/message/Msg2Common.h b/tutorials/tutorial16/include/tutorial16/message/Msg2Common.h index 8e2ea3121..1875d82da 100644 --- a/tutorials/tutorial16/include/tutorial16/message/Msg2Common.h +++ b/tutorials/tutorial16/include/tutorial16/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial16/include/tutorial16/message/Msg3.h b/tutorials/tutorial16/include/tutorial16/message/Msg3.h index ff507bff2..0f4bd11fb 100644 --- a/tutorials/tutorial16/include/tutorial16/message/Msg3.h +++ b/tutorials/tutorial16/include/tutorial16/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/tutorials/tutorial16/include/tutorial16/message/Msg3Common.h b/tutorials/tutorial16/include/tutorial16/message/Msg3Common.h index 8bed1e951..8867c5043 100644 --- a/tutorials/tutorial16/include/tutorial16/message/Msg3Common.h +++ b/tutorials/tutorial16/include/tutorial16/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial16/include/tutorial16/message/Msg4.h b/tutorials/tutorial16/include/tutorial16/message/Msg4.h index 4e7a8c6ef..36164bb32 100644 --- a/tutorials/tutorial16/include/tutorial16/message/Msg4.h +++ b/tutorials/tutorial16/include/tutorial16/message/Msg4.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 4" message and its fields. diff --git a/tutorials/tutorial16/include/tutorial16/message/Msg4Common.h b/tutorials/tutorial16/include/tutorial16/message/Msg4Common.h index da9015c09..3b0ce3f62 100644 --- a/tutorials/tutorial16/include/tutorial16/message/Msg4Common.h +++ b/tutorials/tutorial16/include/tutorial16/message/Msg4Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial16/include/tutorial16/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial16/include/tutorial16/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 4151e9158..b5f1e58d1 100644 --- a/tutorials/tutorial16/include/tutorial16/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial16/include/tutorial16/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial16/include/tutorial16/options/BareMetalDefaultOptions.h b/tutorials/tutorial16/include/tutorial16/options/BareMetalDefaultOptions.h index a6bca8d16..941bed739 100644 --- a/tutorials/tutorial16/include/tutorial16/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial16/include/tutorial16/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial16/include/tutorial16/options/ClientDefaultOptions.h b/tutorials/tutorial16/include/tutorial16/options/ClientDefaultOptions.h index 521b32d09..a961b0514 100644 --- a/tutorials/tutorial16/include/tutorial16/options/ClientDefaultOptions.h +++ b/tutorials/tutorial16/include/tutorial16/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial16/include/tutorial16/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial16/include/tutorial16/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index f2003df32..60f886a40 100644 --- a/tutorials/tutorial16/include/tutorial16/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial16/include/tutorial16/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial16/include/tutorial16/options/DataViewDefaultOptions.h b/tutorials/tutorial16/include/tutorial16/options/DataViewDefaultOptions.h index 269a8f3cf..73f8a9d44 100644 --- a/tutorials/tutorial16/include/tutorial16/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial16/include/tutorial16/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial16/include/tutorial16/options/DefaultOptions.h b/tutorials/tutorial16/include/tutorial16/options/DefaultOptions.h index f0b6c9372..32211117b 100644 --- a/tutorials/tutorial16/include/tutorial16/options/DefaultOptions.h +++ b/tutorials/tutorial16/include/tutorial16/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial16/include/tutorial16/options/ServerDefaultOptions.h b/tutorials/tutorial16/include/tutorial16/options/ServerDefaultOptions.h index 246cec024..8d82b7dce 100644 --- a/tutorials/tutorial16/include/tutorial16/options/ServerDefaultOptions.h +++ b/tutorials/tutorial16/include/tutorial16/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial16/include/tutorial16/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial16/include/tutorial16/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 9201d35f5..92a760b05 100644 --- a/tutorials/tutorial16/include/tutorial16/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial16/include/tutorial16/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial17/include/tutorial17/Interface.h b/tutorials/tutorial17/include/tutorial17/Interface.h index cc3cc79ba..ee0780854 100644 --- a/tutorials/tutorial17/include/tutorial17/Interface.h +++ b/tutorials/tutorial17/include/tutorial17/Interface.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Interface" interface class. diff --git a/tutorials/tutorial17/include/tutorial17/InterfaceCommon.h b/tutorials/tutorial17/include/tutorial17/InterfaceCommon.h index 82c3b9ff6..fa773fc54 100644 --- a/tutorials/tutorial17/include/tutorial17/InterfaceCommon.h +++ b/tutorials/tutorial17/include/tutorial17/InterfaceCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial17/include/tutorial17/MsgId.h b/tutorials/tutorial17/include/tutorial17/MsgId.h index 9862764ba..306911d03 100644 --- a/tutorials/tutorial17/include/tutorial17/MsgId.h +++ b/tutorials/tutorial17/include/tutorial17/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial17/include/tutorial17/Version.h b/tutorials/tutorial17/include/tutorial17/Version.h index 6689080d5..46fa87527 100644 --- a/tutorials/tutorial17/include/tutorial17/Version.h +++ b/tutorials/tutorial17/include/tutorial17/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial17 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial17/include/tutorial17/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial17/include/tutorial17/dispatch/DispatchClientInputMessage.h index 72d294e61..3cca3e0a2 100644 --- a/tutorials/tutorial17/include/tutorial17/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial17/include/tutorial17/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial17/include/tutorial17/dispatch/DispatchMessage.h b/tutorials/tutorial17/include/tutorial17/dispatch/DispatchMessage.h index fb0858c87..a8a1acde1 100644 --- a/tutorials/tutorial17/include/tutorial17/dispatch/DispatchMessage.h +++ b/tutorials/tutorial17/include/tutorial17/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial17/include/tutorial17/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial17/include/tutorial17/dispatch/DispatchServerInputMessage.h index c9501c211..368fb282b 100644 --- a/tutorials/tutorial17/include/tutorial17/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial17/include/tutorial17/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial17/include/tutorial17/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial17/include/tutorial17/factory/AllMessagesDynMemMsgFactory.h index a7de00b91..b84135658 100644 --- a/tutorials/tutorial17/include/tutorial17/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial17/include/tutorial17/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial17/include/tutorial17/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial17/include/tutorial17/factory/ClientInputMessagesDynMemMsgFactory.h index 9d185a7d7..f478467db 100644 --- a/tutorials/tutorial17/include/tutorial17/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial17/include/tutorial17/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial17/include/tutorial17/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial17/include/tutorial17/factory/ServerInputMessagesDynMemMsgFactory.h index b236cf85c..84bfc2edc 100644 --- a/tutorials/tutorial17/include/tutorial17/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial17/include/tutorial17/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial17/include/tutorial17/field/FieldBase.h b/tutorials/tutorial17/include/tutorial17/field/FieldBase.h index 914a0aaae..4ca0adc18 100644 --- a/tutorials/tutorial17/include/tutorial17/field/FieldBase.h +++ b/tutorials/tutorial17/include/tutorial17/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial17/include/tutorial17/field/MsgId.h b/tutorials/tutorial17/include/tutorial17/field/MsgId.h index 8a8aea49d..99008ae54 100644 --- a/tutorials/tutorial17/include/tutorial17/field/MsgId.h +++ b/tutorials/tutorial17/include/tutorial17/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial17/include/tutorial17/field/MsgIdCommon.h b/tutorials/tutorial17/include/tutorial17/field/MsgIdCommon.h index 28732e036..ba2dc1ceb 100644 --- a/tutorials/tutorial17/include/tutorial17/field/MsgIdCommon.h +++ b/tutorials/tutorial17/include/tutorial17/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial17/include/tutorial17/frame/Frame.h b/tutorials/tutorial17/include/tutorial17/frame/Frame.h index d4cdda57f..80774f6a3 100644 --- a/tutorials/tutorial17/include/tutorial17/frame/Frame.h +++ b/tutorials/tutorial17/include/tutorial17/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial17/include/tutorial17/frame/FrameCommon.h b/tutorials/tutorial17/include/tutorial17/frame/FrameCommon.h index a0bde7079..98fc575e0 100644 --- a/tutorials/tutorial17/include/tutorial17/frame/FrameCommon.h +++ b/tutorials/tutorial17/include/tutorial17/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial17/include/tutorial17/input/AllMessages.h b/tutorials/tutorial17/include/tutorial17/input/AllMessages.h index ecdacb398..987db5815 100644 --- a/tutorials/tutorial17/include/tutorial17/input/AllMessages.h +++ b/tutorials/tutorial17/include/tutorial17/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial17/include/tutorial17/input/ClientInputMessages.h b/tutorials/tutorial17/include/tutorial17/input/ClientInputMessages.h index 19cd97d2d..08514e8d9 100644 --- a/tutorials/tutorial17/include/tutorial17/input/ClientInputMessages.h +++ b/tutorials/tutorial17/include/tutorial17/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial17/include/tutorial17/input/ServerInputMessages.h b/tutorials/tutorial17/include/tutorial17/input/ServerInputMessages.h index 4cd6c831a..f5505a651 100644 --- a/tutorials/tutorial17/include/tutorial17/input/ServerInputMessages.h +++ b/tutorials/tutorial17/include/tutorial17/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial17/include/tutorial17/message/Msg1.h b/tutorials/tutorial17/include/tutorial17/message/Msg1.h index b8e8d8d12..9a80ac9f0 100644 --- a/tutorials/tutorial17/include/tutorial17/message/Msg1.h +++ b/tutorials/tutorial17/include/tutorial17/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial17/include/tutorial17/message/Msg1Common.h b/tutorials/tutorial17/include/tutorial17/message/Msg1Common.h index 41881eec9..4045fe56a 100644 --- a/tutorials/tutorial17/include/tutorial17/message/Msg1Common.h +++ b/tutorials/tutorial17/include/tutorial17/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial17/include/tutorial17/message/Msg2.h b/tutorials/tutorial17/include/tutorial17/message/Msg2.h index 065b62379..5c6319d27 100644 --- a/tutorials/tutorial17/include/tutorial17/message/Msg2.h +++ b/tutorials/tutorial17/include/tutorial17/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial17/include/tutorial17/message/Msg2Common.h b/tutorials/tutorial17/include/tutorial17/message/Msg2Common.h index 0b3656a69..f8ca69891 100644 --- a/tutorials/tutorial17/include/tutorial17/message/Msg2Common.h +++ b/tutorials/tutorial17/include/tutorial17/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial17/include/tutorial17/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial17/include/tutorial17/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 9efc4ad26..df173259f 100644 --- a/tutorials/tutorial17/include/tutorial17/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial17/include/tutorial17/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial17/include/tutorial17/options/BareMetalDefaultOptions.h b/tutorials/tutorial17/include/tutorial17/options/BareMetalDefaultOptions.h index b9acff0d3..ee53d9d5c 100644 --- a/tutorials/tutorial17/include/tutorial17/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial17/include/tutorial17/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial17/include/tutorial17/options/ClientDefaultOptions.h b/tutorials/tutorial17/include/tutorial17/options/ClientDefaultOptions.h index b07ae9219..73ac5580a 100644 --- a/tutorials/tutorial17/include/tutorial17/options/ClientDefaultOptions.h +++ b/tutorials/tutorial17/include/tutorial17/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial17/include/tutorial17/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial17/include/tutorial17/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 6d245e41b..24ab2ff55 100644 --- a/tutorials/tutorial17/include/tutorial17/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial17/include/tutorial17/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial17/include/tutorial17/options/DataViewDefaultOptions.h b/tutorials/tutorial17/include/tutorial17/options/DataViewDefaultOptions.h index d4535fc57..852d1da96 100644 --- a/tutorials/tutorial17/include/tutorial17/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial17/include/tutorial17/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial17/include/tutorial17/options/DefaultOptions.h b/tutorials/tutorial17/include/tutorial17/options/DefaultOptions.h index 71620549a..999f1f71e 100644 --- a/tutorials/tutorial17/include/tutorial17/options/DefaultOptions.h +++ b/tutorials/tutorial17/include/tutorial17/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial17/include/tutorial17/options/ServerDefaultOptions.h b/tutorials/tutorial17/include/tutorial17/options/ServerDefaultOptions.h index 2fcf0463d..0abeeb2bf 100644 --- a/tutorials/tutorial17/include/tutorial17/options/ServerDefaultOptions.h +++ b/tutorials/tutorial17/include/tutorial17/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial17/include/tutorial17/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial17/include/tutorial17/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index a141e7031..8d3aced76 100644 --- a/tutorials/tutorial17/include/tutorial17/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial17/include/tutorial17/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial18/include/tutorial18/Message.h b/tutorials/tutorial18/include/tutorial18/Message.h index b04826aed..01e21a21e 100644 --- a/tutorials/tutorial18/include/tutorial18/Message.h +++ b/tutorials/tutorial18/include/tutorial18/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial18/include/tutorial18/MsgId.h b/tutorials/tutorial18/include/tutorial18/MsgId.h index 5eceb3235..396c6adc5 100644 --- a/tutorials/tutorial18/include/tutorial18/MsgId.h +++ b/tutorials/tutorial18/include/tutorial18/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial18/include/tutorial18/Version.h b/tutorials/tutorial18/include/tutorial18/Version.h index a4b61c975..92a869f78 100644 --- a/tutorials/tutorial18/include/tutorial18/Version.h +++ b/tutorials/tutorial18/include/tutorial18/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial18 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial18/include/tutorial18/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial18/include/tutorial18/dispatch/DispatchClientInputMessage.h index 8c3033ef0..1d6cd8b72 100644 --- a/tutorials/tutorial18/include/tutorial18/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial18/include/tutorial18/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial18/include/tutorial18/dispatch/DispatchMessage.h b/tutorials/tutorial18/include/tutorial18/dispatch/DispatchMessage.h index 86816e139..3841685a6 100644 --- a/tutorials/tutorial18/include/tutorial18/dispatch/DispatchMessage.h +++ b/tutorials/tutorial18/include/tutorial18/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial18/include/tutorial18/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial18/include/tutorial18/dispatch/DispatchServerInputMessage.h index 60a162f7d..5d032b4e7 100644 --- a/tutorials/tutorial18/include/tutorial18/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial18/include/tutorial18/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial18/include/tutorial18/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial18/include/tutorial18/factory/AllMessagesDynMemMsgFactory.h index 5fd088d9d..1e94eb70b 100644 --- a/tutorials/tutorial18/include/tutorial18/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial18/include/tutorial18/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial18/include/tutorial18/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial18/include/tutorial18/factory/ClientInputMessagesDynMemMsgFactory.h index 9525637b2..962a9ba2a 100644 --- a/tutorials/tutorial18/include/tutorial18/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial18/include/tutorial18/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial18/include/tutorial18/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial18/include/tutorial18/factory/ServerInputMessagesDynMemMsgFactory.h index 714c3e246..af024df4e 100644 --- a/tutorials/tutorial18/include/tutorial18/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial18/include/tutorial18/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial18/include/tutorial18/field/FieldBase.h b/tutorials/tutorial18/include/tutorial18/field/FieldBase.h index 84fc9317e..7d5d5a796 100644 --- a/tutorials/tutorial18/include/tutorial18/field/FieldBase.h +++ b/tutorials/tutorial18/include/tutorial18/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial18/include/tutorial18/field/MsgId.h b/tutorials/tutorial18/include/tutorial18/field/MsgId.h index 714e36009..1f3e82233 100644 --- a/tutorials/tutorial18/include/tutorial18/field/MsgId.h +++ b/tutorials/tutorial18/include/tutorial18/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "ID" field. diff --git a/tutorials/tutorial18/include/tutorial18/field/MsgIdCommon.h b/tutorials/tutorial18/include/tutorial18/field/MsgIdCommon.h index cb2ec0b29..229d624cd 100644 --- a/tutorials/tutorial18/include/tutorial18/field/MsgIdCommon.h +++ b/tutorials/tutorial18/include/tutorial18/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial18/include/tutorial18/frame/Frame.h b/tutorials/tutorial18/include/tutorial18/frame/Frame.h index 0e02e68be..d18d39a51 100644 --- a/tutorials/tutorial18/include/tutorial18/frame/Frame.h +++ b/tutorials/tutorial18/include/tutorial18/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial18/include/tutorial18/frame/FrameCommon.h b/tutorials/tutorial18/include/tutorial18/frame/FrameCommon.h index c63765d36..a081c6f3a 100644 --- a/tutorials/tutorial18/include/tutorial18/frame/FrameCommon.h +++ b/tutorials/tutorial18/include/tutorial18/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial18/include/tutorial18/input/AllMessages.h b/tutorials/tutorial18/include/tutorial18/input/AllMessages.h index ef1375d2f..f3a26b755 100644 --- a/tutorials/tutorial18/include/tutorial18/input/AllMessages.h +++ b/tutorials/tutorial18/include/tutorial18/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial18/include/tutorial18/input/ClientInputMessages.h b/tutorials/tutorial18/include/tutorial18/input/ClientInputMessages.h index c15d1521f..1f0c3a3d7 100644 --- a/tutorials/tutorial18/include/tutorial18/input/ClientInputMessages.h +++ b/tutorials/tutorial18/include/tutorial18/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial18/include/tutorial18/input/ServerInputMessages.h b/tutorials/tutorial18/include/tutorial18/input/ServerInputMessages.h index d8987eae2..17bb8bbca 100644 --- a/tutorials/tutorial18/include/tutorial18/input/ServerInputMessages.h +++ b/tutorials/tutorial18/include/tutorial18/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial18/include/tutorial18/message/Msg1_1.h b/tutorials/tutorial18/include/tutorial18/message/Msg1_1.h index 7c479405e..5472a93ec 100644 --- a/tutorials/tutorial18/include/tutorial18/message/Msg1_1.h +++ b/tutorials/tutorial18/include/tutorial18/message/Msg1_1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1 (1)" message and its fields. diff --git a/tutorials/tutorial18/include/tutorial18/message/Msg1_1Common.h b/tutorials/tutorial18/include/tutorial18/message/Msg1_1Common.h index 9ca8e4a1e..b33f5538c 100644 --- a/tutorials/tutorial18/include/tutorial18/message/Msg1_1Common.h +++ b/tutorials/tutorial18/include/tutorial18/message/Msg1_1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial18/include/tutorial18/message/Msg1_2.h b/tutorials/tutorial18/include/tutorial18/message/Msg1_2.h index 6a4350120..ff8a26270 100644 --- a/tutorials/tutorial18/include/tutorial18/message/Msg1_2.h +++ b/tutorials/tutorial18/include/tutorial18/message/Msg1_2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1 (2)" message and its fields. diff --git a/tutorials/tutorial18/include/tutorial18/message/Msg1_2Common.h b/tutorials/tutorial18/include/tutorial18/message/Msg1_2Common.h index 2bf092878..12cb692da 100644 --- a/tutorials/tutorial18/include/tutorial18/message/Msg1_2Common.h +++ b/tutorials/tutorial18/include/tutorial18/message/Msg1_2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial18/include/tutorial18/message/Msg1_3.h b/tutorials/tutorial18/include/tutorial18/message/Msg1_3.h index 82e487b99..69f896a31 100644 --- a/tutorials/tutorial18/include/tutorial18/message/Msg1_3.h +++ b/tutorials/tutorial18/include/tutorial18/message/Msg1_3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1 (3)" message and its fields. diff --git a/tutorials/tutorial18/include/tutorial18/message/Msg1_3Common.h b/tutorials/tutorial18/include/tutorial18/message/Msg1_3Common.h index 75056972a..d664b1203 100644 --- a/tutorials/tutorial18/include/tutorial18/message/Msg1_3Common.h +++ b/tutorials/tutorial18/include/tutorial18/message/Msg1_3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial18/include/tutorial18/message/Msg2_1.h b/tutorials/tutorial18/include/tutorial18/message/Msg2_1.h index 53dd14421..38ba1ac2f 100644 --- a/tutorials/tutorial18/include/tutorial18/message/Msg2_1.h +++ b/tutorials/tutorial18/include/tutorial18/message/Msg2_1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2 (1)" message and its fields. diff --git a/tutorials/tutorial18/include/tutorial18/message/Msg2_1Common.h b/tutorials/tutorial18/include/tutorial18/message/Msg2_1Common.h index 5079255fd..cab253b5f 100644 --- a/tutorials/tutorial18/include/tutorial18/message/Msg2_1Common.h +++ b/tutorials/tutorial18/include/tutorial18/message/Msg2_1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial18/include/tutorial18/message/Msg2_2.h b/tutorials/tutorial18/include/tutorial18/message/Msg2_2.h index 934c20764..0b86e8b47 100644 --- a/tutorials/tutorial18/include/tutorial18/message/Msg2_2.h +++ b/tutorials/tutorial18/include/tutorial18/message/Msg2_2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2 (2)" message and its fields. diff --git a/tutorials/tutorial18/include/tutorial18/message/Msg2_2Common.h b/tutorials/tutorial18/include/tutorial18/message/Msg2_2Common.h index 9284d28cd..8269473a2 100644 --- a/tutorials/tutorial18/include/tutorial18/message/Msg2_2Common.h +++ b/tutorials/tutorial18/include/tutorial18/message/Msg2_2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial18/include/tutorial18/message/Msg2_3.h b/tutorials/tutorial18/include/tutorial18/message/Msg2_3.h index c94d6af82..e1c24dbc8 100644 --- a/tutorials/tutorial18/include/tutorial18/message/Msg2_3.h +++ b/tutorials/tutorial18/include/tutorial18/message/Msg2_3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2 (3)" message and its fields. diff --git a/tutorials/tutorial18/include/tutorial18/message/Msg2_3Common.h b/tutorials/tutorial18/include/tutorial18/message/Msg2_3Common.h index a65838070..428b5e79d 100644 --- a/tutorials/tutorial18/include/tutorial18/message/Msg2_3Common.h +++ b/tutorials/tutorial18/include/tutorial18/message/Msg2_3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial18/include/tutorial18/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial18/include/tutorial18/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index f84f173d5..740f20b14 100644 --- a/tutorials/tutorial18/include/tutorial18/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial18/include/tutorial18/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial18/include/tutorial18/options/BareMetalDefaultOptions.h b/tutorials/tutorial18/include/tutorial18/options/BareMetalDefaultOptions.h index 0b13f8177..8a58a15da 100644 --- a/tutorials/tutorial18/include/tutorial18/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial18/include/tutorial18/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial18/include/tutorial18/options/ClientDefaultOptions.h b/tutorials/tutorial18/include/tutorial18/options/ClientDefaultOptions.h index b07a3e9a4..658a4908a 100644 --- a/tutorials/tutorial18/include/tutorial18/options/ClientDefaultOptions.h +++ b/tutorials/tutorial18/include/tutorial18/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial18/include/tutorial18/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial18/include/tutorial18/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 9c39ef766..c10ff25b3 100644 --- a/tutorials/tutorial18/include/tutorial18/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial18/include/tutorial18/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial18/include/tutorial18/options/DataViewDefaultOptions.h b/tutorials/tutorial18/include/tutorial18/options/DataViewDefaultOptions.h index 0aff05b42..339395594 100644 --- a/tutorials/tutorial18/include/tutorial18/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial18/include/tutorial18/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial18/include/tutorial18/options/DefaultOptions.h b/tutorials/tutorial18/include/tutorial18/options/DefaultOptions.h index 69547f264..15d239f2f 100644 --- a/tutorials/tutorial18/include/tutorial18/options/DefaultOptions.h +++ b/tutorials/tutorial18/include/tutorial18/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial18/include/tutorial18/options/ServerDefaultOptions.h b/tutorials/tutorial18/include/tutorial18/options/ServerDefaultOptions.h index 518458b2b..ff2a5cd55 100644 --- a/tutorials/tutorial18/include/tutorial18/options/ServerDefaultOptions.h +++ b/tutorials/tutorial18/include/tutorial18/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial18/include/tutorial18/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial18/include/tutorial18/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 266845940..ae7c68efa 100644 --- a/tutorials/tutorial18/include/tutorial18/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial18/include/tutorial18/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial19/include/tutorial19/Interface.h b/tutorials/tutorial19/include/tutorial19/Interface.h index 70fd41600..23560181b 100644 --- a/tutorials/tutorial19/include/tutorial19/Interface.h +++ b/tutorials/tutorial19/include/tutorial19/Interface.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Interface" interface class. diff --git a/tutorials/tutorial19/include/tutorial19/InterfaceCommon.h b/tutorials/tutorial19/include/tutorial19/InterfaceCommon.h index ad7997650..2e8e48c85 100644 --- a/tutorials/tutorial19/include/tutorial19/InterfaceCommon.h +++ b/tutorials/tutorial19/include/tutorial19/InterfaceCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial19/include/tutorial19/MsgId.h b/tutorials/tutorial19/include/tutorial19/MsgId.h index a3525b8eb..52a00a8c5 100644 --- a/tutorials/tutorial19/include/tutorial19/MsgId.h +++ b/tutorials/tutorial19/include/tutorial19/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial19/include/tutorial19/Version.h b/tutorials/tutorial19/include/tutorial19/Version.h index a25392a8f..f3f147648 100644 --- a/tutorials/tutorial19/include/tutorial19/Version.h +++ b/tutorials/tutorial19/include/tutorial19/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial19 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial19/include/tutorial19/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial19/include/tutorial19/dispatch/DispatchClientInputMessage.h index b96b6bacb..70fb4db74 100644 --- a/tutorials/tutorial19/include/tutorial19/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial19/include/tutorial19/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial19/include/tutorial19/dispatch/DispatchMessage.h b/tutorials/tutorial19/include/tutorial19/dispatch/DispatchMessage.h index 71bf52cb3..0f9421718 100644 --- a/tutorials/tutorial19/include/tutorial19/dispatch/DispatchMessage.h +++ b/tutorials/tutorial19/include/tutorial19/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial19/include/tutorial19/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial19/include/tutorial19/dispatch/DispatchServerInputMessage.h index 09a1d6e7b..57e19c16a 100644 --- a/tutorials/tutorial19/include/tutorial19/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial19/include/tutorial19/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial19/include/tutorial19/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial19/include/tutorial19/factory/AllMessagesDynMemMsgFactory.h index 62d003bbd..aec10662b 100644 --- a/tutorials/tutorial19/include/tutorial19/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial19/include/tutorial19/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial19/include/tutorial19/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial19/include/tutorial19/factory/ClientInputMessagesDynMemMsgFactory.h index b56bd3adc..65af569d1 100644 --- a/tutorials/tutorial19/include/tutorial19/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial19/include/tutorial19/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial19/include/tutorial19/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial19/include/tutorial19/factory/ServerInputMessagesDynMemMsgFactory.h index 1c4a047ff..efe2ad2f2 100644 --- a/tutorials/tutorial19/include/tutorial19/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial19/include/tutorial19/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial19/include/tutorial19/field/FieldBase.h b/tutorials/tutorial19/include/tutorial19/field/FieldBase.h index b6acb221d..ae8c5912d 100644 --- a/tutorials/tutorial19/include/tutorial19/field/FieldBase.h +++ b/tutorials/tutorial19/include/tutorial19/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial19/include/tutorial19/field/MsgId.h b/tutorials/tutorial19/include/tutorial19/field/MsgId.h index 8a4342b9e..0428c79bc 100644 --- a/tutorials/tutorial19/include/tutorial19/field/MsgId.h +++ b/tutorials/tutorial19/include/tutorial19/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial19/include/tutorial19/field/MsgIdCommon.h b/tutorials/tutorial19/include/tutorial19/field/MsgIdCommon.h index e4a557840..3e5110d34 100644 --- a/tutorials/tutorial19/include/tutorial19/field/MsgIdCommon.h +++ b/tutorials/tutorial19/include/tutorial19/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial19/include/tutorial19/frame/Frame.h b/tutorials/tutorial19/include/tutorial19/frame/Frame.h index ce1567903..fb9e2a8ca 100644 --- a/tutorials/tutorial19/include/tutorial19/frame/Frame.h +++ b/tutorials/tutorial19/include/tutorial19/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial19/include/tutorial19/frame/FrameCommon.h b/tutorials/tutorial19/include/tutorial19/frame/FrameCommon.h index eea32f37b..f389823e8 100644 --- a/tutorials/tutorial19/include/tutorial19/frame/FrameCommon.h +++ b/tutorials/tutorial19/include/tutorial19/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial19/include/tutorial19/input/AllMessages.h b/tutorials/tutorial19/include/tutorial19/input/AllMessages.h index 99f6cb8c4..37c5259e0 100644 --- a/tutorials/tutorial19/include/tutorial19/input/AllMessages.h +++ b/tutorials/tutorial19/include/tutorial19/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial19/include/tutorial19/input/ClientInputMessages.h b/tutorials/tutorial19/include/tutorial19/input/ClientInputMessages.h index 137a3644a..008edf3b3 100644 --- a/tutorials/tutorial19/include/tutorial19/input/ClientInputMessages.h +++ b/tutorials/tutorial19/include/tutorial19/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial19/include/tutorial19/input/ServerInputMessages.h b/tutorials/tutorial19/include/tutorial19/input/ServerInputMessages.h index 986c6983e..48de6cc82 100644 --- a/tutorials/tutorial19/include/tutorial19/input/ServerInputMessages.h +++ b/tutorials/tutorial19/include/tutorial19/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial19/include/tutorial19/message/Msg1.h b/tutorials/tutorial19/include/tutorial19/message/Msg1.h index baec06f13..476fdc28a 100644 --- a/tutorials/tutorial19/include/tutorial19/message/Msg1.h +++ b/tutorials/tutorial19/include/tutorial19/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial19/include/tutorial19/message/Msg1Common.h b/tutorials/tutorial19/include/tutorial19/message/Msg1Common.h index e37849b7a..bc8f2d29c 100644 --- a/tutorials/tutorial19/include/tutorial19/message/Msg1Common.h +++ b/tutorials/tutorial19/include/tutorial19/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial19/include/tutorial19/message/Msg2.h b/tutorials/tutorial19/include/tutorial19/message/Msg2.h index 9880e69e3..efc304184 100644 --- a/tutorials/tutorial19/include/tutorial19/message/Msg2.h +++ b/tutorials/tutorial19/include/tutorial19/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial19/include/tutorial19/message/Msg2Common.h b/tutorials/tutorial19/include/tutorial19/message/Msg2Common.h index 3ea2ec224..680f1c6dc 100644 --- a/tutorials/tutorial19/include/tutorial19/message/Msg2Common.h +++ b/tutorials/tutorial19/include/tutorial19/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial19/include/tutorial19/message/Msg3.h b/tutorials/tutorial19/include/tutorial19/message/Msg3.h index 86b3020d0..98d035213 100644 --- a/tutorials/tutorial19/include/tutorial19/message/Msg3.h +++ b/tutorials/tutorial19/include/tutorial19/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/tutorials/tutorial19/include/tutorial19/message/Msg3Common.h b/tutorials/tutorial19/include/tutorial19/message/Msg3Common.h index e06b6c6c7..c57195214 100644 --- a/tutorials/tutorial19/include/tutorial19/message/Msg3Common.h +++ b/tutorials/tutorial19/include/tutorial19/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial19/include/tutorial19/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial19/include/tutorial19/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 06da21df8..691893e3d 100644 --- a/tutorials/tutorial19/include/tutorial19/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial19/include/tutorial19/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial19/include/tutorial19/options/BareMetalDefaultOptions.h b/tutorials/tutorial19/include/tutorial19/options/BareMetalDefaultOptions.h index c5a20fb0a..50929bb30 100644 --- a/tutorials/tutorial19/include/tutorial19/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial19/include/tutorial19/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial19/include/tutorial19/options/ClientDefaultOptions.h b/tutorials/tutorial19/include/tutorial19/options/ClientDefaultOptions.h index 53ba2d280..779d8c780 100644 --- a/tutorials/tutorial19/include/tutorial19/options/ClientDefaultOptions.h +++ b/tutorials/tutorial19/include/tutorial19/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial19/include/tutorial19/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial19/include/tutorial19/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 5fd2bd9c9..88baf9d0c 100644 --- a/tutorials/tutorial19/include/tutorial19/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial19/include/tutorial19/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial19/include/tutorial19/options/DataViewDefaultOptions.h b/tutorials/tutorial19/include/tutorial19/options/DataViewDefaultOptions.h index 8ce869f3c..8fdb4def3 100644 --- a/tutorials/tutorial19/include/tutorial19/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial19/include/tutorial19/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial19/include/tutorial19/options/DefaultOptions.h b/tutorials/tutorial19/include/tutorial19/options/DefaultOptions.h index 1d0904a57..a067d731e 100644 --- a/tutorials/tutorial19/include/tutorial19/options/DefaultOptions.h +++ b/tutorials/tutorial19/include/tutorial19/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial19/include/tutorial19/options/ServerDefaultOptions.h b/tutorials/tutorial19/include/tutorial19/options/ServerDefaultOptions.h index 498323a14..c8d3382df 100644 --- a/tutorials/tutorial19/include/tutorial19/options/ServerDefaultOptions.h +++ b/tutorials/tutorial19/include/tutorial19/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial19/include/tutorial19/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial19/include/tutorial19/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 8dd133c9e..d756616c4 100644 --- a/tutorials/tutorial19/include/tutorial19/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial19/include/tutorial19/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial2/include/tutorial2/Message.h b/tutorials/tutorial2/include/tutorial2/Message.h index c402197fa..795523256 100644 --- a/tutorials/tutorial2/include/tutorial2/Message.h +++ b/tutorials/tutorial2/include/tutorial2/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial2/include/tutorial2/MsgId.h b/tutorials/tutorial2/include/tutorial2/MsgId.h index c41a1c438..faafded07 100644 --- a/tutorials/tutorial2/include/tutorial2/MsgId.h +++ b/tutorials/tutorial2/include/tutorial2/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial2/include/tutorial2/Version.h b/tutorials/tutorial2/include/tutorial2/Version.h index f3e730feb..79b92c3cf 100644 --- a/tutorials/tutorial2/include/tutorial2/Version.h +++ b/tutorials/tutorial2/include/tutorial2/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial2 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial2/include/tutorial2/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial2/include/tutorial2/dispatch/DispatchClientInputMessage.h index 306688420..fc2b01b3b 100644 --- a/tutorials/tutorial2/include/tutorial2/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial2/include/tutorial2/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial2/include/tutorial2/dispatch/DispatchMessage.h b/tutorials/tutorial2/include/tutorial2/dispatch/DispatchMessage.h index 275e7418b..c0f4d320f 100644 --- a/tutorials/tutorial2/include/tutorial2/dispatch/DispatchMessage.h +++ b/tutorials/tutorial2/include/tutorial2/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial2/include/tutorial2/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial2/include/tutorial2/dispatch/DispatchServerInputMessage.h index e245499cf..00e08df96 100644 --- a/tutorials/tutorial2/include/tutorial2/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial2/include/tutorial2/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial2/include/tutorial2/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial2/include/tutorial2/factory/AllMessagesDynMemMsgFactory.h index 30a580dfb..3b564ca73 100644 --- a/tutorials/tutorial2/include/tutorial2/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial2/include/tutorial2/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial2/include/tutorial2/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial2/include/tutorial2/factory/ClientInputMessagesDynMemMsgFactory.h index c32d36ddd..6eb85dc38 100644 --- a/tutorials/tutorial2/include/tutorial2/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial2/include/tutorial2/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial2/include/tutorial2/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial2/include/tutorial2/factory/ServerInputMessagesDynMemMsgFactory.h index 60ebcf9b9..05cd37284 100644 --- a/tutorials/tutorial2/include/tutorial2/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial2/include/tutorial2/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial2/include/tutorial2/field/B8_1.h b/tutorials/tutorial2/include/tutorial2/field/B8_1.h index f2e5400b4..7f05eb347 100644 --- a/tutorials/tutorial2/include/tutorial2/field/B8_1.h +++ b/tutorials/tutorial2/include/tutorial2/field/B8_1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "B8_1" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/B8_1Common.h b/tutorials/tutorial2/include/tutorial2/field/B8_1Common.h index 132574bf8..ea2229b09 100644 --- a/tutorials/tutorial2/include/tutorial2/field/B8_1Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/B8_1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/B8_2.h b/tutorials/tutorial2/include/tutorial2/field/B8_2.h index 280218f9e..462a80ee3 100644 --- a/tutorials/tutorial2/include/tutorial2/field/B8_2.h +++ b/tutorials/tutorial2/include/tutorial2/field/B8_2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "B8_2" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/B8_2Common.h b/tutorials/tutorial2/include/tutorial2/field/B8_2Common.h index 17f69a587..2892213d1 100644 --- a/tutorials/tutorial2/include/tutorial2/field/B8_2Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/B8_2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/B9_1.h b/tutorials/tutorial2/include/tutorial2/field/B9_1.h index f099f1e9d..2d378c97b 100644 --- a/tutorials/tutorial2/include/tutorial2/field/B9_1.h +++ b/tutorials/tutorial2/include/tutorial2/field/B9_1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "B9_1" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/B9_1Common.h b/tutorials/tutorial2/include/tutorial2/field/B9_1Common.h index c92d60fa7..d54b7c526 100644 --- a/tutorials/tutorial2/include/tutorial2/field/B9_1Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/B9_1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/B9_2.h b/tutorials/tutorial2/include/tutorial2/field/B9_2.h index 17bf27336..d269717ee 100644 --- a/tutorials/tutorial2/include/tutorial2/field/B9_2.h +++ b/tutorials/tutorial2/include/tutorial2/field/B9_2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "B9_2" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/B9_2Common.h b/tutorials/tutorial2/include/tutorial2/field/B9_2Common.h index 0381f4acc..a089fb71a 100644 --- a/tutorials/tutorial2/include/tutorial2/field/B9_2Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/B9_2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/D7_1.h b/tutorials/tutorial2/include/tutorial2/field/D7_1.h index 32d96a508..14ed5df71 100644 --- a/tutorials/tutorial2/include/tutorial2/field/D7_1.h +++ b/tutorials/tutorial2/include/tutorial2/field/D7_1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "D7_1" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/D7_1Common.h b/tutorials/tutorial2/include/tutorial2/field/D7_1Common.h index b3c132379..aed8d0d8c 100644 --- a/tutorials/tutorial2/include/tutorial2/field/D7_1Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/D7_1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/D7_2.h b/tutorials/tutorial2/include/tutorial2/field/D7_2.h index 3cce9161d..70f6be9ed 100644 --- a/tutorials/tutorial2/include/tutorial2/field/D7_2.h +++ b/tutorials/tutorial2/include/tutorial2/field/D7_2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "D7_2" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/D7_2Common.h b/tutorials/tutorial2/include/tutorial2/field/D7_2Common.h index 06dacb7ef..dbb222627 100644 --- a/tutorials/tutorial2/include/tutorial2/field/D7_2Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/D7_2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/E2_1.h b/tutorials/tutorial2/include/tutorial2/field/E2_1.h index cbcaf9a99..bea7e82c0 100644 --- a/tutorials/tutorial2/include/tutorial2/field/E2_1.h +++ b/tutorials/tutorial2/include/tutorial2/field/E2_1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "E2_1" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/E2_1Common.h b/tutorials/tutorial2/include/tutorial2/field/E2_1Common.h index 7bf7abef8..6667737e7 100644 --- a/tutorials/tutorial2/include/tutorial2/field/E2_1Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/E2_1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/E2_2.h b/tutorials/tutorial2/include/tutorial2/field/E2_2.h index cc5c1e609..9a0ac4d9e 100644 --- a/tutorials/tutorial2/include/tutorial2/field/E2_2.h +++ b/tutorials/tutorial2/include/tutorial2/field/E2_2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "E2_2" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/E2_2Common.h b/tutorials/tutorial2/include/tutorial2/field/E2_2Common.h index fc2d9ef1d..5dc6ca369 100644 --- a/tutorials/tutorial2/include/tutorial2/field/E2_2Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/E2_2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/F11_1.h b/tutorials/tutorial2/include/tutorial2/field/F11_1.h index b3a18e73c..4c494916c 100644 --- a/tutorials/tutorial2/include/tutorial2/field/F11_1.h +++ b/tutorials/tutorial2/include/tutorial2/field/F11_1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Field 11_1" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/F11_1Common.h b/tutorials/tutorial2/include/tutorial2/field/F11_1Common.h index b328768d4..6f917236a 100644 --- a/tutorials/tutorial2/include/tutorial2/field/F11_1Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/F11_1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/F11_2.h b/tutorials/tutorial2/include/tutorial2/field/F11_2.h index 3e78ec438..5dc17ebd8 100644 --- a/tutorials/tutorial2/include/tutorial2/field/F11_2.h +++ b/tutorials/tutorial2/include/tutorial2/field/F11_2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Field 11_2" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/F11_2Common.h b/tutorials/tutorial2/include/tutorial2/field/F11_2Common.h index 7c1d5e6db..3cd294f94 100644 --- a/tutorials/tutorial2/include/tutorial2/field/F11_2Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/F11_2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/F11_3.h b/tutorials/tutorial2/include/tutorial2/field/F11_3.h index 356948f22..94d395b47 100644 --- a/tutorials/tutorial2/include/tutorial2/field/F11_3.h +++ b/tutorials/tutorial2/include/tutorial2/field/F11_3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "F11_3" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/F11_3Common.h b/tutorials/tutorial2/include/tutorial2/field/F11_3Common.h index 02aa5414a..dab8fd18e 100644 --- a/tutorials/tutorial2/include/tutorial2/field/F11_3Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/F11_3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/F5_1.h b/tutorials/tutorial2/include/tutorial2/field/F5_1.h index 66589cada..6323bca8e 100644 --- a/tutorials/tutorial2/include/tutorial2/field/F5_1.h +++ b/tutorials/tutorial2/include/tutorial2/field/F5_1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "F5_1" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/F5_1Common.h b/tutorials/tutorial2/include/tutorial2/field/F5_1Common.h index f225ef7af..019107b7e 100644 --- a/tutorials/tutorial2/include/tutorial2/field/F5_1Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/F5_1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/F5_2.h b/tutorials/tutorial2/include/tutorial2/field/F5_2.h index 88c2d8487..f008bab9d 100644 --- a/tutorials/tutorial2/include/tutorial2/field/F5_2.h +++ b/tutorials/tutorial2/include/tutorial2/field/F5_2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "F5_2" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/F5_2Common.h b/tutorials/tutorial2/include/tutorial2/field/F5_2Common.h index b5b87e0b5..42397a436 100644 --- a/tutorials/tutorial2/include/tutorial2/field/F5_2Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/F5_2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/FieldBase.h b/tutorials/tutorial2/include/tutorial2/field/FieldBase.h index 5bc18d41a..106071967 100644 --- a/tutorials/tutorial2/include/tutorial2/field/FieldBase.h +++ b/tutorials/tutorial2/include/tutorial2/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial2/include/tutorial2/field/I1.h b/tutorials/tutorial2/include/tutorial2/field/I1.h index d89209327..b6930229e 100644 --- a/tutorials/tutorial2/include/tutorial2/field/I1.h +++ b/tutorials/tutorial2/include/tutorial2/field/I1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "I1" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/I1Common.h b/tutorials/tutorial2/include/tutorial2/field/I1Common.h index b25c174a3..20569983c 100644 --- a/tutorials/tutorial2/include/tutorial2/field/I1Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/I1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/I3_1.h b/tutorials/tutorial2/include/tutorial2/field/I3_1.h index 58657c99e..680eaa505 100644 --- a/tutorials/tutorial2/include/tutorial2/field/I3_1.h +++ b/tutorials/tutorial2/include/tutorial2/field/I3_1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "I3_1" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/I3_1Common.h b/tutorials/tutorial2/include/tutorial2/field/I3_1Common.h index ed7f0617e..0353daa3e 100644 --- a/tutorials/tutorial2/include/tutorial2/field/I3_1Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/I3_1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/I3_2.h b/tutorials/tutorial2/include/tutorial2/field/I3_2.h index f62250c4e..4e4836f64 100644 --- a/tutorials/tutorial2/include/tutorial2/field/I3_2.h +++ b/tutorials/tutorial2/include/tutorial2/field/I3_2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "I3_2" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/I3_2Common.h b/tutorials/tutorial2/include/tutorial2/field/I3_2Common.h index 53289db79..f7213054e 100644 --- a/tutorials/tutorial2/include/tutorial2/field/I3_2Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/I3_2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/I3_3.h b/tutorials/tutorial2/include/tutorial2/field/I3_3.h index 6734b6682..8ad3bc065 100644 --- a/tutorials/tutorial2/include/tutorial2/field/I3_3.h +++ b/tutorials/tutorial2/include/tutorial2/field/I3_3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "I3_3" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/I3_3Common.h b/tutorials/tutorial2/include/tutorial2/field/I3_3Common.h index acb9c6f7a..442635313 100644 --- a/tutorials/tutorial2/include/tutorial2/field/I3_3Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/I3_3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/I3_4.h b/tutorials/tutorial2/include/tutorial2/field/I3_4.h index 62a2ed6db..dabd6460f 100644 --- a/tutorials/tutorial2/include/tutorial2/field/I3_4.h +++ b/tutorials/tutorial2/include/tutorial2/field/I3_4.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "I3_4" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/I3_4Common.h b/tutorials/tutorial2/include/tutorial2/field/I3_4Common.h index cd1385a8e..032c24e3f 100644 --- a/tutorials/tutorial2/include/tutorial2/field/I3_4Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/I3_4Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/I3_5.h b/tutorials/tutorial2/include/tutorial2/field/I3_5.h index b99491d31..4beaebc03 100644 --- a/tutorials/tutorial2/include/tutorial2/field/I3_5.h +++ b/tutorials/tutorial2/include/tutorial2/field/I3_5.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "I3_5" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/I3_5Common.h b/tutorials/tutorial2/include/tutorial2/field/I3_5Common.h index 0e47eaed3..68e3a6b7f 100644 --- a/tutorials/tutorial2/include/tutorial2/field/I3_5Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/I3_5Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/L10_1.h b/tutorials/tutorial2/include/tutorial2/field/L10_1.h index 2974b83cf..9abeebd68 100644 --- a/tutorials/tutorial2/include/tutorial2/field/L10_1.h +++ b/tutorials/tutorial2/include/tutorial2/field/L10_1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "L10_1" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/L10_1Common.h b/tutorials/tutorial2/include/tutorial2/field/L10_1Common.h index 2d4e10a59..38429795d 100644 --- a/tutorials/tutorial2/include/tutorial2/field/L10_1Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/L10_1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/L10_2.h b/tutorials/tutorial2/include/tutorial2/field/L10_2.h index c5f230e9f..a058f9703 100644 --- a/tutorials/tutorial2/include/tutorial2/field/L10_2.h +++ b/tutorials/tutorial2/include/tutorial2/field/L10_2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "L10_2" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/L10_2Common.h b/tutorials/tutorial2/include/tutorial2/field/L10_2Common.h index 50dacd4f6..82fcc811a 100644 --- a/tutorials/tutorial2/include/tutorial2/field/L10_2Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/L10_2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/L10_3.h b/tutorials/tutorial2/include/tutorial2/field/L10_3.h index 28e69ec20..1c5b595d2 100644 --- a/tutorials/tutorial2/include/tutorial2/field/L10_3.h +++ b/tutorials/tutorial2/include/tutorial2/field/L10_3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "L10_3" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/L10_3Common.h b/tutorials/tutorial2/include/tutorial2/field/L10_3Common.h index 474631d58..cc3dfd146 100644 --- a/tutorials/tutorial2/include/tutorial2/field/L10_3Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/L10_3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/L10_4.h b/tutorials/tutorial2/include/tutorial2/field/L10_4.h index d24371b5a..edcb02d2e 100644 --- a/tutorials/tutorial2/include/tutorial2/field/L10_4.h +++ b/tutorials/tutorial2/include/tutorial2/field/L10_4.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "L10_4" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/L10_4Common.h b/tutorials/tutorial2/include/tutorial2/field/L10_4Common.h index d23abbf1b..b5f41bd0b 100644 --- a/tutorials/tutorial2/include/tutorial2/field/L10_4Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/L10_4Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/L6_3.h b/tutorials/tutorial2/include/tutorial2/field/L6_3.h index 1a52dc1b9..c8d1f6a87 100644 --- a/tutorials/tutorial2/include/tutorial2/field/L6_3.h +++ b/tutorials/tutorial2/include/tutorial2/field/L6_3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "L6_3" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/L6_3Common.h b/tutorials/tutorial2/include/tutorial2/field/L6_3Common.h index e7fdf2bfe..c92dbef8c 100644 --- a/tutorials/tutorial2/include/tutorial2/field/L6_3Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/L6_3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/MsgId.h b/tutorials/tutorial2/include/tutorial2/field/MsgId.h index 36ef9b8be..9084516ac 100644 --- a/tutorials/tutorial2/include/tutorial2/field/MsgId.h +++ b/tutorials/tutorial2/include/tutorial2/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/MsgIdCommon.h b/tutorials/tutorial2/include/tutorial2/field/MsgIdCommon.h index 383e545ef..3103a3ad0 100644 --- a/tutorials/tutorial2/include/tutorial2/field/MsgIdCommon.h +++ b/tutorials/tutorial2/include/tutorial2/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/S4_1.h b/tutorials/tutorial2/include/tutorial2/field/S4_1.h index 48ed7a9c4..5b45cc309 100644 --- a/tutorials/tutorial2/include/tutorial2/field/S4_1.h +++ b/tutorials/tutorial2/include/tutorial2/field/S4_1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "S4_1" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/S4_1Common.h b/tutorials/tutorial2/include/tutorial2/field/S4_1Common.h index eed5e67b2..7df941e16 100644 --- a/tutorials/tutorial2/include/tutorial2/field/S4_1Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/S4_1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/S4_2.h b/tutorials/tutorial2/include/tutorial2/field/S4_2.h index e59c6d366..060a6e355 100644 --- a/tutorials/tutorial2/include/tutorial2/field/S4_2.h +++ b/tutorials/tutorial2/include/tutorial2/field/S4_2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "S4_2" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/S4_2Common.h b/tutorials/tutorial2/include/tutorial2/field/S4_2Common.h index 6c77ffac4..e2b8a5a93 100644 --- a/tutorials/tutorial2/include/tutorial2/field/S4_2Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/S4_2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/S4_3.h b/tutorials/tutorial2/include/tutorial2/field/S4_3.h index 8d63841ec..92f1c3c4a 100644 --- a/tutorials/tutorial2/include/tutorial2/field/S4_3.h +++ b/tutorials/tutorial2/include/tutorial2/field/S4_3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "S4_3" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/S4_3Common.h b/tutorials/tutorial2/include/tutorial2/field/S4_3Common.h index c999da606..dd413cebf 100644 --- a/tutorials/tutorial2/include/tutorial2/field/S4_3Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/S4_3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/S6_1.h b/tutorials/tutorial2/include/tutorial2/field/S6_1.h index b2b1dfb52..44fee985d 100644 --- a/tutorials/tutorial2/include/tutorial2/field/S6_1.h +++ b/tutorials/tutorial2/include/tutorial2/field/S6_1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "S6_1" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/S6_1Common.h b/tutorials/tutorial2/include/tutorial2/field/S6_1Common.h index ff879bdef..7bfbcd36d 100644 --- a/tutorials/tutorial2/include/tutorial2/field/S6_1Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/S6_1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/S6_2.h b/tutorials/tutorial2/include/tutorial2/field/S6_2.h index 4153cf857..707f56ecf 100644 --- a/tutorials/tutorial2/include/tutorial2/field/S6_2.h +++ b/tutorials/tutorial2/include/tutorial2/field/S6_2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "S6_2" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/S6_2Common.h b/tutorials/tutorial2/include/tutorial2/field/S6_2Common.h index 53a3a2b63..7293ac52b 100644 --- a/tutorials/tutorial2/include/tutorial2/field/S6_2Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/S6_2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/S6_3.h b/tutorials/tutorial2/include/tutorial2/field/S6_3.h index f677c2714..956702be0 100644 --- a/tutorials/tutorial2/include/tutorial2/field/S6_3.h +++ b/tutorials/tutorial2/include/tutorial2/field/S6_3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "S6_3" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/S6_3Common.h b/tutorials/tutorial2/include/tutorial2/field/S6_3Common.h index a1c9bb483..cdbf17961 100644 --- a/tutorials/tutorial2/include/tutorial2/field/S6_3Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/S6_3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/field/S6_4.h b/tutorials/tutorial2/include/tutorial2/field/S6_4.h index 4cc71d87c..5ca791877 100644 --- a/tutorials/tutorial2/include/tutorial2/field/S6_4.h +++ b/tutorials/tutorial2/include/tutorial2/field/S6_4.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "S6_4" field. diff --git a/tutorials/tutorial2/include/tutorial2/field/S6_4Common.h b/tutorials/tutorial2/include/tutorial2/field/S6_4Common.h index 3c53ef357..850f39443 100644 --- a/tutorials/tutorial2/include/tutorial2/field/S6_4Common.h +++ b/tutorials/tutorial2/include/tutorial2/field/S6_4Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/frame/Frame.h b/tutorials/tutorial2/include/tutorial2/frame/Frame.h index 0f2f1c6e0..957a2bc47 100644 --- a/tutorials/tutorial2/include/tutorial2/frame/Frame.h +++ b/tutorials/tutorial2/include/tutorial2/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial2/include/tutorial2/frame/FrameCommon.h b/tutorials/tutorial2/include/tutorial2/frame/FrameCommon.h index b10d8a1ab..ed9da6bd5 100644 --- a/tutorials/tutorial2/include/tutorial2/frame/FrameCommon.h +++ b/tutorials/tutorial2/include/tutorial2/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/input/AllMessages.h b/tutorials/tutorial2/include/tutorial2/input/AllMessages.h index a7e8810cf..7b603c283 100644 --- a/tutorials/tutorial2/include/tutorial2/input/AllMessages.h +++ b/tutorials/tutorial2/include/tutorial2/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial2/include/tutorial2/input/ClientInputMessages.h b/tutorials/tutorial2/include/tutorial2/input/ClientInputMessages.h index 913736411..e6845b8d8 100644 --- a/tutorials/tutorial2/include/tutorial2/input/ClientInputMessages.h +++ b/tutorials/tutorial2/include/tutorial2/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial2/include/tutorial2/input/ServerInputMessages.h b/tutorials/tutorial2/include/tutorial2/input/ServerInputMessages.h index 434b82dde..b06c151eb 100644 --- a/tutorials/tutorial2/include/tutorial2/input/ServerInputMessages.h +++ b/tutorials/tutorial2/include/tutorial2/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg1.h b/tutorials/tutorial2/include/tutorial2/message/Msg1.h index 18b06bc95..8070ebc96 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg1.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg10.h b/tutorials/tutorial2/include/tutorial2/message/Msg10.h index 34be5bcfa..6afd9a3a0 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg10.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg10.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 10" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg10Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg10Common.h index 4bbd7c149..cdbe6c547 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg10Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg10Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg11.h b/tutorials/tutorial2/include/tutorial2/message/Msg11.h index 86b3beb98..f231ab162 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg11.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg11.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 11" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg11Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg11Common.h index 75f54da3a..013af8f74 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg11Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg11Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg12.h b/tutorials/tutorial2/include/tutorial2/message/Msg12.h index aab61e02b..4ff4ff16e 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg12.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg12.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 12" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg12Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg12Common.h index 7c012b241..c2be9263b 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg12Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg12Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg13.h b/tutorials/tutorial2/include/tutorial2/message/Msg13.h index 109172a42..034e848e2 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg13.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg13.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 13" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg13Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg13Common.h index 0194f08e4..3c629094e 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg13Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg13Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg14.h b/tutorials/tutorial2/include/tutorial2/message/Msg14.h index e3aabf409..5ab3602d4 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg14.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg14.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 14" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg14Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg14Common.h index c1c33538b..30fcc68f6 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg14Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg14Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg15.h b/tutorials/tutorial2/include/tutorial2/message/Msg15.h index b9416d932..e0a43d5e2 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg15.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg15.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 15" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg15Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg15Common.h index 8a2780c3c..afec26a34 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg15Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg15Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg16.h b/tutorials/tutorial2/include/tutorial2/message/Msg16.h index 45587e01d..7c27867bd 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg16.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg16.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 16" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg16Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg16Common.h index 9b64d8d94..57befa402 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg16Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg16Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg17.h b/tutorials/tutorial2/include/tutorial2/message/Msg17.h index b9e847ca7..387361050 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg17.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg17.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 17" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg17Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg17Common.h index 77ef1530c..99392c9de 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg17Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg17Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg18.h b/tutorials/tutorial2/include/tutorial2/message/Msg18.h index b78a86c2b..b678ec251 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg18.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg18.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 18" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg18Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg18Common.h index d95691510..02f6a5869 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg18Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg18Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg1Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg1Common.h index ea4e14330..2bd70170d 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg1Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg2.h b/tutorials/tutorial2/include/tutorial2/message/Msg2.h index 3892812d7..c41b62567 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg2.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg2Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg2Common.h index 8f9a7f1e1..a03c33bd1 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg2Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg3.h b/tutorials/tutorial2/include/tutorial2/message/Msg3.h index 18a846558..7f8d4354c 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg3.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg3Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg3Common.h index 974e81fac..449653bae 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg3Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg4.h b/tutorials/tutorial2/include/tutorial2/message/Msg4.h index cd622834f..077ecda22 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg4.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg4.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 4" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg4Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg4Common.h index 30a7977eb..74fbef0bd 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg4Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg4Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg5.h b/tutorials/tutorial2/include/tutorial2/message/Msg5.h index ab7d3923d..d667a212b 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg5.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg5.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 5" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg5Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg5Common.h index b8e38e724..7a3a2bb60 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg5Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg5Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg6.h b/tutorials/tutorial2/include/tutorial2/message/Msg6.h index 61a368e22..66ecddb47 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg6.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg6.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 6" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg6Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg6Common.h index 891b4dd98..fc0dc12e0 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg6Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg6Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg7.h b/tutorials/tutorial2/include/tutorial2/message/Msg7.h index dd9aac7ac..7ee447950 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg7.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg7.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 7" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg7Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg7Common.h index 7a5bf3215..a9a69674a 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg7Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg7Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg8.h b/tutorials/tutorial2/include/tutorial2/message/Msg8.h index 11135fd70..53146532f 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg8.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg8.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 8" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg8Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg8Common.h index f31d17dde..32405b9d9 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg8Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg8Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg9.h b/tutorials/tutorial2/include/tutorial2/message/Msg9.h index 52543ac76..912eb2849 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg9.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg9.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 9" message and its fields. diff --git a/tutorials/tutorial2/include/tutorial2/message/Msg9Common.h b/tutorials/tutorial2/include/tutorial2/message/Msg9Common.h index 4e328feca..6e0635149 100644 --- a/tutorials/tutorial2/include/tutorial2/message/Msg9Common.h +++ b/tutorials/tutorial2/include/tutorial2/message/Msg9Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial2/include/tutorial2/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial2/include/tutorial2/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index e9673d72c..7176056f4 100644 --- a/tutorials/tutorial2/include/tutorial2/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial2/include/tutorial2/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial2/include/tutorial2/options/BareMetalDefaultOptions.h b/tutorials/tutorial2/include/tutorial2/options/BareMetalDefaultOptions.h index cb2985969..daec6ff37 100644 --- a/tutorials/tutorial2/include/tutorial2/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial2/include/tutorial2/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial2/include/tutorial2/options/ClientDefaultOptions.h b/tutorials/tutorial2/include/tutorial2/options/ClientDefaultOptions.h index 8486aadef..529e13b11 100644 --- a/tutorials/tutorial2/include/tutorial2/options/ClientDefaultOptions.h +++ b/tutorials/tutorial2/include/tutorial2/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial2/include/tutorial2/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial2/include/tutorial2/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index a9060e9be..94f5ca4f8 100644 --- a/tutorials/tutorial2/include/tutorial2/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial2/include/tutorial2/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial2/include/tutorial2/options/DataViewDefaultOptions.h b/tutorials/tutorial2/include/tutorial2/options/DataViewDefaultOptions.h index c37fb8047..e4cc65b40 100644 --- a/tutorials/tutorial2/include/tutorial2/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial2/include/tutorial2/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial2/include/tutorial2/options/DefaultOptions.h b/tutorials/tutorial2/include/tutorial2/options/DefaultOptions.h index 45d1a18f4..66e43309c 100644 --- a/tutorials/tutorial2/include/tutorial2/options/DefaultOptions.h +++ b/tutorials/tutorial2/include/tutorial2/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial2/include/tutorial2/options/ServerDefaultOptions.h b/tutorials/tutorial2/include/tutorial2/options/ServerDefaultOptions.h index d10c332cc..df1d2d3ed 100644 --- a/tutorials/tutorial2/include/tutorial2/options/ServerDefaultOptions.h +++ b/tutorials/tutorial2/include/tutorial2/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial2/include/tutorial2/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial2/include/tutorial2/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index ee850220f..56accb639 100644 --- a/tutorials/tutorial2/include/tutorial2/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial2/include/tutorial2/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial20/include/tutorial20/Interface.h b/tutorials/tutorial20/include/tutorial20/Interface.h index 8a7085c7f..da95c8f30 100644 --- a/tutorials/tutorial20/include/tutorial20/Interface.h +++ b/tutorials/tutorial20/include/tutorial20/Interface.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Interface" interface class. diff --git a/tutorials/tutorial20/include/tutorial20/InterfaceCommon.h b/tutorials/tutorial20/include/tutorial20/InterfaceCommon.h index d91c1c428..b67c2202a 100644 --- a/tutorials/tutorial20/include/tutorial20/InterfaceCommon.h +++ b/tutorials/tutorial20/include/tutorial20/InterfaceCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial20/include/tutorial20/MsgId.h b/tutorials/tutorial20/include/tutorial20/MsgId.h index f1f93902a..a944edc11 100644 --- a/tutorials/tutorial20/include/tutorial20/MsgId.h +++ b/tutorials/tutorial20/include/tutorial20/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial20/include/tutorial20/Version.h b/tutorials/tutorial20/include/tutorial20/Version.h index 50dbd6b10..6e0c49576 100644 --- a/tutorials/tutorial20/include/tutorial20/Version.h +++ b/tutorials/tutorial20/include/tutorial20/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial20 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial20/include/tutorial20/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial20/include/tutorial20/dispatch/DispatchClientInputMessage.h index 8f8a0deb8..0fda38392 100644 --- a/tutorials/tutorial20/include/tutorial20/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial20/include/tutorial20/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial20/include/tutorial20/dispatch/DispatchMessage.h b/tutorials/tutorial20/include/tutorial20/dispatch/DispatchMessage.h index dd07838d5..d0eb1a317 100644 --- a/tutorials/tutorial20/include/tutorial20/dispatch/DispatchMessage.h +++ b/tutorials/tutorial20/include/tutorial20/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial20/include/tutorial20/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial20/include/tutorial20/dispatch/DispatchServerInputMessage.h index 55e8782ab..e0cc5ecc3 100644 --- a/tutorials/tutorial20/include/tutorial20/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial20/include/tutorial20/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial20/include/tutorial20/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial20/include/tutorial20/factory/AllMessagesDynMemMsgFactory.h index 5d5577ef3..c3e6266f1 100644 --- a/tutorials/tutorial20/include/tutorial20/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial20/include/tutorial20/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial20/include/tutorial20/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial20/include/tutorial20/factory/ClientInputMessagesDynMemMsgFactory.h index cb1a85d69..00404af5e 100644 --- a/tutorials/tutorial20/include/tutorial20/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial20/include/tutorial20/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial20/include/tutorial20/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial20/include/tutorial20/factory/ServerInputMessagesDynMemMsgFactory.h index 8ab79ba6f..e5a74c4ab 100644 --- a/tutorials/tutorial20/include/tutorial20/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial20/include/tutorial20/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial20/include/tutorial20/field/FieldBase.h b/tutorials/tutorial20/include/tutorial20/field/FieldBase.h index 7fe8fcf44..6256e2411 100644 --- a/tutorials/tutorial20/include/tutorial20/field/FieldBase.h +++ b/tutorials/tutorial20/include/tutorial20/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial20/include/tutorial20/field/MsgId.h b/tutorials/tutorial20/include/tutorial20/field/MsgId.h index 618566b0d..d17bf5b63 100644 --- a/tutorials/tutorial20/include/tutorial20/field/MsgId.h +++ b/tutorials/tutorial20/include/tutorial20/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial20/include/tutorial20/field/MsgIdCommon.h b/tutorials/tutorial20/include/tutorial20/field/MsgIdCommon.h index 9a5573d41..23aa02f15 100644 --- a/tutorials/tutorial20/include/tutorial20/field/MsgIdCommon.h +++ b/tutorials/tutorial20/include/tutorial20/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial20/include/tutorial20/field/Version.h b/tutorials/tutorial20/include/tutorial20/field/Version.h index a9039a7e2..f8f254a57 100644 --- a/tutorials/tutorial20/include/tutorial20/field/Version.h +++ b/tutorials/tutorial20/include/tutorial20/field/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Version" field. diff --git a/tutorials/tutorial20/include/tutorial20/field/VersionCommon.h b/tutorials/tutorial20/include/tutorial20/field/VersionCommon.h index b7158f5cf..b0bc09985 100644 --- a/tutorials/tutorial20/include/tutorial20/field/VersionCommon.h +++ b/tutorials/tutorial20/include/tutorial20/field/VersionCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial20/include/tutorial20/frame/Frame.h b/tutorials/tutorial20/include/tutorial20/frame/Frame.h index 28255459d..756789b08 100644 --- a/tutorials/tutorial20/include/tutorial20/frame/Frame.h +++ b/tutorials/tutorial20/include/tutorial20/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial20/include/tutorial20/frame/FrameCommon.h b/tutorials/tutorial20/include/tutorial20/frame/FrameCommon.h index 8b53509e3..aeb25b71e 100644 --- a/tutorials/tutorial20/include/tutorial20/frame/FrameCommon.h +++ b/tutorials/tutorial20/include/tutorial20/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial20/include/tutorial20/input/AllMessages.h b/tutorials/tutorial20/include/tutorial20/input/AllMessages.h index 578dee5d5..69c83b45b 100644 --- a/tutorials/tutorial20/include/tutorial20/input/AllMessages.h +++ b/tutorials/tutorial20/include/tutorial20/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial20/include/tutorial20/input/ClientInputMessages.h b/tutorials/tutorial20/include/tutorial20/input/ClientInputMessages.h index 375a259fb..1700e5a18 100644 --- a/tutorials/tutorial20/include/tutorial20/input/ClientInputMessages.h +++ b/tutorials/tutorial20/include/tutorial20/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial20/include/tutorial20/input/ServerInputMessages.h b/tutorials/tutorial20/include/tutorial20/input/ServerInputMessages.h index c3da45e0f..be1e9e9a6 100644 --- a/tutorials/tutorial20/include/tutorial20/input/ServerInputMessages.h +++ b/tutorials/tutorial20/include/tutorial20/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial20/include/tutorial20/message/Connect.h b/tutorials/tutorial20/include/tutorial20/message/Connect.h index 432f2c3d0..7ed68dba9 100644 --- a/tutorials/tutorial20/include/tutorial20/message/Connect.h +++ b/tutorials/tutorial20/include/tutorial20/message/Connect.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Connect" message and its fields. diff --git a/tutorials/tutorial20/include/tutorial20/message/ConnectCommon.h b/tutorials/tutorial20/include/tutorial20/message/ConnectCommon.h index a8aaa157a..7115cb2b0 100644 --- a/tutorials/tutorial20/include/tutorial20/message/ConnectCommon.h +++ b/tutorials/tutorial20/include/tutorial20/message/ConnectCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial20/include/tutorial20/message/Msg1.h b/tutorials/tutorial20/include/tutorial20/message/Msg1.h index 77f75b761..ffe282d97 100644 --- a/tutorials/tutorial20/include/tutorial20/message/Msg1.h +++ b/tutorials/tutorial20/include/tutorial20/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial20/include/tutorial20/message/Msg1Common.h b/tutorials/tutorial20/include/tutorial20/message/Msg1Common.h index ef190c684..6910d97ea 100644 --- a/tutorials/tutorial20/include/tutorial20/message/Msg1Common.h +++ b/tutorials/tutorial20/include/tutorial20/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial20/include/tutorial20/message/Msg2.h b/tutorials/tutorial20/include/tutorial20/message/Msg2.h index aad45dc78..002b91aa9 100644 --- a/tutorials/tutorial20/include/tutorial20/message/Msg2.h +++ b/tutorials/tutorial20/include/tutorial20/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial20/include/tutorial20/message/Msg2Common.h b/tutorials/tutorial20/include/tutorial20/message/Msg2Common.h index a06360c92..839b56d36 100644 --- a/tutorials/tutorial20/include/tutorial20/message/Msg2Common.h +++ b/tutorials/tutorial20/include/tutorial20/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial20/include/tutorial20/message/Msg3.h b/tutorials/tutorial20/include/tutorial20/message/Msg3.h index ed3cbc3b0..376b252f2 100644 --- a/tutorials/tutorial20/include/tutorial20/message/Msg3.h +++ b/tutorials/tutorial20/include/tutorial20/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/tutorials/tutorial20/include/tutorial20/message/Msg3Common.h b/tutorials/tutorial20/include/tutorial20/message/Msg3Common.h index 31e11b161..d465e6447 100644 --- a/tutorials/tutorial20/include/tutorial20/message/Msg3Common.h +++ b/tutorials/tutorial20/include/tutorial20/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial20/include/tutorial20/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial20/include/tutorial20/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 70da43ac6..b59f4ecd2 100644 --- a/tutorials/tutorial20/include/tutorial20/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial20/include/tutorial20/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial20/include/tutorial20/options/BareMetalDefaultOptions.h b/tutorials/tutorial20/include/tutorial20/options/BareMetalDefaultOptions.h index a5478741f..5fe8b568d 100644 --- a/tutorials/tutorial20/include/tutorial20/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial20/include/tutorial20/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial20/include/tutorial20/options/ClientDefaultOptions.h b/tutorials/tutorial20/include/tutorial20/options/ClientDefaultOptions.h index b4053aed4..72edf20bb 100644 --- a/tutorials/tutorial20/include/tutorial20/options/ClientDefaultOptions.h +++ b/tutorials/tutorial20/include/tutorial20/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial20/include/tutorial20/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial20/include/tutorial20/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 30092225a..4241a4319 100644 --- a/tutorials/tutorial20/include/tutorial20/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial20/include/tutorial20/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial20/include/tutorial20/options/DataViewDefaultOptions.h b/tutorials/tutorial20/include/tutorial20/options/DataViewDefaultOptions.h index bdad8a679..bfe2d4a03 100644 --- a/tutorials/tutorial20/include/tutorial20/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial20/include/tutorial20/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial20/include/tutorial20/options/DefaultOptions.h b/tutorials/tutorial20/include/tutorial20/options/DefaultOptions.h index 6c703bb8d..f9c4d9ad1 100644 --- a/tutorials/tutorial20/include/tutorial20/options/DefaultOptions.h +++ b/tutorials/tutorial20/include/tutorial20/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial20/include/tutorial20/options/ServerDefaultOptions.h b/tutorials/tutorial20/include/tutorial20/options/ServerDefaultOptions.h index 7f0a4ce65..523a2999c 100644 --- a/tutorials/tutorial20/include/tutorial20/options/ServerDefaultOptions.h +++ b/tutorials/tutorial20/include/tutorial20/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial20/include/tutorial20/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial20/include/tutorial20/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index b93d30d4d..7bacde295 100644 --- a/tutorials/tutorial20/include/tutorial20/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial20/include/tutorial20/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial21/include/tutorial21/Interface.h b/tutorials/tutorial21/include/tutorial21/Interface.h index 127a8caa4..10b303978 100644 --- a/tutorials/tutorial21/include/tutorial21/Interface.h +++ b/tutorials/tutorial21/include/tutorial21/Interface.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Interface" interface class. diff --git a/tutorials/tutorial21/include/tutorial21/InterfaceCommon.h b/tutorials/tutorial21/include/tutorial21/InterfaceCommon.h index e5fb48d36..5b2585fb4 100644 --- a/tutorials/tutorial21/include/tutorial21/InterfaceCommon.h +++ b/tutorials/tutorial21/include/tutorial21/InterfaceCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial21/include/tutorial21/MsgId.h b/tutorials/tutorial21/include/tutorial21/MsgId.h index d88871f1c..ca1f1250c 100644 --- a/tutorials/tutorial21/include/tutorial21/MsgId.h +++ b/tutorials/tutorial21/include/tutorial21/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial21/include/tutorial21/Version.h b/tutorials/tutorial21/include/tutorial21/Version.h index 5f1ac64e7..79dda9e5f 100644 --- a/tutorials/tutorial21/include/tutorial21/Version.h +++ b/tutorials/tutorial21/include/tutorial21/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial21 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial21/include/tutorial21/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial21/include/tutorial21/dispatch/DispatchClientInputMessage.h index 4d2153c40..76fe35d93 100644 --- a/tutorials/tutorial21/include/tutorial21/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial21/include/tutorial21/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial21/include/tutorial21/dispatch/DispatchMessage.h b/tutorials/tutorial21/include/tutorial21/dispatch/DispatchMessage.h index 87204daae..f91997c39 100644 --- a/tutorials/tutorial21/include/tutorial21/dispatch/DispatchMessage.h +++ b/tutorials/tutorial21/include/tutorial21/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial21/include/tutorial21/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial21/include/tutorial21/dispatch/DispatchServerInputMessage.h index 508c43a6d..cfd93987e 100644 --- a/tutorials/tutorial21/include/tutorial21/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial21/include/tutorial21/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial21/include/tutorial21/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial21/include/tutorial21/factory/AllMessagesDynMemMsgFactory.h index 1b0a62b44..ca79c27d3 100644 --- a/tutorials/tutorial21/include/tutorial21/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial21/include/tutorial21/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial21/include/tutorial21/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial21/include/tutorial21/factory/ClientInputMessagesDynMemMsgFactory.h index e39381a62..9cb1c7606 100644 --- a/tutorials/tutorial21/include/tutorial21/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial21/include/tutorial21/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial21/include/tutorial21/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial21/include/tutorial21/factory/ServerInputMessagesDynMemMsgFactory.h index b2e8ca0b1..7c907917c 100644 --- a/tutorials/tutorial21/include/tutorial21/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial21/include/tutorial21/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial21/include/tutorial21/field/BasicFlags.h b/tutorials/tutorial21/include/tutorial21/field/BasicFlags.h index 7c9863612..7e8cd6f39 100644 --- a/tutorials/tutorial21/include/tutorial21/field/BasicFlags.h +++ b/tutorials/tutorial21/include/tutorial21/field/BasicFlags.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Flags" field. diff --git a/tutorials/tutorial21/include/tutorial21/field/BasicFlagsCommon.h b/tutorials/tutorial21/include/tutorial21/field/BasicFlagsCommon.h index d8c6cc8e4..14ddc0393 100644 --- a/tutorials/tutorial21/include/tutorial21/field/BasicFlagsCommon.h +++ b/tutorials/tutorial21/include/tutorial21/field/BasicFlagsCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial21/include/tutorial21/field/FieldBase.h b/tutorials/tutorial21/include/tutorial21/field/FieldBase.h index fac828424..a0bc28392 100644 --- a/tutorials/tutorial21/include/tutorial21/field/FieldBase.h +++ b/tutorials/tutorial21/include/tutorial21/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial21/include/tutorial21/field/Msg1Flags.h b/tutorials/tutorial21/include/tutorial21/field/Msg1Flags.h index ee7b8acbd..f41a39c85 100644 --- a/tutorials/tutorial21/include/tutorial21/field/Msg1Flags.h +++ b/tutorials/tutorial21/include/tutorial21/field/Msg1Flags.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Msg1Flags" field. diff --git a/tutorials/tutorial21/include/tutorial21/field/Msg1FlagsCommon.h b/tutorials/tutorial21/include/tutorial21/field/Msg1FlagsCommon.h index 162284196..02343fdd6 100644 --- a/tutorials/tutorial21/include/tutorial21/field/Msg1FlagsCommon.h +++ b/tutorials/tutorial21/include/tutorial21/field/Msg1FlagsCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial21/include/tutorial21/field/Msg2Flags.h b/tutorials/tutorial21/include/tutorial21/field/Msg2Flags.h index 9f9e74b35..247a36fa1 100644 --- a/tutorials/tutorial21/include/tutorial21/field/Msg2Flags.h +++ b/tutorials/tutorial21/include/tutorial21/field/Msg2Flags.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Msg2Flags" field. diff --git a/tutorials/tutorial21/include/tutorial21/field/Msg2FlagsCommon.h b/tutorials/tutorial21/include/tutorial21/field/Msg2FlagsCommon.h index 563458955..df2078f0f 100644 --- a/tutorials/tutorial21/include/tutorial21/field/Msg2FlagsCommon.h +++ b/tutorials/tutorial21/include/tutorial21/field/Msg2FlagsCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial21/include/tutorial21/field/MsgId.h b/tutorials/tutorial21/include/tutorial21/field/MsgId.h index 31c639941..daf01d0e0 100644 --- a/tutorials/tutorial21/include/tutorial21/field/MsgId.h +++ b/tutorials/tutorial21/include/tutorial21/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial21/include/tutorial21/field/MsgIdCommon.h b/tutorials/tutorial21/include/tutorial21/field/MsgIdCommon.h index fb9470cc6..1f7fb072e 100644 --- a/tutorials/tutorial21/include/tutorial21/field/MsgIdCommon.h +++ b/tutorials/tutorial21/include/tutorial21/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial21/include/tutorial21/frame/Frame.h b/tutorials/tutorial21/include/tutorial21/frame/Frame.h index eab7478fd..e85e57ad0 100644 --- a/tutorials/tutorial21/include/tutorial21/frame/Frame.h +++ b/tutorials/tutorial21/include/tutorial21/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial21/include/tutorial21/frame/FrameCommon.h b/tutorials/tutorial21/include/tutorial21/frame/FrameCommon.h index 85452b7ac..c878eab20 100644 --- a/tutorials/tutorial21/include/tutorial21/frame/FrameCommon.h +++ b/tutorials/tutorial21/include/tutorial21/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial21/include/tutorial21/input/AllMessages.h b/tutorials/tutorial21/include/tutorial21/input/AllMessages.h index f3b15580a..9a3dbb69c 100644 --- a/tutorials/tutorial21/include/tutorial21/input/AllMessages.h +++ b/tutorials/tutorial21/include/tutorial21/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial21/include/tutorial21/input/ClientInputMessages.h b/tutorials/tutorial21/include/tutorial21/input/ClientInputMessages.h index 2805fe3ef..ffc08cf4e 100644 --- a/tutorials/tutorial21/include/tutorial21/input/ClientInputMessages.h +++ b/tutorials/tutorial21/include/tutorial21/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial21/include/tutorial21/input/ServerInputMessages.h b/tutorials/tutorial21/include/tutorial21/input/ServerInputMessages.h index 22f591926..75ac54850 100644 --- a/tutorials/tutorial21/include/tutorial21/input/ServerInputMessages.h +++ b/tutorials/tutorial21/include/tutorial21/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial21/include/tutorial21/message/Msg1.h b/tutorials/tutorial21/include/tutorial21/message/Msg1.h index 05dfcc1fe..fb9c86150 100644 --- a/tutorials/tutorial21/include/tutorial21/message/Msg1.h +++ b/tutorials/tutorial21/include/tutorial21/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial21/include/tutorial21/message/Msg1Common.h b/tutorials/tutorial21/include/tutorial21/message/Msg1Common.h index c28878b94..b123ba6da 100644 --- a/tutorials/tutorial21/include/tutorial21/message/Msg1Common.h +++ b/tutorials/tutorial21/include/tutorial21/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial21/include/tutorial21/message/Msg2.h b/tutorials/tutorial21/include/tutorial21/message/Msg2.h index 888952cba..cc152f3dc 100644 --- a/tutorials/tutorial21/include/tutorial21/message/Msg2.h +++ b/tutorials/tutorial21/include/tutorial21/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial21/include/tutorial21/message/Msg2Common.h b/tutorials/tutorial21/include/tutorial21/message/Msg2Common.h index e8fcf62cc..65df04e3f 100644 --- a/tutorials/tutorial21/include/tutorial21/message/Msg2Common.h +++ b/tutorials/tutorial21/include/tutorial21/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial21/include/tutorial21/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial21/include/tutorial21/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index bacaa30c0..973d05522 100644 --- a/tutorials/tutorial21/include/tutorial21/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial21/include/tutorial21/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial21/include/tutorial21/options/BareMetalDefaultOptions.h b/tutorials/tutorial21/include/tutorial21/options/BareMetalDefaultOptions.h index 81d98b1b4..14363c1be 100644 --- a/tutorials/tutorial21/include/tutorial21/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial21/include/tutorial21/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial21/include/tutorial21/options/ClientDefaultOptions.h b/tutorials/tutorial21/include/tutorial21/options/ClientDefaultOptions.h index a8be1269b..e3363ab08 100644 --- a/tutorials/tutorial21/include/tutorial21/options/ClientDefaultOptions.h +++ b/tutorials/tutorial21/include/tutorial21/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial21/include/tutorial21/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial21/include/tutorial21/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 78c1e0ae1..97e4300c2 100644 --- a/tutorials/tutorial21/include/tutorial21/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial21/include/tutorial21/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial21/include/tutorial21/options/DataViewDefaultOptions.h b/tutorials/tutorial21/include/tutorial21/options/DataViewDefaultOptions.h index 78c077a42..a4ed0d55f 100644 --- a/tutorials/tutorial21/include/tutorial21/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial21/include/tutorial21/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial21/include/tutorial21/options/DefaultOptions.h b/tutorials/tutorial21/include/tutorial21/options/DefaultOptions.h index 15705f86c..4f09803e0 100644 --- a/tutorials/tutorial21/include/tutorial21/options/DefaultOptions.h +++ b/tutorials/tutorial21/include/tutorial21/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial21/include/tutorial21/options/ServerDefaultOptions.h b/tutorials/tutorial21/include/tutorial21/options/ServerDefaultOptions.h index abf4157e9..d28c0f4ea 100644 --- a/tutorials/tutorial21/include/tutorial21/options/ServerDefaultOptions.h +++ b/tutorials/tutorial21/include/tutorial21/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial21/include/tutorial21/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial21/include/tutorial21/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index a38f2eeb6..0ab97f6d5 100644 --- a/tutorials/tutorial21/include/tutorial21/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial21/include/tutorial21/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial22/include/tutorial22/Message.h b/tutorials/tutorial22/include/tutorial22/Message.h index c61cba45d..e8f82e254 100644 --- a/tutorials/tutorial22/include/tutorial22/Message.h +++ b/tutorials/tutorial22/include/tutorial22/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial22/include/tutorial22/MsgId.h b/tutorials/tutorial22/include/tutorial22/MsgId.h index 474d80ee4..16a91de14 100644 --- a/tutorials/tutorial22/include/tutorial22/MsgId.h +++ b/tutorials/tutorial22/include/tutorial22/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial22/include/tutorial22/Version.h b/tutorials/tutorial22/include/tutorial22/Version.h index a0bfc69c2..5273426ef 100644 --- a/tutorials/tutorial22/include/tutorial22/Version.h +++ b/tutorials/tutorial22/include/tutorial22/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial22 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial22/include/tutorial22/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial22/include/tutorial22/dispatch/DispatchClientInputMessage.h index fe3b1166c..fead58be0 100644 --- a/tutorials/tutorial22/include/tutorial22/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial22/include/tutorial22/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial22/include/tutorial22/dispatch/DispatchMessage.h b/tutorials/tutorial22/include/tutorial22/dispatch/DispatchMessage.h index afac81b5a..1954f689c 100644 --- a/tutorials/tutorial22/include/tutorial22/dispatch/DispatchMessage.h +++ b/tutorials/tutorial22/include/tutorial22/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial22/include/tutorial22/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial22/include/tutorial22/dispatch/DispatchServerInputMessage.h index abf1c4813..4c00f6180 100644 --- a/tutorials/tutorial22/include/tutorial22/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial22/include/tutorial22/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial22/include/tutorial22/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial22/include/tutorial22/factory/AllMessagesDynMemMsgFactory.h index dcf493e2c..23e04eebf 100644 --- a/tutorials/tutorial22/include/tutorial22/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial22/include/tutorial22/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial22/include/tutorial22/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial22/include/tutorial22/factory/ClientInputMessagesDynMemMsgFactory.h index a00d517d0..6298fec75 100644 --- a/tutorials/tutorial22/include/tutorial22/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial22/include/tutorial22/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial22/include/tutorial22/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial22/include/tutorial22/factory/ServerInputMessagesDynMemMsgFactory.h index 72ff1aa53..74211fbfb 100644 --- a/tutorials/tutorial22/include/tutorial22/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial22/include/tutorial22/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial22/include/tutorial22/field/FieldBase.h b/tutorials/tutorial22/include/tutorial22/field/FieldBase.h index cd79a31ac..651fb93fb 100644 --- a/tutorials/tutorial22/include/tutorial22/field/FieldBase.h +++ b/tutorials/tutorial22/include/tutorial22/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial22/include/tutorial22/field/Length.h b/tutorials/tutorial22/include/tutorial22/field/Length.h index 98355ddf4..e284973e5 100644 --- a/tutorials/tutorial22/include/tutorial22/field/Length.h +++ b/tutorials/tutorial22/include/tutorial22/field/Length.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Length" field. diff --git a/tutorials/tutorial22/include/tutorial22/field/LengthCommon.h b/tutorials/tutorial22/include/tutorial22/field/LengthCommon.h index 65e23c43b..f3883a72e 100644 --- a/tutorials/tutorial22/include/tutorial22/field/LengthCommon.h +++ b/tutorials/tutorial22/include/tutorial22/field/LengthCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial22/include/tutorial22/field/MsgId.h b/tutorials/tutorial22/include/tutorial22/field/MsgId.h index d2566a442..3f26b0126 100644 --- a/tutorials/tutorial22/include/tutorial22/field/MsgId.h +++ b/tutorials/tutorial22/include/tutorial22/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial22/include/tutorial22/field/MsgIdCommon.h b/tutorials/tutorial22/include/tutorial22/field/MsgIdCommon.h index 97bf564a5..e2024d3f7 100644 --- a/tutorials/tutorial22/include/tutorial22/field/MsgIdCommon.h +++ b/tutorials/tutorial22/include/tutorial22/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial22/include/tutorial22/field/TlvProp.h b/tutorials/tutorial22/include/tutorial22/field/TlvProp.h index 55c4eb9fa..eb9cd3d05 100644 --- a/tutorials/tutorial22/include/tutorial22/field/TlvProp.h +++ b/tutorials/tutorial22/include/tutorial22/field/TlvProp.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "TlvProp" field. diff --git a/tutorials/tutorial22/include/tutorial22/field/TlvPropCommon.h b/tutorials/tutorial22/include/tutorial22/field/TlvPropCommon.h index ac9837c68..8ffd744d2 100644 --- a/tutorials/tutorial22/include/tutorial22/field/TlvPropCommon.h +++ b/tutorials/tutorial22/include/tutorial22/field/TlvPropCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial22/include/tutorial22/frame/Frame.h b/tutorials/tutorial22/include/tutorial22/frame/Frame.h index d214e01fb..8a3113d88 100644 --- a/tutorials/tutorial22/include/tutorial22/frame/Frame.h +++ b/tutorials/tutorial22/include/tutorial22/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial22/include/tutorial22/frame/FrameCommon.h b/tutorials/tutorial22/include/tutorial22/frame/FrameCommon.h index 9788fed14..d85e47ac4 100644 --- a/tutorials/tutorial22/include/tutorial22/frame/FrameCommon.h +++ b/tutorials/tutorial22/include/tutorial22/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial22/include/tutorial22/input/AllMessages.h b/tutorials/tutorial22/include/tutorial22/input/AllMessages.h index cab1b07f5..9281b954f 100644 --- a/tutorials/tutorial22/include/tutorial22/input/AllMessages.h +++ b/tutorials/tutorial22/include/tutorial22/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial22/include/tutorial22/input/ClientInputMessages.h b/tutorials/tutorial22/include/tutorial22/input/ClientInputMessages.h index 18b763edd..4a43c5b9e 100644 --- a/tutorials/tutorial22/include/tutorial22/input/ClientInputMessages.h +++ b/tutorials/tutorial22/include/tutorial22/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial22/include/tutorial22/input/ServerInputMessages.h b/tutorials/tutorial22/include/tutorial22/input/ServerInputMessages.h index 5fbe3fb8f..e6a544c90 100644 --- a/tutorials/tutorial22/include/tutorial22/input/ServerInputMessages.h +++ b/tutorials/tutorial22/include/tutorial22/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial22/include/tutorial22/message/Msg1.h b/tutorials/tutorial22/include/tutorial22/message/Msg1.h index 73c28197c..0cd8274e5 100644 --- a/tutorials/tutorial22/include/tutorial22/message/Msg1.h +++ b/tutorials/tutorial22/include/tutorial22/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial22/include/tutorial22/message/Msg1Common.h b/tutorials/tutorial22/include/tutorial22/message/Msg1Common.h index ba9b60aef..e12336d33 100644 --- a/tutorials/tutorial22/include/tutorial22/message/Msg1Common.h +++ b/tutorials/tutorial22/include/tutorial22/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial22/include/tutorial22/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial22/include/tutorial22/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 5b73b4ed5..024fe0c3e 100644 --- a/tutorials/tutorial22/include/tutorial22/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial22/include/tutorial22/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial22/include/tutorial22/options/BareMetalDefaultOptions.h b/tutorials/tutorial22/include/tutorial22/options/BareMetalDefaultOptions.h index d4b9452ea..2f545e3ec 100644 --- a/tutorials/tutorial22/include/tutorial22/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial22/include/tutorial22/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial22/include/tutorial22/options/ClientDefaultOptions.h b/tutorials/tutorial22/include/tutorial22/options/ClientDefaultOptions.h index dd519668e..baedb38a8 100644 --- a/tutorials/tutorial22/include/tutorial22/options/ClientDefaultOptions.h +++ b/tutorials/tutorial22/include/tutorial22/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial22/include/tutorial22/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial22/include/tutorial22/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index b8729fe39..5642f220c 100644 --- a/tutorials/tutorial22/include/tutorial22/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial22/include/tutorial22/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial22/include/tutorial22/options/DataViewDefaultOptions.h b/tutorials/tutorial22/include/tutorial22/options/DataViewDefaultOptions.h index 3fbdcfd9e..b0fbc24a0 100644 --- a/tutorials/tutorial22/include/tutorial22/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial22/include/tutorial22/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial22/include/tutorial22/options/DefaultOptions.h b/tutorials/tutorial22/include/tutorial22/options/DefaultOptions.h index b9d7e3841..c8ee5ac5f 100644 --- a/tutorials/tutorial22/include/tutorial22/options/DefaultOptions.h +++ b/tutorials/tutorial22/include/tutorial22/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial22/include/tutorial22/options/ServerDefaultOptions.h b/tutorials/tutorial22/include/tutorial22/options/ServerDefaultOptions.h index 3ac5b18b7..1a0d9e08b 100644 --- a/tutorials/tutorial22/include/tutorial22/options/ServerDefaultOptions.h +++ b/tutorials/tutorial22/include/tutorial22/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial22/include/tutorial22/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial22/include/tutorial22/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 01003e3b6..dc574e0bc 100644 --- a/tutorials/tutorial22/include/tutorial22/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial22/include/tutorial22/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial23/include/t23_ext/Version.h b/tutorials/tutorial23/include/t23_ext/Version.h index 3bc39de8a..2b8ddfaa4 100644 --- a/tutorials/tutorial23/include/t23_ext/Version.h +++ b/tutorials/tutorial23/include/t23_ext/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace t23_ext // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial23/include/t23_ext/field/FieldBase.h b/tutorials/tutorial23/include/t23_ext/field/FieldBase.h index b448b1e56..bb0fbd817 100644 --- a/tutorials/tutorial23/include/t23_ext/field/FieldBase.h +++ b/tutorials/tutorial23/include/t23_ext/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial23/include/t23_ext/ns1/field/I1.h b/tutorials/tutorial23/include/t23_ext/ns1/field/I1.h index b626e85c5..b2ab4bfc8 100644 --- a/tutorials/tutorial23/include/t23_ext/ns1/field/I1.h +++ b/tutorials/tutorial23/include/t23_ext/ns1/field/I1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "I1" field. diff --git a/tutorials/tutorial23/include/t23_ext/ns1/field/I1Common.h b/tutorials/tutorial23/include/t23_ext/ns1/field/I1Common.h index 8bba308b7..64e9569e7 100644 --- a/tutorials/tutorial23/include/t23_ext/ns1/field/I1Common.h +++ b/tutorials/tutorial23/include/t23_ext/ns1/field/I1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial23/include/t23_ext/ns1/field/S1.h b/tutorials/tutorial23/include/t23_ext/ns1/field/S1.h index 4cf615595..0d8eb4850 100644 --- a/tutorials/tutorial23/include/t23_ext/ns1/field/S1.h +++ b/tutorials/tutorial23/include/t23_ext/ns1/field/S1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "S1" field. diff --git a/tutorials/tutorial23/include/t23_ext/ns1/field/S1Common.h b/tutorials/tutorial23/include/t23_ext/ns1/field/S1Common.h index 8b45a48ea..69eab9092 100644 --- a/tutorials/tutorial23/include/t23_ext/ns1/field/S1Common.h +++ b/tutorials/tutorial23/include/t23_ext/ns1/field/S1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial23/include/t23_ext/options/BareMetalDefaultOptions.h b/tutorials/tutorial23/include/t23_ext/options/BareMetalDefaultOptions.h index 8e0760311..e9d35291a 100644 --- a/tutorials/tutorial23/include/t23_ext/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial23/include/t23_ext/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial23/include/t23_ext/options/ClientDefaultOptions.h b/tutorials/tutorial23/include/t23_ext/options/ClientDefaultOptions.h index 2410c4969..b2863d4c3 100644 --- a/tutorials/tutorial23/include/t23_ext/options/ClientDefaultOptions.h +++ b/tutorials/tutorial23/include/t23_ext/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial23/include/t23_ext/options/DataViewDefaultOptions.h b/tutorials/tutorial23/include/t23_ext/options/DataViewDefaultOptions.h index 6a6981610..51296a979 100644 --- a/tutorials/tutorial23/include/t23_ext/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial23/include/t23_ext/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial23/include/t23_ext/options/DefaultOptions.h b/tutorials/tutorial23/include/t23_ext/options/DefaultOptions.h index 67d13ca65..83227c7b0 100644 --- a/tutorials/tutorial23/include/t23_ext/options/DefaultOptions.h +++ b/tutorials/tutorial23/include/t23_ext/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial23/include/t23_ext/options/ServerDefaultOptions.h b/tutorials/tutorial23/include/t23_ext/options/ServerDefaultOptions.h index ca76b8c11..3d549bee6 100644 --- a/tutorials/tutorial23/include/t23_ext/options/ServerDefaultOptions.h +++ b/tutorials/tutorial23/include/t23_ext/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial23/include/tutorial23/Message.h b/tutorials/tutorial23/include/tutorial23/Message.h index fab510c42..16df1c62f 100644 --- a/tutorials/tutorial23/include/tutorial23/Message.h +++ b/tutorials/tutorial23/include/tutorial23/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial23/include/tutorial23/MsgId.h b/tutorials/tutorial23/include/tutorial23/MsgId.h index 13319fb72..f7be35702 100644 --- a/tutorials/tutorial23/include/tutorial23/MsgId.h +++ b/tutorials/tutorial23/include/tutorial23/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial23/include/tutorial23/Version.h b/tutorials/tutorial23/include/tutorial23/Version.h index 7ab9b5ce8..7fce219ae 100644 --- a/tutorials/tutorial23/include/tutorial23/Version.h +++ b/tutorials/tutorial23/include/tutorial23/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial23 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial23/include/tutorial23/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial23/include/tutorial23/dispatch/DispatchClientInputMessage.h index 7af478598..cef3ba0c5 100644 --- a/tutorials/tutorial23/include/tutorial23/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial23/include/tutorial23/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial23/include/tutorial23/dispatch/DispatchMessage.h b/tutorials/tutorial23/include/tutorial23/dispatch/DispatchMessage.h index 09cea548e..cad594b16 100644 --- a/tutorials/tutorial23/include/tutorial23/dispatch/DispatchMessage.h +++ b/tutorials/tutorial23/include/tutorial23/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial23/include/tutorial23/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial23/include/tutorial23/dispatch/DispatchServerInputMessage.h index 8cc197ed1..da0126759 100644 --- a/tutorials/tutorial23/include/tutorial23/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial23/include/tutorial23/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial23/include/tutorial23/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial23/include/tutorial23/factory/AllMessagesDynMemMsgFactory.h index e5ef98540..a2f29f8be 100644 --- a/tutorials/tutorial23/include/tutorial23/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial23/include/tutorial23/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial23/include/tutorial23/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial23/include/tutorial23/factory/ClientInputMessagesDynMemMsgFactory.h index 612430be7..59977d3a1 100644 --- a/tutorials/tutorial23/include/tutorial23/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial23/include/tutorial23/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial23/include/tutorial23/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial23/include/tutorial23/factory/ServerInputMessagesDynMemMsgFactory.h index e056df86e..3abb601dc 100644 --- a/tutorials/tutorial23/include/tutorial23/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial23/include/tutorial23/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial23/include/tutorial23/field/FieldBase.h b/tutorials/tutorial23/include/tutorial23/field/FieldBase.h index dca3374aa..43f9a4b15 100644 --- a/tutorials/tutorial23/include/tutorial23/field/FieldBase.h +++ b/tutorials/tutorial23/include/tutorial23/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial23/include/tutorial23/field/I1.h b/tutorials/tutorial23/include/tutorial23/field/I1.h index e34be2c1c..f2587df3d 100644 --- a/tutorials/tutorial23/include/tutorial23/field/I1.h +++ b/tutorials/tutorial23/include/tutorial23/field/I1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "I1" field. diff --git a/tutorials/tutorial23/include/tutorial23/field/I1Common.h b/tutorials/tutorial23/include/tutorial23/field/I1Common.h index 0a0c45a19..b4e3489c6 100644 --- a/tutorials/tutorial23/include/tutorial23/field/I1Common.h +++ b/tutorials/tutorial23/include/tutorial23/field/I1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial23/include/tutorial23/field/Length.h b/tutorials/tutorial23/include/tutorial23/field/Length.h index 3d50a3bdf..f34b20c0b 100644 --- a/tutorials/tutorial23/include/tutorial23/field/Length.h +++ b/tutorials/tutorial23/include/tutorial23/field/Length.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Length" field. diff --git a/tutorials/tutorial23/include/tutorial23/field/LengthCommon.h b/tutorials/tutorial23/include/tutorial23/field/LengthCommon.h index fad7bfe7f..5578e8558 100644 --- a/tutorials/tutorial23/include/tutorial23/field/LengthCommon.h +++ b/tutorials/tutorial23/include/tutorial23/field/LengthCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial23/include/tutorial23/field/MsgId.h b/tutorials/tutorial23/include/tutorial23/field/MsgId.h index 436fff3f7..b09b098ae 100644 --- a/tutorials/tutorial23/include/tutorial23/field/MsgId.h +++ b/tutorials/tutorial23/include/tutorial23/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial23/include/tutorial23/field/MsgIdCommon.h b/tutorials/tutorial23/include/tutorial23/field/MsgIdCommon.h index fcd334465..1481d9855 100644 --- a/tutorials/tutorial23/include/tutorial23/field/MsgIdCommon.h +++ b/tutorials/tutorial23/include/tutorial23/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial23/include/tutorial23/frame/Frame.h b/tutorials/tutorial23/include/tutorial23/frame/Frame.h index 9f088461c..eff9d0331 100644 --- a/tutorials/tutorial23/include/tutorial23/frame/Frame.h +++ b/tutorials/tutorial23/include/tutorial23/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial23/include/tutorial23/frame/FrameCommon.h b/tutorials/tutorial23/include/tutorial23/frame/FrameCommon.h index 14803cf23..5acfc9ee7 100644 --- a/tutorials/tutorial23/include/tutorial23/frame/FrameCommon.h +++ b/tutorials/tutorial23/include/tutorial23/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial23/include/tutorial23/input/AllMessages.h b/tutorials/tutorial23/include/tutorial23/input/AllMessages.h index a96559c16..66c0eb772 100644 --- a/tutorials/tutorial23/include/tutorial23/input/AllMessages.h +++ b/tutorials/tutorial23/include/tutorial23/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial23/include/tutorial23/input/ClientInputMessages.h b/tutorials/tutorial23/include/tutorial23/input/ClientInputMessages.h index 62471cbb9..bde8786ab 100644 --- a/tutorials/tutorial23/include/tutorial23/input/ClientInputMessages.h +++ b/tutorials/tutorial23/include/tutorial23/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial23/include/tutorial23/input/ServerInputMessages.h b/tutorials/tutorial23/include/tutorial23/input/ServerInputMessages.h index a9baf37e6..77cf65c3e 100644 --- a/tutorials/tutorial23/include/tutorial23/input/ServerInputMessages.h +++ b/tutorials/tutorial23/include/tutorial23/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial23/include/tutorial23/message/Msg1.h b/tutorials/tutorial23/include/tutorial23/message/Msg1.h index 35868d46f..7f1a2234b 100644 --- a/tutorials/tutorial23/include/tutorial23/message/Msg1.h +++ b/tutorials/tutorial23/include/tutorial23/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial23/include/tutorial23/message/Msg1Common.h b/tutorials/tutorial23/include/tutorial23/message/Msg1Common.h index 08e60621f..ae1b32842 100644 --- a/tutorials/tutorial23/include/tutorial23/message/Msg1Common.h +++ b/tutorials/tutorial23/include/tutorial23/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial23/include/tutorial23/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial23/include/tutorial23/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 2cf127597..35c02142f 100644 --- a/tutorials/tutorial23/include/tutorial23/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial23/include/tutorial23/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial23/include/tutorial23/options/BareMetalDefaultOptions.h b/tutorials/tutorial23/include/tutorial23/options/BareMetalDefaultOptions.h index 21ccab4e8..45c538c19 100644 --- a/tutorials/tutorial23/include/tutorial23/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial23/include/tutorial23/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial23/include/tutorial23/options/ClientDefaultOptions.h b/tutorials/tutorial23/include/tutorial23/options/ClientDefaultOptions.h index 07dea1ba9..f7866ab1d 100644 --- a/tutorials/tutorial23/include/tutorial23/options/ClientDefaultOptions.h +++ b/tutorials/tutorial23/include/tutorial23/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial23/include/tutorial23/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial23/include/tutorial23/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index c6939c505..3a3a4d157 100644 --- a/tutorials/tutorial23/include/tutorial23/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial23/include/tutorial23/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial23/include/tutorial23/options/DataViewDefaultOptions.h b/tutorials/tutorial23/include/tutorial23/options/DataViewDefaultOptions.h index a6474a943..07b5a1394 100644 --- a/tutorials/tutorial23/include/tutorial23/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial23/include/tutorial23/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial23/include/tutorial23/options/DefaultOptions.h b/tutorials/tutorial23/include/tutorial23/options/DefaultOptions.h index 27a670d57..228be121a 100644 --- a/tutorials/tutorial23/include/tutorial23/options/DefaultOptions.h +++ b/tutorials/tutorial23/include/tutorial23/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial23/include/tutorial23/options/ServerDefaultOptions.h b/tutorials/tutorial23/include/tutorial23/options/ServerDefaultOptions.h index a8103a620..b355f0127 100644 --- a/tutorials/tutorial23/include/tutorial23/options/ServerDefaultOptions.h +++ b/tutorials/tutorial23/include/tutorial23/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial23/include/tutorial23/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial23/include/tutorial23/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 83e020f55..75b6d2198 100644 --- a/tutorials/tutorial23/include/tutorial23/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial23/include/tutorial23/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial24/include/tutorial24/Message.h b/tutorials/tutorial24/include/tutorial24/Message.h index 902338285..338601cd2 100644 --- a/tutorials/tutorial24/include/tutorial24/Message.h +++ b/tutorials/tutorial24/include/tutorial24/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial24/include/tutorial24/MsgId.h b/tutorials/tutorial24/include/tutorial24/MsgId.h index 8a5f050dc..38c3536e5 100644 --- a/tutorials/tutorial24/include/tutorial24/MsgId.h +++ b/tutorials/tutorial24/include/tutorial24/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial24/include/tutorial24/Version.h b/tutorials/tutorial24/include/tutorial24/Version.h index 8e0d49f4b..29db0d343 100644 --- a/tutorials/tutorial24/include/tutorial24/Version.h +++ b/tutorials/tutorial24/include/tutorial24/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial24 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial24/include/tutorial24/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial24/include/tutorial24/dispatch/DispatchClientInputMessage.h index e7c953cd2..d29156270 100644 --- a/tutorials/tutorial24/include/tutorial24/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial24/include/tutorial24/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial24/include/tutorial24/dispatch/DispatchMessage.h b/tutorials/tutorial24/include/tutorial24/dispatch/DispatchMessage.h index 7c3a32472..18320368b 100644 --- a/tutorials/tutorial24/include/tutorial24/dispatch/DispatchMessage.h +++ b/tutorials/tutorial24/include/tutorial24/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial24/include/tutorial24/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial24/include/tutorial24/dispatch/DispatchServerInputMessage.h index 52b77ef6e..dfcbe351f 100644 --- a/tutorials/tutorial24/include/tutorial24/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial24/include/tutorial24/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial24/include/tutorial24/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial24/include/tutorial24/factory/AllMessagesDynMemMsgFactory.h index 9ced21b86..33bd2e400 100644 --- a/tutorials/tutorial24/include/tutorial24/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial24/include/tutorial24/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial24/include/tutorial24/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial24/include/tutorial24/factory/ClientInputMessagesDynMemMsgFactory.h index f630d7bec..996c324aa 100644 --- a/tutorials/tutorial24/include/tutorial24/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial24/include/tutorial24/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial24/include/tutorial24/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial24/include/tutorial24/factory/ServerInputMessagesDynMemMsgFactory.h index 82a036837..1f2a20df6 100644 --- a/tutorials/tutorial24/include/tutorial24/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial24/include/tutorial24/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial24/include/tutorial24/field/FieldBase.h b/tutorials/tutorial24/include/tutorial24/field/FieldBase.h index 444266265..ae3758c54 100644 --- a/tutorials/tutorial24/include/tutorial24/field/FieldBase.h +++ b/tutorials/tutorial24/include/tutorial24/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial24/include/tutorial24/field/MsgId.h b/tutorials/tutorial24/include/tutorial24/field/MsgId.h index 9cf48e5e7..d66914988 100644 --- a/tutorials/tutorial24/include/tutorial24/field/MsgId.h +++ b/tutorials/tutorial24/include/tutorial24/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial24/include/tutorial24/field/MsgIdCommon.h b/tutorials/tutorial24/include/tutorial24/field/MsgIdCommon.h index 41626d3b8..052a2e65e 100644 --- a/tutorials/tutorial24/include/tutorial24/field/MsgIdCommon.h +++ b/tutorials/tutorial24/include/tutorial24/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial24/include/tutorial24/frame/Frame.h b/tutorials/tutorial24/include/tutorial24/frame/Frame.h index c2150762b..6fbd350a2 100644 --- a/tutorials/tutorial24/include/tutorial24/frame/Frame.h +++ b/tutorials/tutorial24/include/tutorial24/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial24/include/tutorial24/frame/FrameCommon.h b/tutorials/tutorial24/include/tutorial24/frame/FrameCommon.h index 3b7d4598f..1b2fbb21b 100644 --- a/tutorials/tutorial24/include/tutorial24/frame/FrameCommon.h +++ b/tutorials/tutorial24/include/tutorial24/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial24/include/tutorial24/input/AllMessages.h b/tutorials/tutorial24/include/tutorial24/input/AllMessages.h index 000f1a65b..37b560a7f 100644 --- a/tutorials/tutorial24/include/tutorial24/input/AllMessages.h +++ b/tutorials/tutorial24/include/tutorial24/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial24/include/tutorial24/input/ClientInputMessages.h b/tutorials/tutorial24/include/tutorial24/input/ClientInputMessages.h index 70a4d3475..67c17f0b6 100644 --- a/tutorials/tutorial24/include/tutorial24/input/ClientInputMessages.h +++ b/tutorials/tutorial24/include/tutorial24/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial24/include/tutorial24/input/ServerInputMessages.h b/tutorials/tutorial24/include/tutorial24/input/ServerInputMessages.h index 2c6f86cd0..a92da5982 100644 --- a/tutorials/tutorial24/include/tutorial24/input/ServerInputMessages.h +++ b/tutorials/tutorial24/include/tutorial24/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial24/include/tutorial24/message/Msg1.h b/tutorials/tutorial24/include/tutorial24/message/Msg1.h index 37239e386..213131a47 100644 --- a/tutorials/tutorial24/include/tutorial24/message/Msg1.h +++ b/tutorials/tutorial24/include/tutorial24/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial24/include/tutorial24/message/Msg1Common.h b/tutorials/tutorial24/include/tutorial24/message/Msg1Common.h index 055ba40bb..0d2cea194 100644 --- a/tutorials/tutorial24/include/tutorial24/message/Msg1Common.h +++ b/tutorials/tutorial24/include/tutorial24/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial24/include/tutorial24/message/Msg2.h b/tutorials/tutorial24/include/tutorial24/message/Msg2.h index 58955da6b..0104bec07 100644 --- a/tutorials/tutorial24/include/tutorial24/message/Msg2.h +++ b/tutorials/tutorial24/include/tutorial24/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial24/include/tutorial24/message/Msg2Common.h b/tutorials/tutorial24/include/tutorial24/message/Msg2Common.h index f903d35bb..aaacafc33 100644 --- a/tutorials/tutorial24/include/tutorial24/message/Msg2Common.h +++ b/tutorials/tutorial24/include/tutorial24/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial24/include/tutorial24/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial24/include/tutorial24/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index dae51de63..152f72145 100644 --- a/tutorials/tutorial24/include/tutorial24/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial24/include/tutorial24/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial24/include/tutorial24/options/BareMetalDefaultOptions.h b/tutorials/tutorial24/include/tutorial24/options/BareMetalDefaultOptions.h index 11dbc3721..219ad972f 100644 --- a/tutorials/tutorial24/include/tutorial24/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial24/include/tutorial24/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial24/include/tutorial24/options/ClientDefaultOptions.h b/tutorials/tutorial24/include/tutorial24/options/ClientDefaultOptions.h index c0915e243..6584d406e 100644 --- a/tutorials/tutorial24/include/tutorial24/options/ClientDefaultOptions.h +++ b/tutorials/tutorial24/include/tutorial24/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial24/include/tutorial24/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial24/include/tutorial24/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 3da257733..faf5d896f 100644 --- a/tutorials/tutorial24/include/tutorial24/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial24/include/tutorial24/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial24/include/tutorial24/options/DataViewDefaultOptions.h b/tutorials/tutorial24/include/tutorial24/options/DataViewDefaultOptions.h index 1722e026a..fdcdec6db 100644 --- a/tutorials/tutorial24/include/tutorial24/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial24/include/tutorial24/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial24/include/tutorial24/options/DefaultOptions.h b/tutorials/tutorial24/include/tutorial24/options/DefaultOptions.h index 5cbc9e44b..eee29f118 100644 --- a/tutorials/tutorial24/include/tutorial24/options/DefaultOptions.h +++ b/tutorials/tutorial24/include/tutorial24/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial24/include/tutorial24/options/ServerDefaultOptions.h b/tutorials/tutorial24/include/tutorial24/options/ServerDefaultOptions.h index 8d224dd84..770e2ea5d 100644 --- a/tutorials/tutorial24/include/tutorial24/options/ServerDefaultOptions.h +++ b/tutorials/tutorial24/include/tutorial24/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial24/include/tutorial24/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial24/include/tutorial24/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 69cd0b90d..78999bd04 100644 --- a/tutorials/tutorial24/include/tutorial24/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial24/include/tutorial24/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial25/include/tutorial25/Message.h b/tutorials/tutorial25/include/tutorial25/Message.h index 56d2f183a..e3aa4c465 100644 --- a/tutorials/tutorial25/include/tutorial25/Message.h +++ b/tutorials/tutorial25/include/tutorial25/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial25/include/tutorial25/MsgId.h b/tutorials/tutorial25/include/tutorial25/MsgId.h index f4f256ed9..f4b791e23 100644 --- a/tutorials/tutorial25/include/tutorial25/MsgId.h +++ b/tutorials/tutorial25/include/tutorial25/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial25/include/tutorial25/Version.h b/tutorials/tutorial25/include/tutorial25/Version.h index 41f7015ae..6e0682667 100644 --- a/tutorials/tutorial25/include/tutorial25/Version.h +++ b/tutorials/tutorial25/include/tutorial25/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial25 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial25/include/tutorial25/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial25/include/tutorial25/dispatch/DispatchClientInputMessage.h index 509daf390..8458fcac2 100644 --- a/tutorials/tutorial25/include/tutorial25/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial25/include/tutorial25/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial25/include/tutorial25/dispatch/DispatchMessage.h b/tutorials/tutorial25/include/tutorial25/dispatch/DispatchMessage.h index 0cde11824..5dde25836 100644 --- a/tutorials/tutorial25/include/tutorial25/dispatch/DispatchMessage.h +++ b/tutorials/tutorial25/include/tutorial25/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial25/include/tutorial25/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial25/include/tutorial25/dispatch/DispatchServerInputMessage.h index 1666ae4d8..406458b0e 100644 --- a/tutorials/tutorial25/include/tutorial25/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial25/include/tutorial25/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial25/include/tutorial25/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial25/include/tutorial25/factory/AllMessagesDynMemMsgFactory.h index d6d361015..6f06ed087 100644 --- a/tutorials/tutorial25/include/tutorial25/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial25/include/tutorial25/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial25/include/tutorial25/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial25/include/tutorial25/factory/ClientInputMessagesDynMemMsgFactory.h index 97d794ebc..5185c56a2 100644 --- a/tutorials/tutorial25/include/tutorial25/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial25/include/tutorial25/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial25/include/tutorial25/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial25/include/tutorial25/factory/ServerInputMessagesDynMemMsgFactory.h index de56c738a..2506916ff 100644 --- a/tutorials/tutorial25/include/tutorial25/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial25/include/tutorial25/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial25/include/tutorial25/field/FieldBase.h b/tutorials/tutorial25/include/tutorial25/field/FieldBase.h index 45dc93791..2baec60f3 100644 --- a/tutorials/tutorial25/include/tutorial25/field/FieldBase.h +++ b/tutorials/tutorial25/include/tutorial25/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial25/include/tutorial25/field/MsgId.h b/tutorials/tutorial25/include/tutorial25/field/MsgId.h index 0269e9487..060a942c3 100644 --- a/tutorials/tutorial25/include/tutorial25/field/MsgId.h +++ b/tutorials/tutorial25/include/tutorial25/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial25/include/tutorial25/field/MsgIdCommon.h b/tutorials/tutorial25/include/tutorial25/field/MsgIdCommon.h index 07bc80ae8..7e03b7c18 100644 --- a/tutorials/tutorial25/include/tutorial25/field/MsgIdCommon.h +++ b/tutorials/tutorial25/include/tutorial25/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial25/include/tutorial25/frame/Frame.h b/tutorials/tutorial25/include/tutorial25/frame/Frame.h index 7e864bb2f..559314624 100644 --- a/tutorials/tutorial25/include/tutorial25/frame/Frame.h +++ b/tutorials/tutorial25/include/tutorial25/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial25/include/tutorial25/frame/FrameCommon.h b/tutorials/tutorial25/include/tutorial25/frame/FrameCommon.h index f02612954..be2c3ca02 100644 --- a/tutorials/tutorial25/include/tutorial25/frame/FrameCommon.h +++ b/tutorials/tutorial25/include/tutorial25/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial25/include/tutorial25/input/AllMessages.h b/tutorials/tutorial25/include/tutorial25/input/AllMessages.h index db5f7f5e8..a6fdaf231 100644 --- a/tutorials/tutorial25/include/tutorial25/input/AllMessages.h +++ b/tutorials/tutorial25/include/tutorial25/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial25/include/tutorial25/input/ClientInputMessages.h b/tutorials/tutorial25/include/tutorial25/input/ClientInputMessages.h index 14f64c23a..beb44ae6a 100644 --- a/tutorials/tutorial25/include/tutorial25/input/ClientInputMessages.h +++ b/tutorials/tutorial25/include/tutorial25/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial25/include/tutorial25/input/ServerInputMessages.h b/tutorials/tutorial25/include/tutorial25/input/ServerInputMessages.h index 9987ae244..e1923b4cd 100644 --- a/tutorials/tutorial25/include/tutorial25/input/ServerInputMessages.h +++ b/tutorials/tutorial25/include/tutorial25/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg1.h b/tutorials/tutorial25/include/tutorial25/message/Msg1.h index 170218cf4..6a7af9f34 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg1.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg10.h b/tutorials/tutorial25/include/tutorial25/message/Msg10.h index 3821126da..2fac2103d 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg10.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg10.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 10" message and its fields. diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg10Common.h b/tutorials/tutorial25/include/tutorial25/message/Msg10Common.h index 2d6764c97..65693f2dd 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg10Common.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg10Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg1Common.h b/tutorials/tutorial25/include/tutorial25/message/Msg1Common.h index f4c023553..0288b6549 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg1Common.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg2.h b/tutorials/tutorial25/include/tutorial25/message/Msg2.h index 1a5dbc6b6..606227b25 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg2.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg2Common.h b/tutorials/tutorial25/include/tutorial25/message/Msg2Common.h index f3f96505a..ad603a446 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg2Common.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg3.h b/tutorials/tutorial25/include/tutorial25/message/Msg3.h index ff715f33c..d2d98f1f8 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg3.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg3Common.h b/tutorials/tutorial25/include/tutorial25/message/Msg3Common.h index f3c28b6b0..fd2128959 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg3Common.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg4.h b/tutorials/tutorial25/include/tutorial25/message/Msg4.h index 4fb97600d..80e1b7fd3 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg4.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg4.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 4" message and its fields. diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg4Common.h b/tutorials/tutorial25/include/tutorial25/message/Msg4Common.h index 222a2830a..633f8e9ba 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg4Common.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg4Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg5.h b/tutorials/tutorial25/include/tutorial25/message/Msg5.h index 37bb033bf..4c2a5c830 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg5.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg5.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 5" message and its fields. diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg5Common.h b/tutorials/tutorial25/include/tutorial25/message/Msg5Common.h index a0edb47fe..72e5a7294 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg5Common.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg5Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg6.h b/tutorials/tutorial25/include/tutorial25/message/Msg6.h index f2face56f..295d6f658 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg6.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg6.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 6" message and its fields. diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg6Common.h b/tutorials/tutorial25/include/tutorial25/message/Msg6Common.h index e6c53df59..a1e98aa67 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg6Common.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg6Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg7.h b/tutorials/tutorial25/include/tutorial25/message/Msg7.h index 9240393e5..d0feb5b1c 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg7.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg7.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 7" message and its fields. diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg7Common.h b/tutorials/tutorial25/include/tutorial25/message/Msg7Common.h index d924c9fa0..ff9ccc7b8 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg7Common.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg7Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg8.h b/tutorials/tutorial25/include/tutorial25/message/Msg8.h index d97a81ed1..52daae37a 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg8.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg8.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 8" message and its fields. diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg8Common.h b/tutorials/tutorial25/include/tutorial25/message/Msg8Common.h index 8fbaa7929..b0bbde08a 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg8Common.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg8Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg9.h b/tutorials/tutorial25/include/tutorial25/message/Msg9.h index b8bad4989..37dcc9094 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg9.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg9.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 9" message and its fields. diff --git a/tutorials/tutorial25/include/tutorial25/message/Msg9Common.h b/tutorials/tutorial25/include/tutorial25/message/Msg9Common.h index 6899ea773..ad31e3add 100644 --- a/tutorials/tutorial25/include/tutorial25/message/Msg9Common.h +++ b/tutorials/tutorial25/include/tutorial25/message/Msg9Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial25/include/tutorial25/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial25/include/tutorial25/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 462a32c5c..cf8c74b2e 100644 --- a/tutorials/tutorial25/include/tutorial25/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial25/include/tutorial25/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial25/include/tutorial25/options/BareMetalDefaultOptions.h b/tutorials/tutorial25/include/tutorial25/options/BareMetalDefaultOptions.h index fef29f9db..6b5fece3f 100644 --- a/tutorials/tutorial25/include/tutorial25/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial25/include/tutorial25/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial25/include/tutorial25/options/ClientDefaultOptions.h b/tutorials/tutorial25/include/tutorial25/options/ClientDefaultOptions.h index 6a8ee5f1c..e4085da24 100644 --- a/tutorials/tutorial25/include/tutorial25/options/ClientDefaultOptions.h +++ b/tutorials/tutorial25/include/tutorial25/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial25/include/tutorial25/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial25/include/tutorial25/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index f904f08b8..b738498c2 100644 --- a/tutorials/tutorial25/include/tutorial25/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial25/include/tutorial25/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial25/include/tutorial25/options/DataViewDefaultOptions.h b/tutorials/tutorial25/include/tutorial25/options/DataViewDefaultOptions.h index 76d7162ae..6fe0e32bf 100644 --- a/tutorials/tutorial25/include/tutorial25/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial25/include/tutorial25/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial25/include/tutorial25/options/DefaultOptions.h b/tutorials/tutorial25/include/tutorial25/options/DefaultOptions.h index e17f934dc..2acd7aeb9 100644 --- a/tutorials/tutorial25/include/tutorial25/options/DefaultOptions.h +++ b/tutorials/tutorial25/include/tutorial25/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial25/include/tutorial25/options/ServerDefaultOptions.h b/tutorials/tutorial25/include/tutorial25/options/ServerDefaultOptions.h index b35560b75..e56a2eda0 100644 --- a/tutorials/tutorial25/include/tutorial25/options/ServerDefaultOptions.h +++ b/tutorials/tutorial25/include/tutorial25/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial25/include/tutorial25/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial25/include/tutorial25/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 1b08180bb..2e5ae7d38 100644 --- a/tutorials/tutorial25/include/tutorial25/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial25/include/tutorial25/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial3/include/tutorial3/Message.h b/tutorials/tutorial3/include/tutorial3/Message.h index aebbd7515..2d06e9e67 100644 --- a/tutorials/tutorial3/include/tutorial3/Message.h +++ b/tutorials/tutorial3/include/tutorial3/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial3/include/tutorial3/MsgId.h b/tutorials/tutorial3/include/tutorial3/MsgId.h index a2abb918b..68d92118a 100644 --- a/tutorials/tutorial3/include/tutorial3/MsgId.h +++ b/tutorials/tutorial3/include/tutorial3/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial3/include/tutorial3/Version.h b/tutorials/tutorial3/include/tutorial3/Version.h index ff7937748..d26027ace 100644 --- a/tutorials/tutorial3/include/tutorial3/Version.h +++ b/tutorials/tutorial3/include/tutorial3/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial3 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial3/include/tutorial3/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial3/include/tutorial3/dispatch/DispatchClientInputMessage.h index e6213dc14..cbc84582c 100644 --- a/tutorials/tutorial3/include/tutorial3/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial3/include/tutorial3/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial3/include/tutorial3/dispatch/DispatchMessage.h b/tutorials/tutorial3/include/tutorial3/dispatch/DispatchMessage.h index 575fcb195..43667ee98 100644 --- a/tutorials/tutorial3/include/tutorial3/dispatch/DispatchMessage.h +++ b/tutorials/tutorial3/include/tutorial3/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial3/include/tutorial3/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial3/include/tutorial3/dispatch/DispatchServerInputMessage.h index d5a519c23..a3c1f39f9 100644 --- a/tutorials/tutorial3/include/tutorial3/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial3/include/tutorial3/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial3/include/tutorial3/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial3/include/tutorial3/factory/AllMessagesDynMemMsgFactory.h index a939655b4..1e663f10d 100644 --- a/tutorials/tutorial3/include/tutorial3/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial3/include/tutorial3/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial3/include/tutorial3/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial3/include/tutorial3/factory/ClientInputMessagesDynMemMsgFactory.h index 9e2879180..feb88d095 100644 --- a/tutorials/tutorial3/include/tutorial3/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial3/include/tutorial3/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial3/include/tutorial3/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial3/include/tutorial3/factory/ServerInputMessagesDynMemMsgFactory.h index 3d1c8f5a4..0d66827b3 100644 --- a/tutorials/tutorial3/include/tutorial3/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial3/include/tutorial3/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial3/include/tutorial3/field/FieldBase.h b/tutorials/tutorial3/include/tutorial3/field/FieldBase.h index ef8c2c800..a0c142390 100644 --- a/tutorials/tutorial3/include/tutorial3/field/FieldBase.h +++ b/tutorials/tutorial3/include/tutorial3/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial3/include/tutorial3/field/MsgId.h b/tutorials/tutorial3/include/tutorial3/field/MsgId.h index 2abc7542b..cb3fce722 100644 --- a/tutorials/tutorial3/include/tutorial3/field/MsgId.h +++ b/tutorials/tutorial3/include/tutorial3/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial3/include/tutorial3/field/MsgIdCommon.h b/tutorials/tutorial3/include/tutorial3/field/MsgIdCommon.h index d9b4c9757..071630b69 100644 --- a/tutorials/tutorial3/include/tutorial3/field/MsgIdCommon.h +++ b/tutorials/tutorial3/include/tutorial3/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial3/include/tutorial3/frame/Frame.h b/tutorials/tutorial3/include/tutorial3/frame/Frame.h index 9bac1d2fc..06cb5eea4 100644 --- a/tutorials/tutorial3/include/tutorial3/frame/Frame.h +++ b/tutorials/tutorial3/include/tutorial3/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial3/include/tutorial3/frame/FrameCommon.h b/tutorials/tutorial3/include/tutorial3/frame/FrameCommon.h index 7e5a77d1e..7eedfbe9a 100644 --- a/tutorials/tutorial3/include/tutorial3/frame/FrameCommon.h +++ b/tutorials/tutorial3/include/tutorial3/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial3/include/tutorial3/input/AllMessages.h b/tutorials/tutorial3/include/tutorial3/input/AllMessages.h index d64c143fc..0be9dcb49 100644 --- a/tutorials/tutorial3/include/tutorial3/input/AllMessages.h +++ b/tutorials/tutorial3/include/tutorial3/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial3/include/tutorial3/input/ClientInputMessages.h b/tutorials/tutorial3/include/tutorial3/input/ClientInputMessages.h index f0c4d0742..475815746 100644 --- a/tutorials/tutorial3/include/tutorial3/input/ClientInputMessages.h +++ b/tutorials/tutorial3/include/tutorial3/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial3/include/tutorial3/input/ServerInputMessages.h b/tutorials/tutorial3/include/tutorial3/input/ServerInputMessages.h index 631e0555d..1b2c50e9b 100644 --- a/tutorials/tutorial3/include/tutorial3/input/ServerInputMessages.h +++ b/tutorials/tutorial3/include/tutorial3/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial3/include/tutorial3/message/Msg1.h b/tutorials/tutorial3/include/tutorial3/message/Msg1.h index 067a94969..9e9f7eea6 100644 --- a/tutorials/tutorial3/include/tutorial3/message/Msg1.h +++ b/tutorials/tutorial3/include/tutorial3/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial3/include/tutorial3/message/Msg1Common.h b/tutorials/tutorial3/include/tutorial3/message/Msg1Common.h index d336bb111..9248ca65c 100644 --- a/tutorials/tutorial3/include/tutorial3/message/Msg1Common.h +++ b/tutorials/tutorial3/include/tutorial3/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial3/include/tutorial3/message/Msg2.h b/tutorials/tutorial3/include/tutorial3/message/Msg2.h index 7a1910307..d7f0fece6 100644 --- a/tutorials/tutorial3/include/tutorial3/message/Msg2.h +++ b/tutorials/tutorial3/include/tutorial3/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial3/include/tutorial3/message/Msg2Common.h b/tutorials/tutorial3/include/tutorial3/message/Msg2Common.h index ce13ac95d..40cf8181c 100644 --- a/tutorials/tutorial3/include/tutorial3/message/Msg2Common.h +++ b/tutorials/tutorial3/include/tutorial3/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial3/include/tutorial3/message/Msg3.h b/tutorials/tutorial3/include/tutorial3/message/Msg3.h index 5f02d5f81..8605b49ac 100644 --- a/tutorials/tutorial3/include/tutorial3/message/Msg3.h +++ b/tutorials/tutorial3/include/tutorial3/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/tutorials/tutorial3/include/tutorial3/message/Msg3Common.h b/tutorials/tutorial3/include/tutorial3/message/Msg3Common.h index 09a548efd..fa3111480 100644 --- a/tutorials/tutorial3/include/tutorial3/message/Msg3Common.h +++ b/tutorials/tutorial3/include/tutorial3/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial3/include/tutorial3/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial3/include/tutorial3/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 1102c51d6..493297c76 100644 --- a/tutorials/tutorial3/include/tutorial3/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial3/include/tutorial3/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial3/include/tutorial3/options/BareMetalDefaultOptions.h b/tutorials/tutorial3/include/tutorial3/options/BareMetalDefaultOptions.h index 31c51c51d..b5a4f0c1c 100644 --- a/tutorials/tutorial3/include/tutorial3/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial3/include/tutorial3/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial3/include/tutorial3/options/ClientDefaultOptions.h b/tutorials/tutorial3/include/tutorial3/options/ClientDefaultOptions.h index 822ada074..a3d9546fc 100644 --- a/tutorials/tutorial3/include/tutorial3/options/ClientDefaultOptions.h +++ b/tutorials/tutorial3/include/tutorial3/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial3/include/tutorial3/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial3/include/tutorial3/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 2b79ccad1..913ca87bc 100644 --- a/tutorials/tutorial3/include/tutorial3/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial3/include/tutorial3/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial3/include/tutorial3/options/DataViewDefaultOptions.h b/tutorials/tutorial3/include/tutorial3/options/DataViewDefaultOptions.h index 362e21b01..9ef333eb6 100644 --- a/tutorials/tutorial3/include/tutorial3/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial3/include/tutorial3/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial3/include/tutorial3/options/DefaultOptions.h b/tutorials/tutorial3/include/tutorial3/options/DefaultOptions.h index 40debab34..918d47791 100644 --- a/tutorials/tutorial3/include/tutorial3/options/DefaultOptions.h +++ b/tutorials/tutorial3/include/tutorial3/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial3/include/tutorial3/options/ServerDefaultOptions.h b/tutorials/tutorial3/include/tutorial3/options/ServerDefaultOptions.h index 0b48cfb93..f69831068 100644 --- a/tutorials/tutorial3/include/tutorial3/options/ServerDefaultOptions.h +++ b/tutorials/tutorial3/include/tutorial3/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial3/include/tutorial3/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial3/include/tutorial3/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index c79a86df1..54cf66186 100644 --- a/tutorials/tutorial3/include/tutorial3/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial3/include/tutorial3/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial4/include/tutorial4/Message.h b/tutorials/tutorial4/include/tutorial4/Message.h index 177142890..5865fecc9 100644 --- a/tutorials/tutorial4/include/tutorial4/Message.h +++ b/tutorials/tutorial4/include/tutorial4/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial4/include/tutorial4/MsgId.h b/tutorials/tutorial4/include/tutorial4/MsgId.h index 01282018a..03e0fabee 100644 --- a/tutorials/tutorial4/include/tutorial4/MsgId.h +++ b/tutorials/tutorial4/include/tutorial4/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial4/include/tutorial4/Version.h b/tutorials/tutorial4/include/tutorial4/Version.h index c560cb8f3..99078a48e 100644 --- a/tutorials/tutorial4/include/tutorial4/Version.h +++ b/tutorials/tutorial4/include/tutorial4/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial4 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial4/include/tutorial4/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial4/include/tutorial4/dispatch/DispatchClientInputMessage.h index 92c00e900..a25833d05 100644 --- a/tutorials/tutorial4/include/tutorial4/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial4/include/tutorial4/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial4/include/tutorial4/dispatch/DispatchMessage.h b/tutorials/tutorial4/include/tutorial4/dispatch/DispatchMessage.h index 6a98273bd..d30a1daf9 100644 --- a/tutorials/tutorial4/include/tutorial4/dispatch/DispatchMessage.h +++ b/tutorials/tutorial4/include/tutorial4/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial4/include/tutorial4/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial4/include/tutorial4/dispatch/DispatchServerInputMessage.h index 9e3be9797..26c64bedc 100644 --- a/tutorials/tutorial4/include/tutorial4/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial4/include/tutorial4/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial4/include/tutorial4/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial4/include/tutorial4/factory/AllMessagesDynMemMsgFactory.h index 1debe2bc1..d38a59b94 100644 --- a/tutorials/tutorial4/include/tutorial4/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial4/include/tutorial4/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial4/include/tutorial4/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial4/include/tutorial4/factory/ClientInputMessagesDynMemMsgFactory.h index 15b63657d..fc6c425f6 100644 --- a/tutorials/tutorial4/include/tutorial4/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial4/include/tutorial4/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial4/include/tutorial4/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial4/include/tutorial4/factory/ServerInputMessagesDynMemMsgFactory.h index e722d42df..f7402332c 100644 --- a/tutorials/tutorial4/include/tutorial4/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial4/include/tutorial4/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial4/include/tutorial4/field/FieldBase.h b/tutorials/tutorial4/include/tutorial4/field/FieldBase.h index 8683f280a..0ce6544e0 100644 --- a/tutorials/tutorial4/include/tutorial4/field/FieldBase.h +++ b/tutorials/tutorial4/include/tutorial4/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial4/include/tutorial4/field/KeyValueProp.h b/tutorials/tutorial4/include/tutorial4/field/KeyValueProp.h index 545debd3a..3dd5d5cec 100644 --- a/tutorials/tutorial4/include/tutorial4/field/KeyValueProp.h +++ b/tutorials/tutorial4/include/tutorial4/field/KeyValueProp.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "KeyValueProp" field. diff --git a/tutorials/tutorial4/include/tutorial4/field/KeyValuePropCommon.h b/tutorials/tutorial4/include/tutorial4/field/KeyValuePropCommon.h index 03b0f3ec5..4eda2b845 100644 --- a/tutorials/tutorial4/include/tutorial4/field/KeyValuePropCommon.h +++ b/tutorials/tutorial4/include/tutorial4/field/KeyValuePropCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial4/include/tutorial4/field/MsgId.h b/tutorials/tutorial4/include/tutorial4/field/MsgId.h index 00929b6ff..f1b4dfcfd 100644 --- a/tutorials/tutorial4/include/tutorial4/field/MsgId.h +++ b/tutorials/tutorial4/include/tutorial4/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial4/include/tutorial4/field/MsgIdCommon.h b/tutorials/tutorial4/include/tutorial4/field/MsgIdCommon.h index a31f743f8..46e0ba8fe 100644 --- a/tutorials/tutorial4/include/tutorial4/field/MsgIdCommon.h +++ b/tutorials/tutorial4/include/tutorial4/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial4/include/tutorial4/field/TlvProp.h b/tutorials/tutorial4/include/tutorial4/field/TlvProp.h index 39de60fce..ccde528e9 100644 --- a/tutorials/tutorial4/include/tutorial4/field/TlvProp.h +++ b/tutorials/tutorial4/include/tutorial4/field/TlvProp.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "TlvProp" field. diff --git a/tutorials/tutorial4/include/tutorial4/field/TlvPropCommon.h b/tutorials/tutorial4/include/tutorial4/field/TlvPropCommon.h index 319f9a319..4263bed36 100644 --- a/tutorials/tutorial4/include/tutorial4/field/TlvPropCommon.h +++ b/tutorials/tutorial4/include/tutorial4/field/TlvPropCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial4/include/tutorial4/frame/Frame.h b/tutorials/tutorial4/include/tutorial4/frame/Frame.h index 7b72b6cc2..b8639377e 100644 --- a/tutorials/tutorial4/include/tutorial4/frame/Frame.h +++ b/tutorials/tutorial4/include/tutorial4/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial4/include/tutorial4/frame/FrameCommon.h b/tutorials/tutorial4/include/tutorial4/frame/FrameCommon.h index faa9553a5..59a77b214 100644 --- a/tutorials/tutorial4/include/tutorial4/frame/FrameCommon.h +++ b/tutorials/tutorial4/include/tutorial4/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial4/include/tutorial4/input/AllMessages.h b/tutorials/tutorial4/include/tutorial4/input/AllMessages.h index ba9b9d90b..05803ddf7 100644 --- a/tutorials/tutorial4/include/tutorial4/input/AllMessages.h +++ b/tutorials/tutorial4/include/tutorial4/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial4/include/tutorial4/input/ClientInputMessages.h b/tutorials/tutorial4/include/tutorial4/input/ClientInputMessages.h index ee907596f..16889b3d0 100644 --- a/tutorials/tutorial4/include/tutorial4/input/ClientInputMessages.h +++ b/tutorials/tutorial4/include/tutorial4/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial4/include/tutorial4/input/ServerInputMessages.h b/tutorials/tutorial4/include/tutorial4/input/ServerInputMessages.h index 20b497b3f..4c96896d5 100644 --- a/tutorials/tutorial4/include/tutorial4/input/ServerInputMessages.h +++ b/tutorials/tutorial4/include/tutorial4/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial4/include/tutorial4/message/Msg1.h b/tutorials/tutorial4/include/tutorial4/message/Msg1.h index ce64b4dd5..83e3f5f6e 100644 --- a/tutorials/tutorial4/include/tutorial4/message/Msg1.h +++ b/tutorials/tutorial4/include/tutorial4/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial4/include/tutorial4/message/Msg1Common.h b/tutorials/tutorial4/include/tutorial4/message/Msg1Common.h index 1a147f98d..c5190944b 100644 --- a/tutorials/tutorial4/include/tutorial4/message/Msg1Common.h +++ b/tutorials/tutorial4/include/tutorial4/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial4/include/tutorial4/message/Msg2.h b/tutorials/tutorial4/include/tutorial4/message/Msg2.h index 73cd8dba9..7f018ea5e 100644 --- a/tutorials/tutorial4/include/tutorial4/message/Msg2.h +++ b/tutorials/tutorial4/include/tutorial4/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial4/include/tutorial4/message/Msg2Common.h b/tutorials/tutorial4/include/tutorial4/message/Msg2Common.h index 784e70067..9282da6e5 100644 --- a/tutorials/tutorial4/include/tutorial4/message/Msg2Common.h +++ b/tutorials/tutorial4/include/tutorial4/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial4/include/tutorial4/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial4/include/tutorial4/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 0ff458ad0..467729b43 100644 --- a/tutorials/tutorial4/include/tutorial4/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial4/include/tutorial4/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial4/include/tutorial4/options/BareMetalDefaultOptions.h b/tutorials/tutorial4/include/tutorial4/options/BareMetalDefaultOptions.h index 922f51583..0ec900000 100644 --- a/tutorials/tutorial4/include/tutorial4/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial4/include/tutorial4/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial4/include/tutorial4/options/ClientDefaultOptions.h b/tutorials/tutorial4/include/tutorial4/options/ClientDefaultOptions.h index c6f648b00..dbd96000a 100644 --- a/tutorials/tutorial4/include/tutorial4/options/ClientDefaultOptions.h +++ b/tutorials/tutorial4/include/tutorial4/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial4/include/tutorial4/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial4/include/tutorial4/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 4af962146..9289a6071 100644 --- a/tutorials/tutorial4/include/tutorial4/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial4/include/tutorial4/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial4/include/tutorial4/options/DataViewDefaultOptions.h b/tutorials/tutorial4/include/tutorial4/options/DataViewDefaultOptions.h index c6d229568..68a843fa9 100644 --- a/tutorials/tutorial4/include/tutorial4/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial4/include/tutorial4/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial4/include/tutorial4/options/DefaultOptions.h b/tutorials/tutorial4/include/tutorial4/options/DefaultOptions.h index 1e39bb055..d2eca21c6 100644 --- a/tutorials/tutorial4/include/tutorial4/options/DefaultOptions.h +++ b/tutorials/tutorial4/include/tutorial4/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial4/include/tutorial4/options/ServerDefaultOptions.h b/tutorials/tutorial4/include/tutorial4/options/ServerDefaultOptions.h index 357a74764..55bb47ddc 100644 --- a/tutorials/tutorial4/include/tutorial4/options/ServerDefaultOptions.h +++ b/tutorials/tutorial4/include/tutorial4/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial4/include/tutorial4/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial4/include/tutorial4/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 397040e29..e09e9f403 100644 --- a/tutorials/tutorial4/include/tutorial4/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial4/include/tutorial4/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial5/include/tutorial5/Message.h b/tutorials/tutorial5/include/tutorial5/Message.h index c88335d7f..fbdeab6e2 100644 --- a/tutorials/tutorial5/include/tutorial5/Message.h +++ b/tutorials/tutorial5/include/tutorial5/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial5/include/tutorial5/MsgId.h b/tutorials/tutorial5/include/tutorial5/MsgId.h index 70009a7e1..954c25d2e 100644 --- a/tutorials/tutorial5/include/tutorial5/MsgId.h +++ b/tutorials/tutorial5/include/tutorial5/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial5/include/tutorial5/Version.h b/tutorials/tutorial5/include/tutorial5/Version.h index aaeb1ed90..52ebe425f 100644 --- a/tutorials/tutorial5/include/tutorial5/Version.h +++ b/tutorials/tutorial5/include/tutorial5/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial5 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial5/include/tutorial5/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial5/include/tutorial5/dispatch/DispatchClientInputMessage.h index 1a49eba16..3a4e5a636 100644 --- a/tutorials/tutorial5/include/tutorial5/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial5/include/tutorial5/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial5/include/tutorial5/dispatch/DispatchMessage.h b/tutorials/tutorial5/include/tutorial5/dispatch/DispatchMessage.h index 6f52dd3ad..90bb4d34e 100644 --- a/tutorials/tutorial5/include/tutorial5/dispatch/DispatchMessage.h +++ b/tutorials/tutorial5/include/tutorial5/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial5/include/tutorial5/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial5/include/tutorial5/dispatch/DispatchServerInputMessage.h index 546e63028..4c0e4940a 100644 --- a/tutorials/tutorial5/include/tutorial5/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial5/include/tutorial5/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial5/include/tutorial5/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial5/include/tutorial5/factory/AllMessagesDynMemMsgFactory.h index f8c87c1b9..fcacc7bd0 100644 --- a/tutorials/tutorial5/include/tutorial5/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial5/include/tutorial5/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial5/include/tutorial5/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial5/include/tutorial5/factory/ClientInputMessagesDynMemMsgFactory.h index 42cb7af32..f38f36b13 100644 --- a/tutorials/tutorial5/include/tutorial5/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial5/include/tutorial5/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial5/include/tutorial5/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial5/include/tutorial5/factory/ServerInputMessagesDynMemMsgFactory.h index fc4ac83a4..ba53a46cd 100644 --- a/tutorials/tutorial5/include/tutorial5/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial5/include/tutorial5/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial5/include/tutorial5/field/FieldBase.h b/tutorials/tutorial5/include/tutorial5/field/FieldBase.h index 8bf5a7f9b..01d1b50a3 100644 --- a/tutorials/tutorial5/include/tutorial5/field/FieldBase.h +++ b/tutorials/tutorial5/include/tutorial5/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial5/include/tutorial5/field/MsgId.h b/tutorials/tutorial5/include/tutorial5/field/MsgId.h index 66e595c38..f3399d93e 100644 --- a/tutorials/tutorial5/include/tutorial5/field/MsgId.h +++ b/tutorials/tutorial5/include/tutorial5/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial5/include/tutorial5/field/MsgIdCommon.h b/tutorials/tutorial5/include/tutorial5/field/MsgIdCommon.h index a18f03cfe..2bcc04f4f 100644 --- a/tutorials/tutorial5/include/tutorial5/field/MsgIdCommon.h +++ b/tutorials/tutorial5/include/tutorial5/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial5/include/tutorial5/frame/ClientToServerFrame.h b/tutorials/tutorial5/include/tutorial5/frame/ClientToServerFrame.h index bfe4d3cde..baa5ae110 100644 --- a/tutorials/tutorial5/include/tutorial5/frame/ClientToServerFrame.h +++ b/tutorials/tutorial5/include/tutorial5/frame/ClientToServerFrame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "ClientToServerFrame" frame class. diff --git a/tutorials/tutorial5/include/tutorial5/frame/ClientToServerFrameCommon.h b/tutorials/tutorial5/include/tutorial5/frame/ClientToServerFrameCommon.h index 04a592a8c..b17ebb6a5 100644 --- a/tutorials/tutorial5/include/tutorial5/frame/ClientToServerFrameCommon.h +++ b/tutorials/tutorial5/include/tutorial5/frame/ClientToServerFrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial5/include/tutorial5/frame/ServerToClientFrame.h b/tutorials/tutorial5/include/tutorial5/frame/ServerToClientFrame.h index 04362391b..feefe465c 100644 --- a/tutorials/tutorial5/include/tutorial5/frame/ServerToClientFrame.h +++ b/tutorials/tutorial5/include/tutorial5/frame/ServerToClientFrame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "ServerToClientFrame" frame class. diff --git a/tutorials/tutorial5/include/tutorial5/frame/ServerToClientFrameCommon.h b/tutorials/tutorial5/include/tutorial5/frame/ServerToClientFrameCommon.h index bf1419c5c..b2c48da16 100644 --- a/tutorials/tutorial5/include/tutorial5/frame/ServerToClientFrameCommon.h +++ b/tutorials/tutorial5/include/tutorial5/frame/ServerToClientFrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial5/include/tutorial5/input/AllMessages.h b/tutorials/tutorial5/include/tutorial5/input/AllMessages.h index 9f5028bba..2479b46e1 100644 --- a/tutorials/tutorial5/include/tutorial5/input/AllMessages.h +++ b/tutorials/tutorial5/include/tutorial5/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial5/include/tutorial5/input/ClientInputMessages.h b/tutorials/tutorial5/include/tutorial5/input/ClientInputMessages.h index 5906c3019..e07f53302 100644 --- a/tutorials/tutorial5/include/tutorial5/input/ClientInputMessages.h +++ b/tutorials/tutorial5/include/tutorial5/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial5/include/tutorial5/input/ServerInputMessages.h b/tutorials/tutorial5/include/tutorial5/input/ServerInputMessages.h index 790cedc2d..f19c8dcd8 100644 --- a/tutorials/tutorial5/include/tutorial5/input/ServerInputMessages.h +++ b/tutorials/tutorial5/include/tutorial5/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial5/include/tutorial5/message/Msg1.h b/tutorials/tutorial5/include/tutorial5/message/Msg1.h index 8e759144d..e3cab5f63 100644 --- a/tutorials/tutorial5/include/tutorial5/message/Msg1.h +++ b/tutorials/tutorial5/include/tutorial5/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial5/include/tutorial5/message/Msg1Common.h b/tutorials/tutorial5/include/tutorial5/message/Msg1Common.h index 4cce31be1..38e168a7d 100644 --- a/tutorials/tutorial5/include/tutorial5/message/Msg1Common.h +++ b/tutorials/tutorial5/include/tutorial5/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial5/include/tutorial5/message/Msg2.h b/tutorials/tutorial5/include/tutorial5/message/Msg2.h index 9b9ad7e35..eec1df1cf 100644 --- a/tutorials/tutorial5/include/tutorial5/message/Msg2.h +++ b/tutorials/tutorial5/include/tutorial5/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial5/include/tutorial5/message/Msg2Common.h b/tutorials/tutorial5/include/tutorial5/message/Msg2Common.h index 9c88b9137..06216497e 100644 --- a/tutorials/tutorial5/include/tutorial5/message/Msg2Common.h +++ b/tutorials/tutorial5/include/tutorial5/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial5/include/tutorial5/message/Msg3.h b/tutorials/tutorial5/include/tutorial5/message/Msg3.h index a6f8e586d..d486ca339 100644 --- a/tutorials/tutorial5/include/tutorial5/message/Msg3.h +++ b/tutorials/tutorial5/include/tutorial5/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/tutorials/tutorial5/include/tutorial5/message/Msg3Common.h b/tutorials/tutorial5/include/tutorial5/message/Msg3Common.h index d7aff5db1..ef70ba9b5 100644 --- a/tutorials/tutorial5/include/tutorial5/message/Msg3Common.h +++ b/tutorials/tutorial5/include/tutorial5/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial5/include/tutorial5/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial5/include/tutorial5/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index d52c0ab1b..6369dd8f2 100644 --- a/tutorials/tutorial5/include/tutorial5/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial5/include/tutorial5/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial5/include/tutorial5/options/BareMetalDefaultOptions.h b/tutorials/tutorial5/include/tutorial5/options/BareMetalDefaultOptions.h index 93a44d955..ff3f6bc9c 100644 --- a/tutorials/tutorial5/include/tutorial5/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial5/include/tutorial5/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial5/include/tutorial5/options/ClientDefaultOptions.h b/tutorials/tutorial5/include/tutorial5/options/ClientDefaultOptions.h index bd6942972..d727ba6e5 100644 --- a/tutorials/tutorial5/include/tutorial5/options/ClientDefaultOptions.h +++ b/tutorials/tutorial5/include/tutorial5/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial5/include/tutorial5/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial5/include/tutorial5/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 9f10bbbc5..6f294d632 100644 --- a/tutorials/tutorial5/include/tutorial5/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial5/include/tutorial5/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial5/include/tutorial5/options/DataViewDefaultOptions.h b/tutorials/tutorial5/include/tutorial5/options/DataViewDefaultOptions.h index 163a80e5d..54972c5da 100644 --- a/tutorials/tutorial5/include/tutorial5/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial5/include/tutorial5/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial5/include/tutorial5/options/DefaultOptions.h b/tutorials/tutorial5/include/tutorial5/options/DefaultOptions.h index 19c7d4aee..67f8f9239 100644 --- a/tutorials/tutorial5/include/tutorial5/options/DefaultOptions.h +++ b/tutorials/tutorial5/include/tutorial5/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial5/include/tutorial5/options/ServerDefaultOptions.h b/tutorials/tutorial5/include/tutorial5/options/ServerDefaultOptions.h index 6a8c55f44..c3500109f 100644 --- a/tutorials/tutorial5/include/tutorial5/options/ServerDefaultOptions.h +++ b/tutorials/tutorial5/include/tutorial5/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial5/include/tutorial5/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial5/include/tutorial5/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 036b73691..eeec012ac 100644 --- a/tutorials/tutorial5/include/tutorial5/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial5/include/tutorial5/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial6/include/tutorial6/Message.h b/tutorials/tutorial6/include/tutorial6/Message.h index 45c5f9869..9c517066e 100644 --- a/tutorials/tutorial6/include/tutorial6/Message.h +++ b/tutorials/tutorial6/include/tutorial6/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial6/include/tutorial6/MsgId.h b/tutorials/tutorial6/include/tutorial6/MsgId.h index 5c44bf9d2..c4ef63adb 100644 --- a/tutorials/tutorial6/include/tutorial6/MsgId.h +++ b/tutorials/tutorial6/include/tutorial6/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial6/include/tutorial6/Version.h b/tutorials/tutorial6/include/tutorial6/Version.h index 7a6ff8089..76fd2253b 100644 --- a/tutorials/tutorial6/include/tutorial6/Version.h +++ b/tutorials/tutorial6/include/tutorial6/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial6 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial6/include/tutorial6/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial6/include/tutorial6/dispatch/DispatchClientInputMessage.h index 5c571bae4..1ebec6314 100644 --- a/tutorials/tutorial6/include/tutorial6/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial6/include/tutorial6/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial6/include/tutorial6/dispatch/DispatchMessage.h b/tutorials/tutorial6/include/tutorial6/dispatch/DispatchMessage.h index a6eb14206..0c8677122 100644 --- a/tutorials/tutorial6/include/tutorial6/dispatch/DispatchMessage.h +++ b/tutorials/tutorial6/include/tutorial6/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial6/include/tutorial6/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial6/include/tutorial6/dispatch/DispatchServerInputMessage.h index d0d7eca7e..2ca2304e2 100644 --- a/tutorials/tutorial6/include/tutorial6/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial6/include/tutorial6/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial6/include/tutorial6/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial6/include/tutorial6/factory/AllMessagesDynMemMsgFactory.h index f8701a408..5e2f503c1 100644 --- a/tutorials/tutorial6/include/tutorial6/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial6/include/tutorial6/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial6/include/tutorial6/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial6/include/tutorial6/factory/ClientInputMessagesDynMemMsgFactory.h index ffa0fe365..d473a7f41 100644 --- a/tutorials/tutorial6/include/tutorial6/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial6/include/tutorial6/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial6/include/tutorial6/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial6/include/tutorial6/factory/ServerInputMessagesDynMemMsgFactory.h index 2e6d3cb8c..3ec788618 100644 --- a/tutorials/tutorial6/include/tutorial6/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial6/include/tutorial6/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial6/include/tutorial6/field/FieldBase.h b/tutorials/tutorial6/include/tutorial6/field/FieldBase.h index 046abd51a..75622667e 100644 --- a/tutorials/tutorial6/include/tutorial6/field/FieldBase.h +++ b/tutorials/tutorial6/include/tutorial6/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial6/include/tutorial6/field/MsgId.h b/tutorials/tutorial6/include/tutorial6/field/MsgId.h index 6c0bd4652..944ebe7b0 100644 --- a/tutorials/tutorial6/include/tutorial6/field/MsgId.h +++ b/tutorials/tutorial6/include/tutorial6/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial6/include/tutorial6/field/MsgIdCommon.h b/tutorials/tutorial6/include/tutorial6/field/MsgIdCommon.h index 2c5a065fa..ac2865074 100644 --- a/tutorials/tutorial6/include/tutorial6/field/MsgIdCommon.h +++ b/tutorials/tutorial6/include/tutorial6/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial6/include/tutorial6/frame/Frame.h b/tutorials/tutorial6/include/tutorial6/frame/Frame.h index 84cb7da16..55742abfe 100644 --- a/tutorials/tutorial6/include/tutorial6/frame/Frame.h +++ b/tutorials/tutorial6/include/tutorial6/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial6/include/tutorial6/frame/FrameCommon.h b/tutorials/tutorial6/include/tutorial6/frame/FrameCommon.h index de4f3ec8d..4c75b9902 100644 --- a/tutorials/tutorial6/include/tutorial6/frame/FrameCommon.h +++ b/tutorials/tutorial6/include/tutorial6/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial6/include/tutorial6/input/AllMessages.h b/tutorials/tutorial6/include/tutorial6/input/AllMessages.h index 1d482d4e8..8b8e07e80 100644 --- a/tutorials/tutorial6/include/tutorial6/input/AllMessages.h +++ b/tutorials/tutorial6/include/tutorial6/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial6/include/tutorial6/input/ClientInputMessages.h b/tutorials/tutorial6/include/tutorial6/input/ClientInputMessages.h index 4410bc40d..c331da489 100644 --- a/tutorials/tutorial6/include/tutorial6/input/ClientInputMessages.h +++ b/tutorials/tutorial6/include/tutorial6/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial6/include/tutorial6/input/ServerInputMessages.h b/tutorials/tutorial6/include/tutorial6/input/ServerInputMessages.h index 909701cb3..8b2b12921 100644 --- a/tutorials/tutorial6/include/tutorial6/input/ServerInputMessages.h +++ b/tutorials/tutorial6/include/tutorial6/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial6/include/tutorial6/message/Msg1.h b/tutorials/tutorial6/include/tutorial6/message/Msg1.h index 9b481804b..c11cdcd4e 100644 --- a/tutorials/tutorial6/include/tutorial6/message/Msg1.h +++ b/tutorials/tutorial6/include/tutorial6/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial6/include/tutorial6/message/Msg1Common.h b/tutorials/tutorial6/include/tutorial6/message/Msg1Common.h index bdb06e38f..81410d6d9 100644 --- a/tutorials/tutorial6/include/tutorial6/message/Msg1Common.h +++ b/tutorials/tutorial6/include/tutorial6/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial6/include/tutorial6/message/Msg2.h b/tutorials/tutorial6/include/tutorial6/message/Msg2.h index 27f4cd330..43aa268ef 100644 --- a/tutorials/tutorial6/include/tutorial6/message/Msg2.h +++ b/tutorials/tutorial6/include/tutorial6/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial6/include/tutorial6/message/Msg2Common.h b/tutorials/tutorial6/include/tutorial6/message/Msg2Common.h index d89a27844..c0e20ba77 100644 --- a/tutorials/tutorial6/include/tutorial6/message/Msg2Common.h +++ b/tutorials/tutorial6/include/tutorial6/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial6/include/tutorial6/message/Msg3.h b/tutorials/tutorial6/include/tutorial6/message/Msg3.h index c79846a98..14ed5db31 100644 --- a/tutorials/tutorial6/include/tutorial6/message/Msg3.h +++ b/tutorials/tutorial6/include/tutorial6/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/tutorials/tutorial6/include/tutorial6/message/Msg3Common.h b/tutorials/tutorial6/include/tutorial6/message/Msg3Common.h index ee8317fe7..bb42521cc 100644 --- a/tutorials/tutorial6/include/tutorial6/message/Msg3Common.h +++ b/tutorials/tutorial6/include/tutorial6/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial6/include/tutorial6/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial6/include/tutorial6/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index abbeeccf6..f248cb98f 100644 --- a/tutorials/tutorial6/include/tutorial6/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial6/include/tutorial6/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial6/include/tutorial6/options/BareMetalDefaultOptions.h b/tutorials/tutorial6/include/tutorial6/options/BareMetalDefaultOptions.h index 1fc4f8f6b..a634d6753 100644 --- a/tutorials/tutorial6/include/tutorial6/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial6/include/tutorial6/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial6/include/tutorial6/options/ClientDefaultOptions.h b/tutorials/tutorial6/include/tutorial6/options/ClientDefaultOptions.h index 8abee40d1..d60c18616 100644 --- a/tutorials/tutorial6/include/tutorial6/options/ClientDefaultOptions.h +++ b/tutorials/tutorial6/include/tutorial6/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial6/include/tutorial6/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial6/include/tutorial6/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index 5fc77f3de..4580bc491 100644 --- a/tutorials/tutorial6/include/tutorial6/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial6/include/tutorial6/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial6/include/tutorial6/options/DataViewDefaultOptions.h b/tutorials/tutorial6/include/tutorial6/options/DataViewDefaultOptions.h index 24ad999e6..e240df9e3 100644 --- a/tutorials/tutorial6/include/tutorial6/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial6/include/tutorial6/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial6/include/tutorial6/options/DefaultOptions.h b/tutorials/tutorial6/include/tutorial6/options/DefaultOptions.h index c7c801508..75947c6b2 100644 --- a/tutorials/tutorial6/include/tutorial6/options/DefaultOptions.h +++ b/tutorials/tutorial6/include/tutorial6/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial6/include/tutorial6/options/ServerDefaultOptions.h b/tutorials/tutorial6/include/tutorial6/options/ServerDefaultOptions.h index f01f02273..f18f1091d 100644 --- a/tutorials/tutorial6/include/tutorial6/options/ServerDefaultOptions.h +++ b/tutorials/tutorial6/include/tutorial6/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial6/include/tutorial6/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial6/include/tutorial6/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index e3d2a931c..fb8228490 100644 --- a/tutorials/tutorial6/include/tutorial6/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial6/include/tutorial6/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial7/include/tutorial7/Message.h b/tutorials/tutorial7/include/tutorial7/Message.h index a59966390..9b1ae939c 100644 --- a/tutorials/tutorial7/include/tutorial7/Message.h +++ b/tutorials/tutorial7/include/tutorial7/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial7/include/tutorial7/MsgId.h b/tutorials/tutorial7/include/tutorial7/MsgId.h index 83cc52cb5..2f6c42689 100644 --- a/tutorials/tutorial7/include/tutorial7/MsgId.h +++ b/tutorials/tutorial7/include/tutorial7/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial7/include/tutorial7/Version.h b/tutorials/tutorial7/include/tutorial7/Version.h index f046072c3..e891ff799 100644 --- a/tutorials/tutorial7/include/tutorial7/Version.h +++ b/tutorials/tutorial7/include/tutorial7/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial7 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial7/include/tutorial7/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial7/include/tutorial7/dispatch/DispatchClientInputMessage.h index d0de96174..ac63aa453 100644 --- a/tutorials/tutorial7/include/tutorial7/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial7/include/tutorial7/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial7/include/tutorial7/dispatch/DispatchMessage.h b/tutorials/tutorial7/include/tutorial7/dispatch/DispatchMessage.h index e3f4d04ec..bfc630cdf 100644 --- a/tutorials/tutorial7/include/tutorial7/dispatch/DispatchMessage.h +++ b/tutorials/tutorial7/include/tutorial7/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial7/include/tutorial7/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial7/include/tutorial7/dispatch/DispatchServerInputMessage.h index 0ee1861e2..f1f8a493c 100644 --- a/tutorials/tutorial7/include/tutorial7/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial7/include/tutorial7/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial7/include/tutorial7/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial7/include/tutorial7/factory/AllMessagesDynMemMsgFactory.h index 004a55cf1..6f7b16478 100644 --- a/tutorials/tutorial7/include/tutorial7/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial7/include/tutorial7/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial7/include/tutorial7/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial7/include/tutorial7/factory/ClientInputMessagesDynMemMsgFactory.h index 8fd1b9147..07e5c6cb7 100644 --- a/tutorials/tutorial7/include/tutorial7/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial7/include/tutorial7/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial7/include/tutorial7/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial7/include/tutorial7/factory/ServerInputMessagesDynMemMsgFactory.h index 9d79f1492..e5631ca8a 100644 --- a/tutorials/tutorial7/include/tutorial7/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial7/include/tutorial7/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial7/include/tutorial7/field/FieldBase.h b/tutorials/tutorial7/include/tutorial7/field/FieldBase.h index d83ab8d86..50d291530 100644 --- a/tutorials/tutorial7/include/tutorial7/field/FieldBase.h +++ b/tutorials/tutorial7/include/tutorial7/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial7/include/tutorial7/field/MsgId.h b/tutorials/tutorial7/include/tutorial7/field/MsgId.h index ab4d36203..b1b04b21b 100644 --- a/tutorials/tutorial7/include/tutorial7/field/MsgId.h +++ b/tutorials/tutorial7/include/tutorial7/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial7/include/tutorial7/field/MsgIdCommon.h b/tutorials/tutorial7/include/tutorial7/field/MsgIdCommon.h index 35f9801c7..f24af2a34 100644 --- a/tutorials/tutorial7/include/tutorial7/field/MsgIdCommon.h +++ b/tutorials/tutorial7/include/tutorial7/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial7/include/tutorial7/frame/Frame.h b/tutorials/tutorial7/include/tutorial7/frame/Frame.h index 4ddd7dc92..6bf80f539 100644 --- a/tutorials/tutorial7/include/tutorial7/frame/Frame.h +++ b/tutorials/tutorial7/include/tutorial7/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial7/include/tutorial7/frame/FrameCommon.h b/tutorials/tutorial7/include/tutorial7/frame/FrameCommon.h index f282d6600..53ee3bcd3 100644 --- a/tutorials/tutorial7/include/tutorial7/frame/FrameCommon.h +++ b/tutorials/tutorial7/include/tutorial7/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial7/include/tutorial7/input/AllMessages.h b/tutorials/tutorial7/include/tutorial7/input/AllMessages.h index db937dc8c..8407247e3 100644 --- a/tutorials/tutorial7/include/tutorial7/input/AllMessages.h +++ b/tutorials/tutorial7/include/tutorial7/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial7/include/tutorial7/input/ClientInputMessages.h b/tutorials/tutorial7/include/tutorial7/input/ClientInputMessages.h index 7da76fbba..e074e405d 100644 --- a/tutorials/tutorial7/include/tutorial7/input/ClientInputMessages.h +++ b/tutorials/tutorial7/include/tutorial7/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial7/include/tutorial7/input/ServerInputMessages.h b/tutorials/tutorial7/include/tutorial7/input/ServerInputMessages.h index 9dd974d58..176925071 100644 --- a/tutorials/tutorial7/include/tutorial7/input/ServerInputMessages.h +++ b/tutorials/tutorial7/include/tutorial7/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial7/include/tutorial7/message/Msg1.h b/tutorials/tutorial7/include/tutorial7/message/Msg1.h index b8d20624a..7657e8e29 100644 --- a/tutorials/tutorial7/include/tutorial7/message/Msg1.h +++ b/tutorials/tutorial7/include/tutorial7/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial7/include/tutorial7/message/Msg1Common.h b/tutorials/tutorial7/include/tutorial7/message/Msg1Common.h index 81a84297b..43b4fd080 100644 --- a/tutorials/tutorial7/include/tutorial7/message/Msg1Common.h +++ b/tutorials/tutorial7/include/tutorial7/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial7/include/tutorial7/message/Msg2.h b/tutorials/tutorial7/include/tutorial7/message/Msg2.h index e1154d21d..ad9e015dd 100644 --- a/tutorials/tutorial7/include/tutorial7/message/Msg2.h +++ b/tutorials/tutorial7/include/tutorial7/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial7/include/tutorial7/message/Msg2Common.h b/tutorials/tutorial7/include/tutorial7/message/Msg2Common.h index b78cba16b..f0b56b855 100644 --- a/tutorials/tutorial7/include/tutorial7/message/Msg2Common.h +++ b/tutorials/tutorial7/include/tutorial7/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial7/include/tutorial7/message/Msg3.h b/tutorials/tutorial7/include/tutorial7/message/Msg3.h index b716941ad..5c7d1307c 100644 --- a/tutorials/tutorial7/include/tutorial7/message/Msg3.h +++ b/tutorials/tutorial7/include/tutorial7/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/tutorials/tutorial7/include/tutorial7/message/Msg3Common.h b/tutorials/tutorial7/include/tutorial7/message/Msg3Common.h index e2dad5b5f..00639c5df 100644 --- a/tutorials/tutorial7/include/tutorial7/message/Msg3Common.h +++ b/tutorials/tutorial7/include/tutorial7/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial7/include/tutorial7/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial7/include/tutorial7/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 967a8d028..92d8a6e5d 100644 --- a/tutorials/tutorial7/include/tutorial7/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial7/include/tutorial7/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial7/include/tutorial7/options/BareMetalDefaultOptions.h b/tutorials/tutorial7/include/tutorial7/options/BareMetalDefaultOptions.h index 519f90ceb..2aa41e807 100644 --- a/tutorials/tutorial7/include/tutorial7/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial7/include/tutorial7/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial7/include/tutorial7/options/ClientDefaultOptions.h b/tutorials/tutorial7/include/tutorial7/options/ClientDefaultOptions.h index c7a7a7922..ee937543b 100644 --- a/tutorials/tutorial7/include/tutorial7/options/ClientDefaultOptions.h +++ b/tutorials/tutorial7/include/tutorial7/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial7/include/tutorial7/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial7/include/tutorial7/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index f940a308d..1a69e1738 100644 --- a/tutorials/tutorial7/include/tutorial7/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial7/include/tutorial7/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial7/include/tutorial7/options/DataViewDefaultOptions.h b/tutorials/tutorial7/include/tutorial7/options/DataViewDefaultOptions.h index 809d9714f..eca21ae2c 100644 --- a/tutorials/tutorial7/include/tutorial7/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial7/include/tutorial7/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial7/include/tutorial7/options/DefaultOptions.h b/tutorials/tutorial7/include/tutorial7/options/DefaultOptions.h index b152b0f70..ffdd15092 100644 --- a/tutorials/tutorial7/include/tutorial7/options/DefaultOptions.h +++ b/tutorials/tutorial7/include/tutorial7/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial7/include/tutorial7/options/ServerDefaultOptions.h b/tutorials/tutorial7/include/tutorial7/options/ServerDefaultOptions.h index 016e9fc50..fdc4a6483 100644 --- a/tutorials/tutorial7/include/tutorial7/options/ServerDefaultOptions.h +++ b/tutorials/tutorial7/include/tutorial7/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial7/include/tutorial7/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial7/include/tutorial7/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index ad3f9661c..0218a28f4 100644 --- a/tutorials/tutorial7/include/tutorial7/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial7/include/tutorial7/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial8/include/tutorial8/Message.h b/tutorials/tutorial8/include/tutorial8/Message.h index bb4d63fba..f878b68d9 100644 --- a/tutorials/tutorial8/include/tutorial8/Message.h +++ b/tutorials/tutorial8/include/tutorial8/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial8/include/tutorial8/MsgId.h b/tutorials/tutorial8/include/tutorial8/MsgId.h index 6a236b5bd..9360ab6be 100644 --- a/tutorials/tutorial8/include/tutorial8/MsgId.h +++ b/tutorials/tutorial8/include/tutorial8/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial8/include/tutorial8/Version.h b/tutorials/tutorial8/include/tutorial8/Version.h index 1fa069f51..b89677057 100644 --- a/tutorials/tutorial8/include/tutorial8/Version.h +++ b/tutorials/tutorial8/include/tutorial8/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial8 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial8/include/tutorial8/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial8/include/tutorial8/dispatch/DispatchClientInputMessage.h index b9b68003a..07b4ffed7 100644 --- a/tutorials/tutorial8/include/tutorial8/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial8/include/tutorial8/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial8/include/tutorial8/dispatch/DispatchMessage.h b/tutorials/tutorial8/include/tutorial8/dispatch/DispatchMessage.h index 67b065fe9..3bbda430f 100644 --- a/tutorials/tutorial8/include/tutorial8/dispatch/DispatchMessage.h +++ b/tutorials/tutorial8/include/tutorial8/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial8/include/tutorial8/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial8/include/tutorial8/dispatch/DispatchServerInputMessage.h index c71efcb8b..0e42fb71a 100644 --- a/tutorials/tutorial8/include/tutorial8/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial8/include/tutorial8/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial8/include/tutorial8/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial8/include/tutorial8/factory/AllMessagesDynMemMsgFactory.h index f3d2dab4d..fd1985ca3 100644 --- a/tutorials/tutorial8/include/tutorial8/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial8/include/tutorial8/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial8/include/tutorial8/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial8/include/tutorial8/factory/ClientInputMessagesDynMemMsgFactory.h index 3e05c36b9..d3cb4294e 100644 --- a/tutorials/tutorial8/include/tutorial8/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial8/include/tutorial8/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial8/include/tutorial8/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial8/include/tutorial8/factory/ServerInputMessagesDynMemMsgFactory.h index 0dbbf553d..248463d02 100644 --- a/tutorials/tutorial8/include/tutorial8/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial8/include/tutorial8/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial8/include/tutorial8/field/FieldBase.h b/tutorials/tutorial8/include/tutorial8/field/FieldBase.h index 5b526092b..a29d234f3 100644 --- a/tutorials/tutorial8/include/tutorial8/field/FieldBase.h +++ b/tutorials/tutorial8/include/tutorial8/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial8/include/tutorial8/field/MsgId.h b/tutorials/tutorial8/include/tutorial8/field/MsgId.h index 58dfc633d..3ec795af5 100644 --- a/tutorials/tutorial8/include/tutorial8/field/MsgId.h +++ b/tutorials/tutorial8/include/tutorial8/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial8/include/tutorial8/field/MsgIdCommon.h b/tutorials/tutorial8/include/tutorial8/field/MsgIdCommon.h index 596ebae15..a5d7431b8 100644 --- a/tutorials/tutorial8/include/tutorial8/field/MsgIdCommon.h +++ b/tutorials/tutorial8/include/tutorial8/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial8/include/tutorial8/frame/Frame.h b/tutorials/tutorial8/include/tutorial8/frame/Frame.h index bcca5b036..bf6980014 100644 --- a/tutorials/tutorial8/include/tutorial8/frame/Frame.h +++ b/tutorials/tutorial8/include/tutorial8/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial8/include/tutorial8/frame/FrameCommon.h b/tutorials/tutorial8/include/tutorial8/frame/FrameCommon.h index e19bdebe3..fb0476da4 100644 --- a/tutorials/tutorial8/include/tutorial8/frame/FrameCommon.h +++ b/tutorials/tutorial8/include/tutorial8/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial8/include/tutorial8/input/AllMessages.h b/tutorials/tutorial8/include/tutorial8/input/AllMessages.h index 35492fc30..23e222fec 100644 --- a/tutorials/tutorial8/include/tutorial8/input/AllMessages.h +++ b/tutorials/tutorial8/include/tutorial8/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial8/include/tutorial8/input/ClientInputMessages.h b/tutorials/tutorial8/include/tutorial8/input/ClientInputMessages.h index 68a372feb..643416119 100644 --- a/tutorials/tutorial8/include/tutorial8/input/ClientInputMessages.h +++ b/tutorials/tutorial8/include/tutorial8/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial8/include/tutorial8/input/ServerInputMessages.h b/tutorials/tutorial8/include/tutorial8/input/ServerInputMessages.h index 70ba81866..4e038f885 100644 --- a/tutorials/tutorial8/include/tutorial8/input/ServerInputMessages.h +++ b/tutorials/tutorial8/include/tutorial8/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial8/include/tutorial8/message/Msg1.h b/tutorials/tutorial8/include/tutorial8/message/Msg1.h index 74a734290..7e4d609bb 100644 --- a/tutorials/tutorial8/include/tutorial8/message/Msg1.h +++ b/tutorials/tutorial8/include/tutorial8/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial8/include/tutorial8/message/Msg1Common.h b/tutorials/tutorial8/include/tutorial8/message/Msg1Common.h index c3fc01330..9966f1541 100644 --- a/tutorials/tutorial8/include/tutorial8/message/Msg1Common.h +++ b/tutorials/tutorial8/include/tutorial8/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial8/include/tutorial8/message/Msg2.h b/tutorials/tutorial8/include/tutorial8/message/Msg2.h index dd89156d2..ed70d2f72 100644 --- a/tutorials/tutorial8/include/tutorial8/message/Msg2.h +++ b/tutorials/tutorial8/include/tutorial8/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial8/include/tutorial8/message/Msg2Common.h b/tutorials/tutorial8/include/tutorial8/message/Msg2Common.h index 206703651..c56d661ce 100644 --- a/tutorials/tutorial8/include/tutorial8/message/Msg2Common.h +++ b/tutorials/tutorial8/include/tutorial8/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial8/include/tutorial8/message/Msg3.h b/tutorials/tutorial8/include/tutorial8/message/Msg3.h index 2cceaaa9c..93c67f954 100644 --- a/tutorials/tutorial8/include/tutorial8/message/Msg3.h +++ b/tutorials/tutorial8/include/tutorial8/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/tutorials/tutorial8/include/tutorial8/message/Msg3Common.h b/tutorials/tutorial8/include/tutorial8/message/Msg3Common.h index 62f063d5b..60339eec1 100644 --- a/tutorials/tutorial8/include/tutorial8/message/Msg3Common.h +++ b/tutorials/tutorial8/include/tutorial8/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial8/include/tutorial8/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial8/include/tutorial8/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 2c45b4443..5b187dc34 100644 --- a/tutorials/tutorial8/include/tutorial8/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial8/include/tutorial8/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial8/include/tutorial8/options/BareMetalDefaultOptions.h b/tutorials/tutorial8/include/tutorial8/options/BareMetalDefaultOptions.h index 982c31c69..3e40037ce 100644 --- a/tutorials/tutorial8/include/tutorial8/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial8/include/tutorial8/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial8/include/tutorial8/options/ClientDefaultOptions.h b/tutorials/tutorial8/include/tutorial8/options/ClientDefaultOptions.h index 97be559a7..0d3c6f7d8 100644 --- a/tutorials/tutorial8/include/tutorial8/options/ClientDefaultOptions.h +++ b/tutorials/tutorial8/include/tutorial8/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial8/include/tutorial8/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial8/include/tutorial8/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index b7b0db7ec..d25085908 100644 --- a/tutorials/tutorial8/include/tutorial8/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial8/include/tutorial8/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial8/include/tutorial8/options/DataViewDefaultOptions.h b/tutorials/tutorial8/include/tutorial8/options/DataViewDefaultOptions.h index 7a120d6e7..ac67a6c8c 100644 --- a/tutorials/tutorial8/include/tutorial8/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial8/include/tutorial8/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial8/include/tutorial8/options/DefaultOptions.h b/tutorials/tutorial8/include/tutorial8/options/DefaultOptions.h index fb650f6e9..1f4125fe6 100644 --- a/tutorials/tutorial8/include/tutorial8/options/DefaultOptions.h +++ b/tutorials/tutorial8/include/tutorial8/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial8/include/tutorial8/options/ServerDefaultOptions.h b/tutorials/tutorial8/include/tutorial8/options/ServerDefaultOptions.h index 558fc5dda..9b2b14b92 100644 --- a/tutorials/tutorial8/include/tutorial8/options/ServerDefaultOptions.h +++ b/tutorials/tutorial8/include/tutorial8/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial8/include/tutorial8/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial8/include/tutorial8/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 1fd798e33..94fc2a012 100644 --- a/tutorials/tutorial8/include/tutorial8/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial8/include/tutorial8/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial9/include/tutorial9/Message.h b/tutorials/tutorial9/include/tutorial9/Message.h index 68a44125e..bfd8c99a4 100644 --- a/tutorials/tutorial9/include/tutorial9/Message.h +++ b/tutorials/tutorial9/include/tutorial9/Message.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message" interface class. diff --git a/tutorials/tutorial9/include/tutorial9/MsgId.h b/tutorials/tutorial9/include/tutorial9/MsgId.h index 8ad3b9efa..718127f73 100644 --- a/tutorials/tutorial9/include/tutorial9/MsgId.h +++ b/tutorials/tutorial9/include/tutorial9/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of message ids enumeration. diff --git a/tutorials/tutorial9/include/tutorial9/Version.h b/tutorials/tutorial9/include/tutorial9/Version.h index 20e867c5e..5f4bd96dd 100644 --- a/tutorials/tutorial9/include/tutorial9/Version.h +++ b/tutorials/tutorial9/include/tutorial9/Version.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains protocol version definition. @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion() } // namespace tutorial9 // Generated compile time check for minimal supported version of the COMMS library -static_assert(COMMS_MAKE_VERSION(5, 2, 5) <= comms::version(), +static_assert(COMMS_MAKE_VERSION(5, 2, 7) <= comms::version(), "The version of COMMS library is too old"); diff --git a/tutorials/tutorial9/include/tutorial9/dispatch/DispatchClientInputMessage.h b/tutorials/tutorial9/include/tutorial9/dispatch/DispatchClientInputMessage.h index 69b121eb7..b2e3d8d2b 100644 --- a/tutorials/tutorial9/include/tutorial9/dispatch/DispatchClientInputMessage.h +++ b/tutorials/tutorial9/include/tutorial9/dispatch/DispatchClientInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial9/include/tutorial9/dispatch/DispatchMessage.h b/tutorials/tutorial9/include/tutorial9/dispatch/DispatchMessage.h index 6885f5991..334d49225 100644 --- a/tutorials/tutorial9/include/tutorial9/dispatch/DispatchMessage.h +++ b/tutorials/tutorial9/include/tutorial9/dispatch/DispatchMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for all input messages. diff --git a/tutorials/tutorial9/include/tutorial9/dispatch/DispatchServerInputMessage.h b/tutorials/tutorial9/include/tutorial9/dispatch/DispatchServerInputMessage.h index 709cc3f77..f23f81f57 100644 --- a/tutorials/tutorial9/include/tutorial9/dispatch/DispatchServerInputMessage.h +++ b/tutorials/tutorial9/include/tutorial9/dispatch/DispatchServerInputMessage.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains dispatch to handling function(s) for client input input messages. diff --git a/tutorials/tutorial9/include/tutorial9/factory/AllMessagesDynMemMsgFactory.h b/tutorials/tutorial9/include/tutorial9/factory/AllMessagesDynMemMsgFactory.h index e276005e0..ea3ff91ca 100644 --- a/tutorials/tutorial9/include/tutorial9/factory/AllMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial9/include/tutorial9/factory/AllMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for all the messages. diff --git a/tutorials/tutorial9/include/tutorial9/factory/ClientInputMessagesDynMemMsgFactory.h b/tutorials/tutorial9/include/tutorial9/factory/ClientInputMessagesDynMemMsgFactory.h index 1730e6879..a0e80e167 100644 --- a/tutorials/tutorial9/include/tutorial9/factory/ClientInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial9/include/tutorial9/factory/ClientInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the client input messages. diff --git a/tutorials/tutorial9/include/tutorial9/factory/ServerInputMessagesDynMemMsgFactory.h b/tutorials/tutorial9/include/tutorial9/factory/ServerInputMessagesDynMemMsgFactory.h index 5d6fda02b..fa1f67fba 100644 --- a/tutorials/tutorial9/include/tutorial9/factory/ServerInputMessagesDynMemMsgFactory.h +++ b/tutorials/tutorial9/include/tutorial9/factory/ServerInputMessagesDynMemMsgFactory.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains message factory with dynamic memory allocation for the server input messages. diff --git a/tutorials/tutorial9/include/tutorial9/field/FieldBase.h b/tutorials/tutorial9/include/tutorial9/field/FieldBase.h index e8260c628..f3c280098 100644 --- a/tutorials/tutorial9/include/tutorial9/field/FieldBase.h +++ b/tutorials/tutorial9/include/tutorial9/field/FieldBase.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of base class of all the fields. diff --git a/tutorials/tutorial9/include/tutorial9/field/MsgId.h b/tutorials/tutorial9/include/tutorial9/field/MsgId.h index bbcd79db1..c7c3b2ff9 100644 --- a/tutorials/tutorial9/include/tutorial9/field/MsgId.h +++ b/tutorials/tutorial9/include/tutorial9/field/MsgId.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "MsgId" field. diff --git a/tutorials/tutorial9/include/tutorial9/field/MsgIdCommon.h b/tutorials/tutorial9/include/tutorial9/field/MsgIdCommon.h index 81ccc2ee1..4be02128b 100644 --- a/tutorials/tutorial9/include/tutorial9/field/MsgIdCommon.h +++ b/tutorials/tutorial9/include/tutorial9/field/MsgIdCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial9/include/tutorial9/frame/Frame.h b/tutorials/tutorial9/include/tutorial9/frame/Frame.h index 90353d572..b590c296c 100644 --- a/tutorials/tutorial9/include/tutorial9/frame/Frame.h +++ b/tutorials/tutorial9/include/tutorial9/frame/Frame.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Frame" frame class. diff --git a/tutorials/tutorial9/include/tutorial9/frame/FrameCommon.h b/tutorials/tutorial9/include/tutorial9/frame/FrameCommon.h index 6bfe29f84..a500d2ddc 100644 --- a/tutorials/tutorial9/include/tutorial9/frame/FrameCommon.h +++ b/tutorials/tutorial9/include/tutorial9/frame/FrameCommon.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial9/include/tutorial9/input/AllMessages.h b/tutorials/tutorial9/include/tutorial9/input/AllMessages.h index d7dabf25a..185fb5e6b 100644 --- a/tutorials/tutorial9/include/tutorial9/input/AllMessages.h +++ b/tutorials/tutorial9/include/tutorial9/input/AllMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the AllMessages messages bundle. diff --git a/tutorials/tutorial9/include/tutorial9/input/ClientInputMessages.h b/tutorials/tutorial9/include/tutorial9/input/ClientInputMessages.h index 6b7f9392a..c7a07570d 100644 --- a/tutorials/tutorial9/include/tutorial9/input/ClientInputMessages.h +++ b/tutorials/tutorial9/include/tutorial9/input/ClientInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ClientInputMessages messages bundle. diff --git a/tutorials/tutorial9/include/tutorial9/input/ServerInputMessages.h b/tutorials/tutorial9/include/tutorial9/input/ServerInputMessages.h index e77b983e9..e72183fb1 100644 --- a/tutorials/tutorial9/include/tutorial9/input/ServerInputMessages.h +++ b/tutorials/tutorial9/include/tutorial9/input/ServerInputMessages.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of the ServerInputMessages messages bundle. diff --git a/tutorials/tutorial9/include/tutorial9/message/Msg1.h b/tutorials/tutorial9/include/tutorial9/message/Msg1.h index e85a5a4c4..d762e7c73 100644 --- a/tutorials/tutorial9/include/tutorial9/message/Msg1.h +++ b/tutorials/tutorial9/include/tutorial9/message/Msg1.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 1" message and its fields. diff --git a/tutorials/tutorial9/include/tutorial9/message/Msg1Common.h b/tutorials/tutorial9/include/tutorial9/message/Msg1Common.h index e0f0eb254..ae82b26c9 100644 --- a/tutorials/tutorial9/include/tutorial9/message/Msg1Common.h +++ b/tutorials/tutorial9/include/tutorial9/message/Msg1Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial9/include/tutorial9/message/Msg2.h b/tutorials/tutorial9/include/tutorial9/message/Msg2.h index 6bb2f31e7..e679f87f4 100644 --- a/tutorials/tutorial9/include/tutorial9/message/Msg2.h +++ b/tutorials/tutorial9/include/tutorial9/message/Msg2.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 2" message and its fields. diff --git a/tutorials/tutorial9/include/tutorial9/message/Msg2Common.h b/tutorials/tutorial9/include/tutorial9/message/Msg2Common.h index fd11f30cd..20ab31e0c 100644 --- a/tutorials/tutorial9/include/tutorial9/message/Msg2Common.h +++ b/tutorials/tutorial9/include/tutorial9/message/Msg2Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial9/include/tutorial9/message/Msg3.h b/tutorials/tutorial9/include/tutorial9/message/Msg3.h index 77371a644..b42f913a3 100644 --- a/tutorials/tutorial9/include/tutorial9/message/Msg3.h +++ b/tutorials/tutorial9/include/tutorial9/message/Msg3.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 3" message and its fields. diff --git a/tutorials/tutorial9/include/tutorial9/message/Msg3Common.h b/tutorials/tutorial9/include/tutorial9/message/Msg3Common.h index dce354505..e27a21e49 100644 --- a/tutorials/tutorial9/include/tutorial9/message/Msg3Common.h +++ b/tutorials/tutorial9/include/tutorial9/message/Msg3Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial9/include/tutorial9/message/Msg4.h b/tutorials/tutorial9/include/tutorial9/message/Msg4.h index 913910242..4ebd7bcb5 100644 --- a/tutorials/tutorial9/include/tutorial9/message/Msg4.h +++ b/tutorials/tutorial9/include/tutorial9/message/Msg4.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of "Message 4" message and its fields. diff --git a/tutorials/tutorial9/include/tutorial9/message/Msg4Common.h b/tutorials/tutorial9/include/tutorial9/message/Msg4Common.h index acf126418..1155eb38c 100644 --- a/tutorials/tutorial9/include/tutorial9/message/Msg4Common.h +++ b/tutorials/tutorial9/include/tutorial9/message/Msg4Common.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains common template parameters independent functionality of diff --git a/tutorials/tutorial9/include/tutorial9/options/AllMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial9/include/tutorial9/options/AllMessagesDynMemMsgFactoryDefaultOptions.h index 89fe022f5..1a10062b6 100644 --- a/tutorials/tutorial9/include/tutorial9/options/AllMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial9/include/tutorial9/options/AllMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol all messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial9/include/tutorial9/options/BareMetalDefaultOptions.h b/tutorials/tutorial9/include/tutorial9/options/BareMetalDefaultOptions.h index 1dedf4ae1..36fe8a175 100644 --- a/tutorials/tutorial9/include/tutorial9/options/BareMetalDefaultOptions.h +++ b/tutorials/tutorial9/include/tutorial9/options/BareMetalDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol bare metal default options. diff --git a/tutorials/tutorial9/include/tutorial9/options/ClientDefaultOptions.h b/tutorials/tutorial9/include/tutorial9/options/ClientDefaultOptions.h index 1f4202f17..9f09bad57 100644 --- a/tutorials/tutorial9/include/tutorial9/options/ClientDefaultOptions.h +++ b/tutorials/tutorial9/include/tutorial9/options/ClientDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client default options. diff --git a/tutorials/tutorial9/include/tutorial9/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial9/include/tutorial9/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h index f12d74376..599f28ac4 100644 --- a/tutorials/tutorial9/include/tutorial9/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial9/include/tutorial9/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options. diff --git a/tutorials/tutorial9/include/tutorial9/options/DataViewDefaultOptions.h b/tutorials/tutorial9/include/tutorial9/options/DataViewDefaultOptions.h index 9c3a8df02..29d5eb654 100644 --- a/tutorials/tutorial9/include/tutorial9/options/DataViewDefaultOptions.h +++ b/tutorials/tutorial9/include/tutorial9/options/DataViewDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol data view default options. diff --git a/tutorials/tutorial9/include/tutorial9/options/DefaultOptions.h b/tutorials/tutorial9/include/tutorial9/options/DefaultOptions.h index 56c4c804c..50bc01896 100644 --- a/tutorials/tutorial9/include/tutorial9/options/DefaultOptions.h +++ b/tutorials/tutorial9/include/tutorial9/options/DefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol default options. diff --git a/tutorials/tutorial9/include/tutorial9/options/ServerDefaultOptions.h b/tutorials/tutorial9/include/tutorial9/options/ServerDefaultOptions.h index 70df0876c..4b0a6b4b1 100644 --- a/tutorials/tutorial9/include/tutorial9/options/ServerDefaultOptions.h +++ b/tutorials/tutorial9/include/tutorial9/options/ServerDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server default options. diff --git a/tutorials/tutorial9/include/tutorial9/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h b/tutorials/tutorial9/include/tutorial9/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h index 9b2306e92..f8477b15a 100644 --- a/tutorials/tutorial9/include/tutorial9/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h +++ b/tutorials/tutorial9/include/tutorial9/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h @@ -1,4 +1,4 @@ -// Generated by commsdsl2comms v6.3.3 +// Generated by commsdsl2comms v6.3.4 /// @file /// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options.