diff --git a/Makefile b/Makefile index 313fe40a4..ff5b81c7a 100644 --- a/Makefile +++ b/Makefile @@ -12,8 +12,8 @@ # notice, this list of conditions and the following disclaimer in # the documentation and/or other materials provided with the # distribution. -# 3. Neither the name Windhover Labs nor the names of its -# contributors may be used to endorse or promote products derived +# 3. Neither the name Windhover Labs nor the names of its +# contributors may be used to endorse or promote products derived # from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS @@ -108,14 +108,10 @@ help:: @echo ' reference build. ' @echo ' docs-sphinx : Generate the Sphinx documentation from the ' @echo ' reference build. ' - - -.PHONY: help Makefile docs obc -obc:: obc/ppd obc/cpd - @echo 'Done' - +.PHONY: help Makefile docs obc + $(GENERIC_TARGET_NAMES):: @echo 'Building '$@'.' @@ -141,16 +137,41 @@ $(GENERIC_TARGET_NAMES):: $(MAKE) --no-print-directory); \ fi \ done; - + + +obc:: obc/ppd obc/cpd + @rm -Rf build/obc/target + @echo 'Done' + + workspace:: - @echo 'Generating ground products.' + @echo 'Generating PPD message definitions.' @make -C build/obc/ppd/target ground-tools + @echo 'Generating CPD message definitions.' @make -C build/obc/cpd/target ground-tools - -rm build/obc/commander_workspace/etc/registry.yaml - python3 core/base/tools/config/yaml_path_merger.py --yaml_output build/obc/commander_workspace/etc/registry.yaml --yaml_input build/obc/cpd/target/wh_defs.yaml --yaml_path /modules/cpd - python3 core/base/tools/config/yaml_path_merger.py --yaml_output build/obc/commander_workspace/etc/registry.yaml --yaml_input build/obc/ppd/target/wh_defs.yaml --yaml_path /modules/ppd - - + @echo 'Adding XTCE configuration to registries.' + @yaml-merge core/base/tools/commander/xtce_config.yaml build/obc/cpd/target/wh_defs.yaml --overwrite build/obc/cpd/target/wh_defs.yaml + @yaml-merge core/base/tools/commander/xtce_config.yaml build/obc/ppd/target/wh_defs.yaml --overwrite build/obc/ppd/target/wh_defs.yaml + @echo 'Generating combined registry.' + @rm -Rf build/obc/commander_workspace >/dev/null + @mkdir -p build/obc/commander_workspace/etc + @python3 core/base/tools/config/yaml_path_merger.py --yaml_output build/obc/commander_workspace/etc/registry.yaml --yaml_input build/obc/cpd/target/wh_defs.yaml --yaml_path /modules/cpd + @python3 core/base/tools/config/yaml_path_merger.py --yaml_output build/obc/commander_workspace/etc/registry.yaml --yaml_input build/obc/ppd/target/wh_defs.yaml --yaml_path /modules/ppd + @echo 'Generating Commander workspace.' + @python3 core/base/tools/commander/generate_workspace.py build/obc/commander_workspace/etc/registry.yaml build/obc/commander_workspace/ + @echo 'Generating CPD XTCE' + @core/tools/auto-yamcs/src/generate_xtce.sh ${PWD}/build/obc/cpd/target/wh_defs.yaml ${PWD}/build/obc/cpd/target/wh_defs.db ${PWD}/build/obc/commander_workspace/mdb/cpd.xml + @echo 'Generating PPD XTCE' + @core/tools/auto-yamcs/src/generate_xtce.sh ${PWD}/build/obc/ppd/target/wh_defs.yaml ${PWD}/build/obc/ppd/target/wh_defs.db ${PWD}/build/obc/commander_workspace/mdb/ppd.xml + + +workspace-pyliner:: workspace + @echo "Generating pyliner workspace" + @mkdir -p build/obc/pyliner/commander_workspace + @cp -r ${PWD}/build/obc/commander_workspace/* build/obc/pyliner/commander_workspace + @cp -r config/obc/ppd/pyliner/server_overlay/etc ${PWD}/build/obc/pyliner/commander_workspace + + workspace-sitl:: @echo 'Generating ground products.' @ln -s cf build/obc/cpd/sitl/target/target/exe/ram || /bin/true @@ -159,27 +180,27 @@ workspace-sitl:: -rm build/obc/sitl_commander_workspace/etc/registry.yaml python3 core/base/tools/config/yaml_path_merger.py --yaml_output build/obc/sitl_commander_workspace/etc/registry.yaml --yaml_input build/obc/cpd/sitl/target/wh_defs.yaml --yaml_path /modules/cpd python3 core/base/tools/config/yaml_path_merger.py --yaml_output build/obc/sitl_commander_workspace/etc/registry.yaml --yaml_input build/obc/ppd/sitl/target/wh_defs.yaml --yaml_path /modules/ppd - - + + obc-sitl:: obc/ppd/sitl obc/cpd/sitl @echo 'Done' - - + + docs-doxygen: mkdir -p build/${SPHINX_FSW_BUILD}/target; \ (cd build/${SPHINX_FSW_BUILD}/target; /usr/bin/cmake -DBUILDNAME:STRING=${SPHINX_FSW_BUILD} \ -G"Eclipse CDT4 - Unix Makefiles" -DCMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT=TRUE CMAKE_BUILD_TYPE=Debug $(ROOT_DIR); make docs); - - -docs-sphinx: + + +docs-sphinx: @echo 'Building $$SPHINX_FSW_BUILD.' mkdir -p build/${SPHINX_FSW_BUILD}/target; \ (cd build/${SPHINX_FSW_BUILD}/target; /usr/bin/cmake -DBUILDNAME:STRING=${SPHINX_FSW_BUILD} \ -G"Eclipse CDT4 - Unix Makefiles" -DCMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT=TRUE CMAKE_BUILD_TYPE=Debug $(ROOT_DIR)); @$(SPHINX_BUILD) -M html "$(SOURCE_DIR)" "$(SPHINX_BUILDDIR)" $(SPHINX_OPTS) -c build/$(SPHINX_FSW_BUILD)/target/docs $(O) @echo 'Completed' - - + + docs: docs-doxygen docs-sphinx @echo 'Completed' @@ -195,13 +216,14 @@ python-env:: @echo 'Deactivate: ' @echo ' deactivate ' @echo ' ' - - -submodule-update: + + +submodule-update: @echo 'Completed' @echo 'Updating submodules' git submodule update --init --recursive + remote-install:: @echo 'Installing onto test flight vehicle at $(REMOTE_ADDRESS)' ssh-keygen -f "${HOME}/.ssh/known_hosts" -R "$(REMOTE_ADDRESS)" @@ -211,6 +233,7 @@ remote-install:: scp build/obc/cpd/target/target/exe/airliner windhover@$(REMOTE_ADDRESS):~ scp config/obc/ppd/target/airliner.service windhover@$(REMOTE_ADDRESS):~ + local-install:: @echo 'Installing onto test flight vehicle at /media/${USER}/' -sudo rm -Rf /media/${USER}/rootfs/opt/airliner @@ -218,7 +241,7 @@ local-install:: sudo cp build/obc/cpd/target/target/exe/airliner /media/${USER}/rootfs/lib/firmware -sudo cp build/obc/ppd/target/target/hitl_bridge/hitl_bridge /media/${USER}/rootfs/usr/local/bin/ + clean:: @echo 'Cleaning flight software builds ' rm -rf build - diff --git a/apps/bat/cdr/Main.opi b/apps/bat/cdr/Main.opi index 79e4811a3..c253d7ef6 100644 --- a/apps/bat/cdr/Main.opi +++ b/apps/bat/cdr/Main.opi @@ -19,7 +19,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Downlink/DeleteQueueNode.bob b/apps/cf/cdr/Downlink/DeleteQueueNode.bob index 1be308761..fc1e04e9f 100644 --- a/apps/cf/cdr/Downlink/DeleteQueueNode.bob +++ b/apps/cf/cdr/Downlink/DeleteQueueNode.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Downlink/DisableDequeue.bob b/apps/cf/cdr/Downlink/DisableDequeue.bob index 0a9f04463..22edf4ef6 100644 --- a/apps/cf/cdr/Downlink/DisableDequeue.bob +++ b/apps/cf/cdr/Downlink/DisableDequeue.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Downlink/DisablePollingDirectory.bob b/apps/cf/cdr/Downlink/DisablePollingDirectory.bob index d9f450dc3..789af3053 100644 --- a/apps/cf/cdr/Downlink/DisablePollingDirectory.bob +++ b/apps/cf/cdr/Downlink/DisablePollingDirectory.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Downlink/EnableDequeue.bob b/apps/cf/cdr/Downlink/EnableDequeue.bob index 973d76dd7..5ee2cd477 100644 --- a/apps/cf/cdr/Downlink/EnableDequeue.bob +++ b/apps/cf/cdr/Downlink/EnableDequeue.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Downlink/EnablePollingDirectory.bob b/apps/cf/cdr/Downlink/EnablePollingDirectory.bob index f38d01e22..a77be71d7 100644 --- a/apps/cf/cdr/Downlink/EnablePollingDirectory.bob +++ b/apps/cf/cdr/Downlink/EnablePollingDirectory.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Downlink/GiveTake.bob b/apps/cf/cdr/Downlink/GiveTake.bob index c1f749d6b..e527b5cdd 100644 --- a/apps/cf/cdr/Downlink/GiveTake.bob +++ b/apps/cf/cdr/Downlink/GiveTake.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Downlink/Kickstart.bob b/apps/cf/cdr/Downlink/Kickstart.bob index 67be9fe53..bdeb64c91 100644 --- a/apps/cf/cdr/Downlink/Kickstart.bob +++ b/apps/cf/cdr/Downlink/Kickstart.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Downlink/Main.bob b/apps/cf/cdr/Downlink/Main.bob index 285561ac5..f1a778020 100644 --- a/apps/cf/cdr/Downlink/Main.bob +++ b/apps/cf/cdr/Downlink/Main.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Downlink/PlaybackDirectory.bob b/apps/cf/cdr/Downlink/PlaybackDirectory.bob index ff2486fbe..11849d71d 100644 --- a/apps/cf/cdr/Downlink/PlaybackDirectory.bob +++ b/apps/cf/cdr/Downlink/PlaybackDirectory.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Downlink/PlaybackFile.bob b/apps/cf/cdr/Downlink/PlaybackFile.bob index 52adff30e..5cadb5bc8 100644 --- a/apps/cf/cdr/Downlink/PlaybackFile.bob +++ b/apps/cf/cdr/Downlink/PlaybackFile.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Downlink/QuickStatus.bob b/apps/cf/cdr/Downlink/QuickStatus.bob index 4368444ed..53af1518f 100644 --- a/apps/cf/cdr/Downlink/QuickStatus.bob +++ b/apps/cf/cdr/Downlink/QuickStatus.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Downlink/SetPollParam.bob b/apps/cf/cdr/Downlink/SetPollParam.bob index 37698866a..b9cafcb22 100644 --- a/apps/cf/cdr/Downlink/SetPollParam.bob +++ b/apps/cf/cdr/Downlink/SetPollParam.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Downlink/WriteActiveTrans.bob b/apps/cf/cdr/Downlink/WriteActiveTrans.bob index 522f395ee..707192240 100644 --- a/apps/cf/cdr/Downlink/WriteActiveTrans.bob +++ b/apps/cf/cdr/Downlink/WriteActiveTrans.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Downlink/WriteQueueInfo.bob b/apps/cf/cdr/Downlink/WriteQueueInfo.bob index 750dae23a..130d9369e 100644 --- a/apps/cf/cdr/Downlink/WriteQueueInfo.bob +++ b/apps/cf/cdr/Downlink/WriteQueueInfo.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Engine/Abandon.bob b/apps/cf/cdr/Engine/Abandon.bob index 7bad91ede..ae96d466b 100644 --- a/apps/cf/cdr/Engine/Abandon.bob +++ b/apps/cf/cdr/Engine/Abandon.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Engine/Cancel.bob b/apps/cf/cdr/Engine/Cancel.bob index ebc62ef3e..c6acf1c14 100644 --- a/apps/cf/cdr/Engine/Cancel.bob +++ b/apps/cf/cdr/Engine/Cancel.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Engine/GetMIBParam.bob b/apps/cf/cdr/Engine/GetMIBParam.bob index ba6fb4d1e..93dffba95 100644 --- a/apps/cf/cdr/Engine/GetMIBParam.bob +++ b/apps/cf/cdr/Engine/GetMIBParam.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Engine/Main.bob b/apps/cf/cdr/Engine/Main.bob index 810664747..3fadaf4d5 100644 --- a/apps/cf/cdr/Engine/Main.bob +++ b/apps/cf/cdr/Engine/Main.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Engine/Resume.bob b/apps/cf/cdr/Engine/Resume.bob index 8f17609f0..005478eb1 100644 --- a/apps/cf/cdr/Engine/Resume.bob +++ b/apps/cf/cdr/Engine/Resume.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Engine/SetMIBParam.bob b/apps/cf/cdr/Engine/SetMIBParam.bob index 9560f840e..62bdda851 100644 --- a/apps/cf/cdr/Engine/SetMIBParam.bob +++ b/apps/cf/cdr/Engine/SetMIBParam.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Engine/Suspend.bob b/apps/cf/cdr/Engine/Suspend.bob index a56dbeb9a..aff866760 100644 --- a/apps/cf/cdr/Engine/Suspend.bob +++ b/apps/cf/cdr/Engine/Suspend.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Engine/ViewConfig.bob b/apps/cf/cdr/Engine/ViewConfig.bob index c2dd16b61..7def16f55 100644 --- a/apps/cf/cdr/Engine/ViewConfig.bob +++ b/apps/cf/cdr/Engine/ViewConfig.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Engine/ViewTransDiag.bob b/apps/cf/cdr/Engine/ViewTransDiag.bob index 437561e3f..8e20078a4 100644 --- a/apps/cf/cdr/Engine/ViewTransDiag.bob +++ b/apps/cf/cdr/Engine/ViewTransDiag.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Faults/Main.bob b/apps/cf/cdr/Faults/Main.bob index aa71a2cb9..2ea2be29c 100644 --- a/apps/cf/cdr/Faults/Main.bob +++ b/apps/cf/cdr/Faults/Main.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Main.bob b/apps/cf/cdr/Main.bob index 3e0076633..a17f9226d 100644 --- a/apps/cf/cdr/Main.bob +++ b/apps/cf/cdr/Main.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/PurgeQueue.bob b/apps/cf/cdr/PurgeQueue.bob index f3a2f6206..605f8fcc3 100644 --- a/apps/cf/cdr/PurgeQueue.bob +++ b/apps/cf/cdr/PurgeQueue.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/ResetCounters.bob b/apps/cf/cdr/ResetCounters.bob index 237521a94..5bfc8209a 100644 --- a/apps/cf/cdr/ResetCounters.bob +++ b/apps/cf/cdr/ResetCounters.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/SetCyclesPerWakeup.bob b/apps/cf/cdr/SetCyclesPerWakeup.bob index 49e425b8e..4bf349fdf 100644 --- a/apps/cf/cdr/SetCyclesPerWakeup.bob +++ b/apps/cf/cdr/SetCyclesPerWakeup.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cf/cdr/Uplink/Main.bob b/apps/cf/cdr/Uplink/Main.bob index c1fc5163c..08b8e037d 100644 --- a/apps/cf/cdr/Uplink/Main.bob +++ b/apps/cf/cdr/Uplink/Main.bob @@ -4,7 +4,7 @@ cf true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ci/cdr/AuthorizeCommand_General.bob b/apps/ci/cdr/AuthorizeCommand_General.bob index e42bbddb0..f302bf706 100644 --- a/apps/ci/cdr/AuthorizeCommand_General.bob +++ b/apps/ci/cdr/AuthorizeCommand_General.bob @@ -5,7 +5,7 @@ ci true /modules/$(CPUID)/modules/$(APP) - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ci/cdr/DeauthorizeCommand_General.bob b/apps/ci/cdr/DeauthorizeCommand_General.bob index 62c837219..86405ba66 100644 --- a/apps/ci/cdr/DeauthorizeCommand_General.bob +++ b/apps/ci/cdr/DeauthorizeCommand_General.bob @@ -5,7 +5,7 @@ ci true /modules/$(CPUID)/modules/$(APP) - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ci/cdr/DeregisterCommand_General.bob b/apps/ci/cdr/DeregisterCommand_General.bob index 5ea13d98d..f73619587 100644 --- a/apps/ci/cdr/DeregisterCommand_General.bob +++ b/apps/ci/cdr/DeregisterCommand_General.bob @@ -5,7 +5,7 @@ ci true /modules/$(CPUID)/modules/$(APP) - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ci/cdr/Main.bob b/apps/ci/cdr/Main.bob index c0a14c6a1..af6c6dcaf 100644 --- a/apps/ci/cdr/Main.bob +++ b/apps/ci/cdr/Main.bob @@ -5,7 +5,7 @@ ci true /modules/$(CPUID)/modules/$(APP) - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ci/cdr/RegisterCommand_General.bob b/apps/ci/cdr/RegisterCommand_General.bob index 53a1f6b9f..2e31bf1c5 100644 --- a/apps/ci/cdr/RegisterCommand_General.bob +++ b/apps/ci/cdr/RegisterCommand_General.bob @@ -5,7 +5,7 @@ ci true /modules/$(CPUID)/modules/$(APP) - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ci/cdr/UpdateCommand_General.bob b/apps/ci/cdr/UpdateCommand_General.bob index fd11c1746..0c2d40cfd 100644 --- a/apps/ci/cdr/UpdateCommand_General.bob +++ b/apps/ci/cdr/UpdateCommand_General.bob @@ -5,7 +5,7 @@ ci true /modules/$(CPUID)/modules/$(APP) - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ci/cdr/resources/containers/cmd_management.bob b/apps/ci/cdr/resources/containers/cmd_management.bob index b716f34da..697fe3611 100644 --- a/apps/ci/cdr/resources/containers/cmd_management.bob +++ b/apps/ci/cdr/resources/containers/cmd_management.bob @@ -2,7 +2,7 @@ Display - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ci/cdr/resources/templates/AuthorizeCommand_App.bob b/apps/ci/cdr/resources/templates/AuthorizeCommand_App.bob index b4efd17c5..e3e07bfeb 100644 --- a/apps/ci/cdr/resources/templates/AuthorizeCommand_App.bob +++ b/apps/ci/cdr/resources/templates/AuthorizeCommand_App.bob @@ -2,7 +2,7 @@ ($(CPUID)) CI - Auth - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ci/cdr/resources/templates/DeauthorizeCommand_App.bob b/apps/ci/cdr/resources/templates/DeauthorizeCommand_App.bob index 7e5655812..b467fdc40 100644 --- a/apps/ci/cdr/resources/templates/DeauthorizeCommand_App.bob +++ b/apps/ci/cdr/resources/templates/DeauthorizeCommand_App.bob @@ -2,7 +2,7 @@ ($(CPUID)) CI - Deauth - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ci/cdr/resources/templates/DeregisterCommand_App.bob b/apps/ci/cdr/resources/templates/DeregisterCommand_App.bob index 139a3326c..78759b0a9 100644 --- a/apps/ci/cdr/resources/templates/DeregisterCommand_App.bob +++ b/apps/ci/cdr/resources/templates/DeregisterCommand_App.bob @@ -2,7 +2,7 @@ ($(CPUID)) CI - Dereg - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ci/cdr/resources/templates/RegisterCommand_App.bob b/apps/ci/cdr/resources/templates/RegisterCommand_App.bob index 88185205c..9bd883c92 100644 --- a/apps/ci/cdr/resources/templates/RegisterCommand_App.bob +++ b/apps/ci/cdr/resources/templates/RegisterCommand_App.bob @@ -2,7 +2,7 @@ ($(CPUID)) CI - Reg - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ci/cdr/resources/templates/UpdateCommand_App.bob b/apps/ci/cdr/resources/templates/UpdateCommand_App.bob index 0a8bd1ef9..c5930c565 100644 --- a/apps/ci/cdr/resources/templates/UpdateCommand_App.bob +++ b/apps/ci/cdr/resources/templates/UpdateCommand_App.bob @@ -2,7 +2,7 @@ ($(CPUID)) CI - Update - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/DisableApplication.opi b/apps/cs/cdr/DisableApplication.opi index 5611dafce..1a8b64f13 100644 --- a/apps/cs/cdr/DisableApplication.opi +++ b/apps/cs/cdr/DisableApplication.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/DisableEEPROM.opi b/apps/cs/cdr/DisableEEPROM.opi index 5b4b3db1b..c70923990 100644 --- a/apps/cs/cdr/DisableEEPROM.opi +++ b/apps/cs/cdr/DisableEEPROM.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/DisableMemory.opi b/apps/cs/cdr/DisableMemory.opi index 24fb0103d..cf6668ebf 100644 --- a/apps/cs/cdr/DisableMemory.opi +++ b/apps/cs/cdr/DisableMemory.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/DisableTable.opi b/apps/cs/cdr/DisableTable.opi index 797927b92..adb688437 100644 --- a/apps/cs/cdr/DisableTable.opi +++ b/apps/cs/cdr/DisableTable.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/EnableApplication.opi b/apps/cs/cdr/EnableApplication.opi index 56c7799f9..30d8cf6ab 100644 --- a/apps/cs/cdr/EnableApplication.opi +++ b/apps/cs/cdr/EnableApplication.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/EnableEEPROM.opi b/apps/cs/cdr/EnableEEPROM.opi index 59110402c..98e56a973 100644 --- a/apps/cs/cdr/EnableEEPROM.opi +++ b/apps/cs/cdr/EnableEEPROM.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/EnableMemory.opi b/apps/cs/cdr/EnableMemory.opi index e0600403f..ad09429b2 100644 --- a/apps/cs/cdr/EnableMemory.opi +++ b/apps/cs/cdr/EnableMemory.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/EnableTable.opi b/apps/cs/cdr/EnableTable.opi index 0eb18c8aa..d7899796a 100644 --- a/apps/cs/cdr/EnableTable.opi +++ b/apps/cs/cdr/EnableTable.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/GetEntryIDEEPROM.opi b/apps/cs/cdr/GetEntryIDEEPROM.opi index bee4948e2..4dc776cd5 100644 --- a/apps/cs/cdr/GetEntryIDEEPROM.opi +++ b/apps/cs/cdr/GetEntryIDEEPROM.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/GetEntryIDMemory.opi b/apps/cs/cdr/GetEntryIDMemory.opi index 21ed15fea..ed8d1aaa0 100644 --- a/apps/cs/cdr/GetEntryIDMemory.opi +++ b/apps/cs/cdr/GetEntryIDMemory.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/Main.bob b/apps/cs/cdr/Main.bob index 88298938c..a2ee9e41c 100644 --- a/apps/cs/cdr/Main.bob +++ b/apps/cs/cdr/Main.bob @@ -4,7 +4,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/OneShot.opi b/apps/cs/cdr/OneShot.opi index ed5d3150a..c1c8fa222 100644 --- a/apps/cs/cdr/OneShot.opi +++ b/apps/cs/cdr/OneShot.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/RecomputeBaselineApp.opi b/apps/cs/cdr/RecomputeBaselineApp.opi index 59d04c50c..3d0f982d0 100644 --- a/apps/cs/cdr/RecomputeBaselineApp.opi +++ b/apps/cs/cdr/RecomputeBaselineApp.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/RecomputeBaselineEEPROM.opi b/apps/cs/cdr/RecomputeBaselineEEPROM.opi index a1955d456..35e890720 100644 --- a/apps/cs/cdr/RecomputeBaselineEEPROM.opi +++ b/apps/cs/cdr/RecomputeBaselineEEPROM.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/RecomputeBaselineMemory.opi b/apps/cs/cdr/RecomputeBaselineMemory.opi index 450bf0e75..1e193e0a5 100644 --- a/apps/cs/cdr/RecomputeBaselineMemory.opi +++ b/apps/cs/cdr/RecomputeBaselineMemory.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/RecomputeBaselineTable.opi b/apps/cs/cdr/RecomputeBaselineTable.opi index 608a1cdec..e5197ad59 100644 --- a/apps/cs/cdr/RecomputeBaselineTable.opi +++ b/apps/cs/cdr/RecomputeBaselineTable.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/ReportBaselineApp.opi b/apps/cs/cdr/ReportBaselineApp.opi index 03540c625..07fdf773f 100644 --- a/apps/cs/cdr/ReportBaselineApp.opi +++ b/apps/cs/cdr/ReportBaselineApp.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/ReportBaselineEEPROM.opi b/apps/cs/cdr/ReportBaselineEEPROM.opi index 5fdcc7074..3e56bd414 100644 --- a/apps/cs/cdr/ReportBaselineEEPROM.opi +++ b/apps/cs/cdr/ReportBaselineEEPROM.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/ReportBaselineMemory.opi b/apps/cs/cdr/ReportBaselineMemory.opi index 19ae8f935..d77a3b98b 100644 --- a/apps/cs/cdr/ReportBaselineMemory.opi +++ b/apps/cs/cdr/ReportBaselineMemory.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/cs/cdr/ReportBaselineTable.opi b/apps/cs/cdr/ReportBaselineTable.opi index e039f3da1..c5a95c3c1 100644 --- a/apps/cs/cdr/ReportBaselineTable.opi +++ b/apps/cs/cdr/ReportBaselineTable.opi @@ -19,7 +19,7 @@ cs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ds/cdr/AddMid.opi b/apps/ds/cdr/AddMid.opi index e80d13917..7f995902c 100644 --- a/apps/ds/cdr/AddMid.opi +++ b/apps/ds/cdr/AddMid.opi @@ -19,7 +19,7 @@ ds true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ds/cdr/CloseFile.opi b/apps/ds/cdr/CloseFile.opi index bec793a6d..04425595e 100644 --- a/apps/ds/cdr/CloseFile.opi +++ b/apps/ds/cdr/CloseFile.opi @@ -19,7 +19,7 @@ ds true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ds/cdr/GetFileInfo.opi b/apps/ds/cdr/GetFileInfo.opi index 5f457a28d..31c63ad39 100644 --- a/apps/ds/cdr/GetFileInfo.opi +++ b/apps/ds/cdr/GetFileInfo.opi @@ -19,7 +19,7 @@ ds true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ds/cdr/Main.bob b/apps/ds/cdr/Main.bob index c4fc81698..77166d732 100644 --- a/apps/ds/cdr/Main.bob +++ b/apps/ds/cdr/Main.bob @@ -4,7 +4,7 @@ ds true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ds/cdr/SetDestAge.opi b/apps/ds/cdr/SetDestAge.opi index 53efc6871..75a509ffd 100644 --- a/apps/ds/cdr/SetDestAge.opi +++ b/apps/ds/cdr/SetDestAge.opi @@ -19,7 +19,7 @@ ds true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ds/cdr/SetDestBase.opi b/apps/ds/cdr/SetDestBase.opi index ab1bb5a18..9e068af28 100644 --- a/apps/ds/cdr/SetDestBase.opi +++ b/apps/ds/cdr/SetDestBase.opi @@ -19,7 +19,7 @@ ds true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ds/cdr/SetDestCount.opi b/apps/ds/cdr/SetDestCount.opi index a5fe7f008..63ceeaf27 100644 --- a/apps/ds/cdr/SetDestCount.opi +++ b/apps/ds/cdr/SetDestCount.opi @@ -19,7 +19,7 @@ ds true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ds/cdr/SetDestExt.opi b/apps/ds/cdr/SetDestExt.opi index e0c19449d..e22eb8a01 100644 --- a/apps/ds/cdr/SetDestExt.opi +++ b/apps/ds/cdr/SetDestExt.opi @@ -19,7 +19,7 @@ ds true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ds/cdr/SetDestPath.opi b/apps/ds/cdr/SetDestPath.opi index 0cc2fc1e8..03b998574 100644 --- a/apps/ds/cdr/SetDestPath.opi +++ b/apps/ds/cdr/SetDestPath.opi @@ -19,7 +19,7 @@ ds true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ds/cdr/SetDestSize.opi b/apps/ds/cdr/SetDestSize.opi index 7a4bfe674..96bd7971d 100644 --- a/apps/ds/cdr/SetDestSize.opi +++ b/apps/ds/cdr/SetDestSize.opi @@ -19,7 +19,7 @@ ds true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ds/cdr/SetDestState.opi b/apps/ds/cdr/SetDestState.opi index 01d29a6fa..2bf55a7bc 100644 --- a/apps/ds/cdr/SetDestState.opi +++ b/apps/ds/cdr/SetDestState.opi @@ -19,7 +19,7 @@ ds true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ds/cdr/SetDestType.opi b/apps/ds/cdr/SetDestType.opi index ce9c00c37..5794da41a 100644 --- a/apps/ds/cdr/SetDestType.opi +++ b/apps/ds/cdr/SetDestType.opi @@ -19,7 +19,7 @@ ds true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ds/cdr/SetFilterFile.opi b/apps/ds/cdr/SetFilterFile.opi index 33d0feb5b..b9e180f7a 100644 --- a/apps/ds/cdr/SetFilterFile.opi +++ b/apps/ds/cdr/SetFilterFile.opi @@ -19,7 +19,7 @@ ds true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ds/cdr/SetFilterParms.opi b/apps/ds/cdr/SetFilterParms.opi index a47815e3d..08bd44be0 100644 --- a/apps/ds/cdr/SetFilterParms.opi +++ b/apps/ds/cdr/SetFilterParms.opi @@ -19,7 +19,7 @@ ds true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/ds/cdr/SetFilterType.opi b/apps/ds/cdr/SetFilterType.opi index a94572407..6e53a8371 100644 --- a/apps/ds/cdr/SetFilterType.opi +++ b/apps/ds/cdr/SetFilterType.opi @@ -19,7 +19,7 @@ ds true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/Concat.opi b/apps/fm/cdr/Concat.opi index 6577e835d..294a75501 100644 --- a/apps/fm/cdr/Concat.opi +++ b/apps/fm/cdr/Concat.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/CopyFile.opi b/apps/fm/cdr/CopyFile.opi index 32a89d29d..f383d2e5c 100644 --- a/apps/fm/cdr/CopyFile.opi +++ b/apps/fm/cdr/CopyFile.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/CreateDir.opi b/apps/fm/cdr/CreateDir.opi index 21a88db69..d0fcf9c49 100644 --- a/apps/fm/cdr/CreateDir.opi +++ b/apps/fm/cdr/CreateDir.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/Decompress.opi b/apps/fm/cdr/Decompress.opi index 16b6ab0f3..888d24360 100644 --- a/apps/fm/cdr/Decompress.opi +++ b/apps/fm/cdr/Decompress.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/DeleteAllFiles.opi b/apps/fm/cdr/DeleteAllFiles.opi index c2801e7c8..7690f6472 100644 --- a/apps/fm/cdr/DeleteAllFiles.opi +++ b/apps/fm/cdr/DeleteAllFiles.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/DeleteDir.opi b/apps/fm/cdr/DeleteDir.opi index fe39a4b04..24e49dc4d 100644 --- a/apps/fm/cdr/DeleteDir.opi +++ b/apps/fm/cdr/DeleteDir.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/DeleteFile.opi b/apps/fm/cdr/DeleteFile.opi index b952ed334..f9fbcd1f0 100644 --- a/apps/fm/cdr/DeleteFile.opi +++ b/apps/fm/cdr/DeleteFile.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/GetDir.opi b/apps/fm/cdr/GetDir.opi index 1f5e01921..231bf5272 100644 --- a/apps/fm/cdr/GetDir.opi +++ b/apps/fm/cdr/GetDir.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/GetDirPacket.opi b/apps/fm/cdr/GetDirPacket.opi index 9cb1f93f1..a79daac7c 100644 --- a/apps/fm/cdr/GetDirPacket.opi +++ b/apps/fm/cdr/GetDirPacket.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/GetFileInfo.opi b/apps/fm/cdr/GetFileInfo.opi index 7f4117eb5..a64cd02b7 100644 --- a/apps/fm/cdr/GetFileInfo.opi +++ b/apps/fm/cdr/GetFileInfo.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/GetFreeSpace.opi b/apps/fm/cdr/GetFreeSpace.opi index a83d13140..749b0ad31 100644 --- a/apps/fm/cdr/GetFreeSpace.opi +++ b/apps/fm/cdr/GetFreeSpace.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/GetOpenFiles.opi b/apps/fm/cdr/GetOpenFiles.opi index 26758871e..6b62ab491 100644 --- a/apps/fm/cdr/GetOpenFiles.opi +++ b/apps/fm/cdr/GetOpenFiles.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/Main.bob b/apps/fm/cdr/Main.bob index f5a9d4f42..17584c338 100644 --- a/apps/fm/cdr/Main.bob +++ b/apps/fm/cdr/Main.bob @@ -4,7 +4,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/MoveFile.opi b/apps/fm/cdr/MoveFile.opi index 6b75adff0..4b6ea9251 100644 --- a/apps/fm/cdr/MoveFile.opi +++ b/apps/fm/cdr/MoveFile.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/RenameFile.opi b/apps/fm/cdr/RenameFile.opi index 1dfc4f5da..a43431805 100644 --- a/apps/fm/cdr/RenameFile.opi +++ b/apps/fm/cdr/RenameFile.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/SetPerm.opi b/apps/fm/cdr/SetPerm.opi index 762df4c8b..29e6fe50b 100644 --- a/apps/fm/cdr/SetPerm.opi +++ b/apps/fm/cdr/SetPerm.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/fm/cdr/SetTableState.opi b/apps/fm/cdr/SetTableState.opi index ef74b632b..749ba0856 100644 --- a/apps/fm/cdr/SetTableState.opi +++ b/apps/fm/cdr/SetTableState.opi @@ -19,7 +19,7 @@ fm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/hk/cdr/Main.bob b/apps/hk/cdr/Main.bob index 5d162eb1c..624eac479 100644 --- a/apps/hk/cdr/Main.bob +++ b/apps/hk/cdr/Main.bob @@ -4,7 +4,7 @@ hk true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/hk/cdr/SendCombined.opi b/apps/hk/cdr/SendCombined.opi index cc6c11a75..5fcf51c0f 100644 --- a/apps/hk/cdr/SendCombined.opi +++ b/apps/hk/cdr/SendCombined.opi @@ -19,7 +19,7 @@ hk true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/hs/cdr/Main.bob b/apps/hs/cdr/Main.bob index 6e10d64b5..030cce0ba 100644 --- a/apps/hs/cdr/Main.bob +++ b/apps/hs/cdr/Main.bob @@ -4,7 +4,7 @@ hs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/lc/cdr/Main.bob b/apps/lc/cdr/Main.bob index f577da9cf..9d96f86cf 100644 --- a/apps/lc/cdr/Main.bob +++ b/apps/lc/cdr/Main.bob @@ -4,7 +4,7 @@ lc true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/lc/cdr/ResetAPStats.opi b/apps/lc/cdr/ResetAPStats.opi index ee1d73944..24d8debe4 100644 --- a/apps/lc/cdr/ResetAPStats.opi +++ b/apps/lc/cdr/ResetAPStats.opi @@ -19,7 +19,7 @@ lc true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/lc/cdr/ResetWPStats.opi b/apps/lc/cdr/ResetWPStats.opi index afcd0f1ec..9cded110f 100644 --- a/apps/lc/cdr/ResetWPStats.opi +++ b/apps/lc/cdr/ResetWPStats.opi @@ -19,7 +19,7 @@ lc true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/lc/cdr/SetAPPermOff.opi b/apps/lc/cdr/SetAPPermOff.opi index 015e4f996..64f7ac5db 100644 --- a/apps/lc/cdr/SetAPPermOff.opi +++ b/apps/lc/cdr/SetAPPermOff.opi @@ -19,7 +19,7 @@ lc true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/lc/cdr/SetAPState.opi b/apps/lc/cdr/SetAPState.opi index 038f3f20c..0b537afb0 100644 --- a/apps/lc/cdr/SetAPState.opi +++ b/apps/lc/cdr/SetAPState.opi @@ -19,7 +19,7 @@ lc true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/lc/cdr/SetLCState.opi b/apps/lc/cdr/SetLCState.opi index 168f9d110..03ab0b048 100644 --- a/apps/lc/cdr/SetLCState.opi +++ b/apps/lc/cdr/SetLCState.opi @@ -19,7 +19,7 @@ lc true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/md/cdr/Jam.opi b/apps/md/cdr/Jam.opi index 0ab986110..c9029a776 100644 --- a/apps/md/cdr/Jam.opi +++ b/apps/md/cdr/Jam.opi @@ -18,7 +18,7 @@ 220 md - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/md/cdr/Main.bob b/apps/md/cdr/Main.bob index df827d13e..efce0fc06 100644 --- a/apps/md/cdr/Main.bob +++ b/apps/md/cdr/Main.bob @@ -4,7 +4,7 @@ md true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/md/cdr/SetSignature.opi b/apps/md/cdr/SetSignature.opi index bb6f3e1cc..0fc2420db 100644 --- a/apps/md/cdr/SetSignature.opi +++ b/apps/md/cdr/SetSignature.opi @@ -18,7 +18,7 @@ 120 md - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/md/cdr/Start.opi b/apps/md/cdr/Start.opi index 4ee261832..def20bc65 100644 --- a/apps/md/cdr/Start.opi +++ b/apps/md/cdr/Start.opi @@ -18,7 +18,7 @@ 90 md - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/md/cdr/Stop.opi b/apps/md/cdr/Stop.opi index fe0318334..3a86b132b 100644 --- a/apps/md/cdr/Stop.opi +++ b/apps/md/cdr/Stop.opi @@ -18,7 +18,7 @@ 90 md - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/mm/cdr/DisableEEPROMWrite.opi b/apps/mm/cdr/DisableEEPROMWrite.opi index 64b7f2e77..b332fbc16 100644 --- a/apps/mm/cdr/DisableEEPROMWrite.opi +++ b/apps/mm/cdr/DisableEEPROMWrite.opi @@ -18,7 +18,7 @@ 100 mm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/mm/cdr/DumpMemInEvent.opi b/apps/mm/cdr/DumpMemInEvent.opi index 7a7edc388..05fe060db 100644 --- a/apps/mm/cdr/DumpMemInEvent.opi +++ b/apps/mm/cdr/DumpMemInEvent.opi @@ -18,7 +18,7 @@ 180 mm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/mm/cdr/DumpMemToFile.opi b/apps/mm/cdr/DumpMemToFile.opi index 68c72998a..f133292e3 100644 --- a/apps/mm/cdr/DumpMemToFile.opi +++ b/apps/mm/cdr/DumpMemToFile.opi @@ -18,7 +18,7 @@ 210 mm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/mm/cdr/EnableEEPROMWrite.opi b/apps/mm/cdr/EnableEEPROMWrite.opi index cb68c39bc..8056f0c31 100644 --- a/apps/mm/cdr/EnableEEPROMWrite.opi +++ b/apps/mm/cdr/EnableEEPROMWrite.opi @@ -18,7 +18,7 @@ 100 mm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/mm/cdr/FillMem.opi b/apps/mm/cdr/FillMem.opi index 5bdd51ac4..7f8c7fd98 100644 --- a/apps/mm/cdr/FillMem.opi +++ b/apps/mm/cdr/FillMem.opi @@ -18,7 +18,7 @@ 220 mm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/mm/cdr/LoadMemFromFile.opi b/apps/mm/cdr/LoadMemFromFile.opi index 1e4d3fcd5..e47565b68 100644 --- a/apps/mm/cdr/LoadMemFromFile.opi +++ b/apps/mm/cdr/LoadMemFromFile.opi @@ -18,7 +18,7 @@ 100 mm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/mm/cdr/LookupSymbol.opi b/apps/mm/cdr/LookupSymbol.opi index b13ada53b..f4f2b7e21 100644 --- a/apps/mm/cdr/LookupSymbol.opi +++ b/apps/mm/cdr/LookupSymbol.opi @@ -18,7 +18,7 @@ 90 mm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/mm/cdr/Main.bob b/apps/mm/cdr/Main.bob index 21851fc46..12efcb9b1 100644 --- a/apps/mm/cdr/Main.bob +++ b/apps/mm/cdr/Main.bob @@ -4,7 +4,7 @@ mm true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/mm/cdr/Peek.opi b/apps/mm/cdr/Peek.opi index d26c07493..6d524db66 100644 --- a/apps/mm/cdr/Peek.opi +++ b/apps/mm/cdr/Peek.opi @@ -18,7 +18,7 @@ 190 mm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/mm/cdr/Poke.opi b/apps/mm/cdr/Poke.opi index 41530752f..b75a16d25 100644 --- a/apps/mm/cdr/Poke.opi +++ b/apps/mm/cdr/Poke.opi @@ -18,7 +18,7 @@ 210 mm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/mm/cdr/SymbolTableToFile.opi b/apps/mm/cdr/SymbolTableToFile.opi index 109fad076..e2cecb59a 100644 --- a/apps/mm/cdr/SymbolTableToFile.opi +++ b/apps/mm/cdr/SymbolTableToFile.opi @@ -18,7 +18,7 @@ 100 mm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/pe/cdr/Baro.opi b/apps/pe/cdr/Baro.opi index add44dad4..319618137 100644 --- a/apps/pe/cdr/Baro.opi +++ b/apps/pe/cdr/Baro.opi @@ -18,7 +18,7 @@ 580 pe - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/pe/cdr/Distance.opi b/apps/pe/cdr/Distance.opi index dd9cafc60..c201ee0f0 100644 --- a/apps/pe/cdr/Distance.opi +++ b/apps/pe/cdr/Distance.opi @@ -18,7 +18,7 @@ 580 pe - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/pe/cdr/Flow.opi b/apps/pe/cdr/Flow.opi index cc793d26a..eb5094ea2 100644 --- a/apps/pe/cdr/Flow.opi +++ b/apps/pe/cdr/Flow.opi @@ -18,7 +18,7 @@ 580 pe - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/pe/cdr/GPS.opi b/apps/pe/cdr/GPS.opi index d5a5f74b4..e7490f2da 100644 --- a/apps/pe/cdr/GPS.opi +++ b/apps/pe/cdr/GPS.opi @@ -18,7 +18,7 @@ 580 pe - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/pe/cdr/Landing.opi b/apps/pe/cdr/Landing.opi index 558121a56..8116a2a54 100644 --- a/apps/pe/cdr/Landing.opi +++ b/apps/pe/cdr/Landing.opi @@ -18,7 +18,7 @@ 580 pe - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/pe/cdr/Main.opi b/apps/pe/cdr/Main.opi index 0112a55bd..c0e50fe0a 100644 --- a/apps/pe/cdr/Main.opi +++ b/apps/pe/cdr/Main.opi @@ -18,7 +18,7 @@ 580 pe - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/pe/cdr/MessagesReceived.opi b/apps/pe/cdr/MessagesReceived.opi index d72f3183a..d9ab06ef9 100644 --- a/apps/pe/cdr/MessagesReceived.opi +++ b/apps/pe/cdr/MessagesReceived.opi @@ -18,7 +18,7 @@ 580 pe - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/pe/cdr/State.opi b/apps/pe/cdr/State.opi index 69dcb9adb..9fe78ee45 100644 --- a/apps/pe/cdr/State.opi +++ b/apps/pe/cdr/State.opi @@ -18,7 +18,7 @@ 580 pe - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/px4lib/cdr/Main.bob b/apps/px4lib/cdr/Main.bob index 4f46f4153..78f2ea7bc 100644 --- a/apps/px4lib/cdr/Main.bob +++ b/apps/px4lib/cdr/Main.bob @@ -4,7 +4,7 @@ px4lib true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/px4lib/cdr/PX4_SensorAccel.opi b/apps/px4lib/cdr/PX4_SensorAccel.opi index 1563db577..c2f104bf2 100644 --- a/apps/px4lib/cdr/PX4_SensorAccel.opi +++ b/apps/px4lib/cdr/PX4_SensorAccel.opi @@ -18,7 +18,7 @@ 600 px4lib - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/px4lib/cdr/PX4_SensorBaro.opi b/apps/px4lib/cdr/PX4_SensorBaro.opi index dec0547f8..c816ffe5d 100644 --- a/apps/px4lib/cdr/PX4_SensorBaro.opi +++ b/apps/px4lib/cdr/PX4_SensorBaro.opi @@ -18,7 +18,7 @@ 600 px4lib - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/px4lib/cdr/PX4_SensorGyro.opi b/apps/px4lib/cdr/PX4_SensorGyro.opi index e954fdcd5..028e997e3 100644 --- a/apps/px4lib/cdr/PX4_SensorGyro.opi +++ b/apps/px4lib/cdr/PX4_SensorGyro.opi @@ -18,7 +18,7 @@ 600 px4lib - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/px4lib/cdr/SensorCombined.opi b/apps/px4lib/cdr/SensorCombined.opi index 95842b8c4..718309b9e 100644 --- a/apps/px4lib/cdr/SensorCombined.opi +++ b/apps/px4lib/cdr/SensorCombined.opi @@ -18,7 +18,7 @@ 600 px4lib - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sbn/cdr/Main.bob b/apps/sbn/cdr/Main.bob index 8c718d20e..cb0e1f9f1 100644 --- a/apps/sbn/cdr/Main.bob +++ b/apps/sbn/cdr/Main.bob @@ -4,7 +4,7 @@ sbn true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/sc/cdr/AppendAts.opi b/apps/sc/cdr/AppendAts.opi index 181dc7e98..1c9858ad7 100644 --- a/apps/sc/cdr/AppendAts.opi +++ b/apps/sc/cdr/AppendAts.opi @@ -18,7 +18,7 @@ 100 sc - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sc/cdr/ContinueATSOnFailure.opi b/apps/sc/cdr/ContinueATSOnFailure.opi index 1db9e5e70..629ce81b1 100644 --- a/apps/sc/cdr/ContinueATSOnFailure.opi +++ b/apps/sc/cdr/ContinueATSOnFailure.opi @@ -18,7 +18,7 @@ 100 sc - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sc/cdr/DisableRTS.opi b/apps/sc/cdr/DisableRTS.opi index 406543611..4ccf9aeb1 100644 --- a/apps/sc/cdr/DisableRTS.opi +++ b/apps/sc/cdr/DisableRTS.opi @@ -18,7 +18,7 @@ 100 sc - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sc/cdr/DisableRTSGroup.opi b/apps/sc/cdr/DisableRTSGroup.opi index 1eba0c252..0783a37fc 100644 --- a/apps/sc/cdr/DisableRTSGroup.opi +++ b/apps/sc/cdr/DisableRTSGroup.opi @@ -18,7 +18,7 @@ 120 sc - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sc/cdr/EnableRTS.opi b/apps/sc/cdr/EnableRTS.opi index a27f5ef65..f0c257364 100644 --- a/apps/sc/cdr/EnableRTS.opi +++ b/apps/sc/cdr/EnableRTS.opi @@ -18,7 +18,7 @@ 100 sc - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sc/cdr/EnableRTSGroup.opi b/apps/sc/cdr/EnableRTSGroup.opi index b7708da2a..926bdf27b 100644 --- a/apps/sc/cdr/EnableRTSGroup.opi +++ b/apps/sc/cdr/EnableRTSGroup.opi @@ -18,7 +18,7 @@ 120 sc - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sc/cdr/JumpATS.opi b/apps/sc/cdr/JumpATS.opi index 5daf184ef..4b92dab28 100644 --- a/apps/sc/cdr/JumpATS.opi +++ b/apps/sc/cdr/JumpATS.opi @@ -18,7 +18,7 @@ 100 sc - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sc/cdr/Main.bob b/apps/sc/cdr/Main.bob index 64bdb64c9..c9ed68a4f 100644 --- a/apps/sc/cdr/Main.bob +++ b/apps/sc/cdr/Main.bob @@ -4,7 +4,7 @@ sc true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/sc/cdr/StartATS.opi b/apps/sc/cdr/StartATS.opi index e2a130eb5..8d70319a3 100644 --- a/apps/sc/cdr/StartATS.opi +++ b/apps/sc/cdr/StartATS.opi @@ -18,7 +18,7 @@ 100 sc - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sc/cdr/StartRTS.opi b/apps/sc/cdr/StartRTS.opi index e0c7fe9b9..d069c819c 100644 --- a/apps/sc/cdr/StartRTS.opi +++ b/apps/sc/cdr/StartRTS.opi @@ -18,7 +18,7 @@ 100 sc - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sc/cdr/StartRTSGroup.opi b/apps/sc/cdr/StartRTSGroup.opi index dccb4772f..6b3593204 100644 --- a/apps/sc/cdr/StartRTSGroup.opi +++ b/apps/sc/cdr/StartRTSGroup.opi @@ -18,7 +18,7 @@ 120 sc - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sc/cdr/StopRTS.opi b/apps/sc/cdr/StopRTS.opi index c82b98450..ec1fd3c9c 100644 --- a/apps/sc/cdr/StopRTS.opi +++ b/apps/sc/cdr/StopRTS.opi @@ -18,7 +18,7 @@ 100 sc - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sc/cdr/StopRTSGroup.opi b/apps/sc/cdr/StopRTSGroup.opi index dae2c940c..bcb378e02 100644 --- a/apps/sc/cdr/StopRTSGroup.opi +++ b/apps/sc/cdr/StopRTSGroup.opi @@ -18,7 +18,7 @@ 120 sc - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sch/cdr/Diagnostic.opi b/apps/sch/cdr/Diagnostic.opi index c6bec3625..74f14a5f3 100644 --- a/apps/sch/cdr/Diagnostic.opi +++ b/apps/sch/cdr/Diagnostic.opi @@ -18,7 +18,7 @@ 950 sch - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sch/cdr/DisableActivity.opi b/apps/sch/cdr/DisableActivity.opi index cfb3f9690..3d82c7c44 100644 --- a/apps/sch/cdr/DisableActivity.opi +++ b/apps/sch/cdr/DisableActivity.opi @@ -18,7 +18,7 @@ 120 sch - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sch/cdr/DisableGroup.opi b/apps/sch/cdr/DisableGroup.opi index 800e7ed4b..c707b44f7 100644 --- a/apps/sch/cdr/DisableGroup.opi +++ b/apps/sch/cdr/DisableGroup.opi @@ -18,7 +18,7 @@ 100 sch - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sch/cdr/EnableActivity.opi b/apps/sch/cdr/EnableActivity.opi index 4d864c4f7..885c19c7d 100644 --- a/apps/sch/cdr/EnableActivity.opi +++ b/apps/sch/cdr/EnableActivity.opi @@ -18,7 +18,7 @@ 120 sch - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sch/cdr/EnableGroup.opi b/apps/sch/cdr/EnableGroup.opi index 5ba4ddaf2..771ef61ff 100644 --- a/apps/sch/cdr/EnableGroup.opi +++ b/apps/sch/cdr/EnableGroup.opi @@ -18,7 +18,7 @@ 100 sch - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sch/cdr/Main.bob b/apps/sch/cdr/Main.bob index 28cfe55b0..e6a03c8b7 100644 --- a/apps/sch/cdr/Main.bob +++ b/apps/sch/cdr/Main.bob @@ -4,7 +4,7 @@ sch true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/sch/cdr/resources/templates/Diagnostic_App.opi b/apps/sch/cdr/resources/templates/Diagnostic_App.opi index dd1ada66a..141a33eb4 100644 --- a/apps/sch/cdr/resources/templates/Diagnostic_App.opi +++ b/apps/sch/cdr/resources/templates/Diagnostic_App.opi @@ -26,7 +26,7 @@ 400 true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /Displays/$(CPUID)/Apps/sch/resources/templates/SCH_Table_Record_App.opi /Displays/$(CPUID)/Apps/sch/resources/templates/SCH_Table_Header_App.opi diff --git a/apps/sch/cdr/resources/templates/SCH_Table_Header_App.opi b/apps/sch/cdr/resources/templates/SCH_Table_Header_App.opi index 9bd4d797d..1713b0e7b 100644 --- a/apps/sch/cdr/resources/templates/SCH_Table_Header_App.opi +++ b/apps/sch/cdr/resources/templates/SCH_Table_Header_App.opi @@ -17,7 +17,7 @@ 6 19 - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/sch/cdr/resources/templates/SCH_Table_Record_App.opi b/apps/sch/cdr/resources/templates/SCH_Table_Record_App.opi index dae3a7bd2..c6ae87e90 100644 --- a/apps/sch/cdr/resources/templates/SCH_Table_Record_App.opi +++ b/apps/sch/cdr/resources/templates/SCH_Table_Record_App.opi @@ -17,7 +17,7 @@ 6 19 - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/sens/cdr/Accel.opi b/apps/sens/cdr/Accel.opi index 5484eeb9e..78bef07d8 100644 --- a/apps/sens/cdr/Accel.opi +++ b/apps/sens/cdr/Accel.opi @@ -18,7 +18,7 @@ 630 sens - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sens/cdr/Baro.opi b/apps/sens/cdr/Baro.opi index 789f9361e..6f5355d71 100644 --- a/apps/sens/cdr/Baro.opi +++ b/apps/sens/cdr/Baro.opi @@ -18,7 +18,7 @@ 630 sens - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sens/cdr/Gyro.opi b/apps/sens/cdr/Gyro.opi index 63081210f..5dbb41ffa 100644 --- a/apps/sens/cdr/Gyro.opi +++ b/apps/sens/cdr/Gyro.opi @@ -18,7 +18,7 @@ 900 sens - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sens/cdr/Mag.opi b/apps/sens/cdr/Mag.opi index 3ba764a72..25ab31c39 100644 --- a/apps/sens/cdr/Mag.opi +++ b/apps/sens/cdr/Mag.opi @@ -18,7 +18,7 @@ 630 sens - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/sens/cdr/Main.opi b/apps/sens/cdr/Main.opi index 01069266d..823559212 100644 --- a/apps/sens/cdr/Main.opi +++ b/apps/sens/cdr/Main.opi @@ -18,7 +18,7 @@ 630 sens - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/to/cdr/AddMessageFlow_General.opi b/apps/to/cdr/AddMessageFlow_General.opi index 839ebba7b..16104946e 100644 --- a/apps/to/cdr/AddMessageFlow_General.opi +++ b/apps/to/cdr/AddMessageFlow_General.opi @@ -18,7 +18,7 @@ 130 to - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/to/cdr/Main.bob b/apps/to/cdr/Main.bob index d1fd97e0e..11701f5dc 100644 --- a/apps/to/cdr/Main.bob +++ b/apps/to/cdr/Main.bob @@ -4,7 +4,7 @@ to true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/to/cdr/QueryMessageFlow_General.opi b/apps/to/cdr/QueryMessageFlow_General.opi index 322d6d631..b31d42f62 100644 --- a/apps/to/cdr/QueryMessageFlow_General.opi +++ b/apps/to/cdr/QueryMessageFlow_General.opi @@ -18,7 +18,7 @@ 100 to - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/to/cdr/QueryOutputChannel.opi b/apps/to/cdr/QueryOutputChannel.opi index 8e8dbf062..4a27715de 100644 --- a/apps/to/cdr/QueryOutputChannel.opi +++ b/apps/to/cdr/QueryOutputChannel.opi @@ -18,7 +18,7 @@ 100 to - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/to/cdr/QueryPriorityQueue.opi b/apps/to/cdr/QueryPriorityQueue.opi index 9803f689c..2e913d743 100644 --- a/apps/to/cdr/QueryPriorityQueue.opi +++ b/apps/to/cdr/QueryPriorityQueue.opi @@ -18,7 +18,7 @@ 100 to - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/to/cdr/RemoveMessageFlow_General.opi b/apps/to/cdr/RemoveMessageFlow_General.opi index 3ebe9d683..cbc85dec7 100644 --- a/apps/to/cdr/RemoveMessageFlow_General.opi +++ b/apps/to/cdr/RemoveMessageFlow_General.opi @@ -18,7 +18,7 @@ 100 to - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/to/cdr/SendDiag.opi b/apps/to/cdr/SendDiag.opi index 378430d4f..a4fec6c87 100644 --- a/apps/to/cdr/SendDiag.opi +++ b/apps/to/cdr/SendDiag.opi @@ -18,7 +18,7 @@ 630 to - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/to/cdr/resources/containers/tlm_management.bob b/apps/to/cdr/resources/containers/tlm_management.bob index 168f9fa53..51382f125 100644 --- a/apps/to/cdr/resources/containers/tlm_management.bob +++ b/apps/to/cdr/resources/containers/tlm_management.bob @@ -2,7 +2,7 @@ Display - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/to/cdr/resources/templates/AddMessageFlow_App.bob b/apps/to/cdr/resources/templates/AddMessageFlow_App.bob index 1ea63b84c..6a19b3406 100644 --- a/apps/to/cdr/resources/templates/AddMessageFlow_App.bob +++ b/apps/to/cdr/resources/templates/AddMessageFlow_App.bob @@ -2,7 +2,7 @@ ($(CPUID)) TO - Add Msg Flow - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/to/cdr/resources/templates/QueryMessageFlow_App.bob b/apps/to/cdr/resources/templates/QueryMessageFlow_App.bob index 71fcdf14d..6ad2e5e87 100644 --- a/apps/to/cdr/resources/templates/QueryMessageFlow_App.bob +++ b/apps/to/cdr/resources/templates/QueryMessageFlow_App.bob @@ -2,7 +2,7 @@ ($(CPUID)) TO - Query Msg Flow - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/to/cdr/resources/templates/RemoveMessageFlow_App.bob b/apps/to/cdr/resources/templates/RemoveMessageFlow_App.bob index 7e19ab9a5..047cd6be3 100644 --- a/apps/to/cdr/resources/templates/RemoveMessageFlow_App.bob +++ b/apps/to/cdr/resources/templates/RemoveMessageFlow_App.bob @@ -6,7 +6,7 @@ - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/apps/vc/cdr/Main.opi b/apps/vc/cdr/Main.opi index 3418c5c5a..a947d2752 100644 --- a/apps/vc/cdr/Main.opi +++ b/apps/vc/cdr/Main.opi @@ -18,7 +18,7 @@ 130 vc - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/vm/cdr/Arming.opi b/apps/vm/cdr/Arming.opi index d4c41c3b7..db2476ba9 100644 --- a/apps/vm/cdr/Arming.opi +++ b/apps/vm/cdr/Arming.opi @@ -18,7 +18,7 @@ 630 vm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/vm/cdr/Main.opi b/apps/vm/cdr/Main.opi index b81fb1085..4a1d82f62 100644 --- a/apps/vm/cdr/Main.opi +++ b/apps/vm/cdr/Main.opi @@ -18,7 +18,7 @@ 500 vm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/vm/cdr/MessagesReceived.opi b/apps/vm/cdr/MessagesReceived.opi index 24074c208..49dd5078b 100644 --- a/apps/vm/cdr/MessagesReceived.opi +++ b/apps/vm/cdr/MessagesReceived.opi @@ -18,7 +18,7 @@ 630 vm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/vm/cdr/Moding.opi b/apps/vm/cdr/Moding.opi index e36fa94d5..93eb9a8ce 100644 --- a/apps/vm/cdr/Moding.opi +++ b/apps/vm/cdr/Moding.opi @@ -18,7 +18,7 @@ 630 vm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/vm/cdr/SendConfig.opi b/apps/vm/cdr/SendConfig.opi index d03255eb7..3af517bc8 100644 --- a/apps/vm/cdr/SendConfig.opi +++ b/apps/vm/cdr/SendConfig.opi @@ -18,7 +18,7 @@ 300 vm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/apps/vm/cdr/State.opi b/apps/vm/cdr/State.opi index 8375ab46e..fda9c75fa 100644 --- a/apps/vm/cdr/State.opi +++ b/apps/vm/cdr/State.opi @@ -18,7 +18,7 @@ 630 vm - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} true /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ diff --git a/config/obc/cpd/wh_config.yaml b/config/obc/cpd/wh_config.yaml index c3ab44d64..f7a72b11c 100644 --- a/config/obc/cpd/wh_config.yaml +++ b/config/obc/cpd/wh_config.yaml @@ -1,6 +1,6 @@ --- config_base: ${PROJECT_SOURCE_DIR} -cpu_id: CPD +cpu_id: cpd modules: core: modules: diff --git a/config/obc/ppd/pyliner/gdbinit b/config/obc/ppd/pyliner/gdbinit new file mode 100644 index 000000000..61b6b41a0 --- /dev/null +++ b/config/obc/ppd/pyliner/gdbinit @@ -0,0 +1 @@ +handle SIG63 noprint nostop \ No newline at end of file diff --git a/config/obc/ppd/pyliner/perf_id_list b/config/obc/ppd/pyliner/perf_id_list new file mode 100644 index 000000000..45f5dc865 --- /dev/null +++ b/config/obc/ppd/pyliner/perf_id_list @@ -0,0 +1,77 @@ +MAC_MARKER_1_PERF_ID,0x00000064,0x00ff00,0.000000, +AE_MAIN_TASK_PERF_ID,0x0000004c,0x00ff00,0.000000, +AMC_MAIN_TASK_PERF_ID,0x00000043,0x00ff00,0.000000, +BAT_MAIN_TASK_PERF_ID,0x00000052,0x00ff00,0.000000, +CF_APPMAIN_PERF_ID,0x00000023,0x00ff00,0.000000, +CF_CYCLE_ENG_PERF_ID,0x0000002a,0x00ff00,0.000000, +CF_FCLOSE_PERF_ID,0x00000026,0x00ff00,0.000000, +CF_FILESIZE_PERF_ID,0x00000024,0x00ff00,0.000000, +CF_FOPEN_PERF_ID,0x00000025,0x00ff00,0.000000, +CF_FREAD_PERF_ID,0x00000027,0x00ff00,0.000000, +CF_FWRITE_PERF_ID,0x00000028,0x00ff00,0.000000, +CF_QDIRFILES_PERF_ID,0x0000002b,0x00ff00,0.000000, +CF_REDLIGHT_PERF_ID,0x00000029,0x00ff00,0.000000, +CFE_ES_MAIN_PERF_ID,0x00000001,0x00ff00,0.000000,Executive Services main execution loop +CFE_EVS_MAIN_PERF_ID,0x00000002,0x00ff00,0.000000,Event Services main execution loop +CFE_SB_MAIN_PERF_ID,0x00000004,0x00ff00,0.000000,Software Bus Services main execution loop +CFE_SB_MSG_LIM_PERF_ID,0x00000005,0x00ff00,0.000000,Software Bus Msg Limit errors +CFE_SB_PIPE_OFLOW_PERF_ID,0x0000001b,0x00ff00,0.000000,SOftware Bus Pipe Overflow Errors +CFE_TBL_MAIN_PERF_ID,0x00000003,0x00ff00,0.000000,Table Services main execution loop +CFE_TIME_LOCAL1HZISR_PERF_ID,0x00000008,0x00ff00,0.000000,1 Hz Local ISR +CFE_TIME_LOCAL1HZTASK_PERF_ID,0x0000000a,0x00ff00,0.000000,1 Hz Local Task +CFE_TIME_MAIN_PERF_ID,0x00000006,0x00ff00,0.000000,Time Services main execution loop +CFE_TIME_SENDMET_PERF_ID,0x00000009,0x00ff00,0.000000,Time ToneSendMET +CFE_TIME_TONE1HZISR_PERF_ID,0x00000007,0x00ff00,0.000000,1 Hz Tone ISR +CFE_TIME_TONE1HZTASK_PERF_ID,0x0000000b,0x00ff00,0.000000,1 Hz Tone Task +CI_MAIN_TASK_PERF_ID,0x00000021,0x00ff00,0.000000, +CI_SOCKET_RCV_PERF_ID,0x00000022,0x00ff00,0.000000, +CS_APPMAIN_PERF_ID,0x0000002c,0x00ff00,0.000000, +DS_APPMAIN_PERF_ID,0x0000002d,0x00ff00,0.000000, +EA_MAIN_TASK_PERF_ID,0x00000045,0x00ff00,0.000000, +FM_APPMAIN_PERF_ID,0x0000002e,0x00ff00,0.000000, +FM_CHILD_TASK_PERF_ID,0x0000002f,0x00ff00,0.000000, +HK_APPMAIN_PERF_ID,0x00000030,0x00ff00,0.000000, +HS_APPMAIN_PERF_ID,0x00000032,0x00ff00,0.000000, +HS_IDLETASK_PERF_ID,0x00000031,0x00ff00,0.000000, +LC_APPMAIN_PERF_ID,0x00000033,0x00ff00,0.000000, +LC_WDT_SEARCH_PERF_ID,0x00000034,0x00ff00,0.000000, +LD_MAIN_TASK_PERF_ID,0x0000004d,0x00ff00,0.000000, +MAC_MAIN_TASK_PERF_ID,0x00000044,0x00ff00,0.000000, +MD_APPMAIN_PERF_ID,0x00000035,0x00ff00,0.000000, +MM_APPMAIN_PERF_ID,0x00000036,0x00ff00,0.000000, +MM_EEPROM_FILELOAD_PERF_ID,0x00000039,0x00ff00,0.000000, +MM_EEPROM_FILL_PERF_ID,0x0000003a,0x00ff00,0.000000, +MM_EEPROM_POKE_PERF_ID,0x00000038,0x00ff00,0.000000, +MM_SEGBREAK_PERF_ID,0x00000037,0x00ff00,0.000000, +MPC_MAIN_TASK_PERF_ID,0x0000004e,0x00ff00,0.000000, +MPU9250_MAIN_TASK_PERF_ID,0x00000053,0x00ff00,0.000000, +MS5611_MAIN_TASK_PERF_ID,0x0000004a,0x00ff00,0.000000, +NAV_MAIN_TASK_PERF_ID,0x0000004f,0x00ff00,0.000000, +RCIN_MAIN_TASK_PERF_ID,0x00000050,0x00ff00,0.000000, +RGBLED_MAIN_TASK_PERF_ID,0x00000047,0x00ff00,0.000000, +RGBLED_RECEIVE_PERF_ID,0x00000049,0x00ff00,0.000000, +RGBLED_SEND_PERF_ID,0x00000048,0x00ff00,0.000000, +SC_APPMAIN_PERF_ID,0x0000003b,0x00ff00,0.000000, +SCH_MAIN_TASK_PERF_ID,0x0000003d,0x00ff00,0.000000, +SENS_MAIN_TASK_PERF_ID,0x0000004b,0x00ff00,0.000000, +TO_MAIN_TASK_PERF_ID,0x0000003c,0x00ff00,0.000000, +TO_SOCKET_SEND_PERF_ID,0x0000003e,0x00ff00,0.000000, +ULR_MAIN_TASK_PERF_ID,0x00000046,0x00ff00,0.000000, +VC_DEVICE_GET_PERF_ID,0x00000041,0x00ff00,0.000000, +VC_MAIN_TASK_PERF_ID,0x0000003f,0x00ff00,0.000000, +VC_SOCKET_SEND_PERF_ID,0x00000040,0x00ff00,0.000000, +VM_MAIN_TASK_PERF_ID,0x00000051,0x00ff00,0.000000, +VM_MAIN_TASK_PERF_ID,0x00000051,0x00ff00,0.000000, +RCIN_DEVICE_GET_PERF_ID,0x00000054,0x00ff00,0.000000, +SIM_MAIN_TASK_PERF_ID,0x00000055,0x00ff00,0.000000, +MAVLINK_MAIN_TASK_PERF_ID,0x00000056,0x00ff00,0.000000, +HMC5883_MAIN_TASK_PERF_ID,0x00000057,0x00ff00,0.000000, +HMC5883_RECEIVE_PERF_ID,0x00000058,0x00ff00,0.000000, +HMC5883_SEND_PERF_ID,0x00000059,0x00ff00,0.000000, +PARAMS_MAIN_TASK_PERF_ID,0x0000005a,0x00ff00,0.000000, +AE_MAIN_TASK_PERF_ID,0x0000005b,0x00ff00,0.000000, +PE_MAIN_TASK_PERF_ID,0x0000005c,0x00ff00,0.000000, +PE_UPDATE_TASK_PERF_ID,0x0000005d,0x00ff00,0.000000, +PE_SENSOR_GPS_PERF_ID,0x0000005e,0x00ff00,0.000000, +PE_SENSOR_BARO_PERF_ID,0x0000005f,0x00ff00,0.000000, +PE_SENSOR_LAND_PERF_ID,0x00000060,0x00ff00,0.000000, diff --git a/config/obc/ppd/pyliner/server_overlay/.gitignore b/config/obc/ppd/pyliner/server_overlay/.gitignore new file mode 100644 index 000000000..a1c13091d --- /dev/null +++ b/config/obc/ppd/pyliner/server_overlay/.gitignore @@ -0,0 +1,2 @@ +yamcs-data +cache diff --git a/config/obc/ppd/pyliner/server_overlay/README.md b/config/obc/ppd/pyliner/server_overlay/README.md new file mode 100644 index 000000000..9b4693c1a --- /dev/null +++ b/config/obc/ppd/pyliner/server_overlay/README.md @@ -0,0 +1,2 @@ +# YAMCS Configuration +This current configuration is not done yet. We still need to update the config files and our code base to use the [Plugin](https://yamcs.org/docs/yamcs-server-manual/yamcs-plugin-format/) Plugin interface in order for us to hook into the YAMCS workflow. diff --git a/config/obc/ppd/pyliner/server_overlay/etc/cfs.yaml b/config/obc/ppd/pyliner/server_overlay/etc/cfs.yaml new file mode 100644 index 000000000..c87af20a5 --- /dev/null +++ b/config/obc/ppd/pyliner/server_overlay/etc/cfs.yaml @@ -0,0 +1,6 @@ +#Configuration tested on YAMCS 5.4.0 +timestampFormat: "CFE_SB_TIME_32_16_SUBS" +tmHost: "127.0.0.1" +tmPort: 5011 +OS_MAX_API_NAME: 40 +gndSysApid: 9000 diff --git a/config/obc/ppd/pyliner/server_overlay/etc/extra_streams.sql b/config/obc/ppd/pyliner/server_overlay/etc/extra_streams.sql new file mode 100644 index 000000000..b065b1415 --- /dev/null +++ b/config/obc/ppd/pyliner/server_overlay/etc/extra_streams.sql @@ -0,0 +1,5 @@ +--Configuration tested on YAMCS 5.4.0 +--TODO: This should be auto-generated and driven by configuration. That way we can even abstract the protocol(CCSDS, MAVLink, etc) if need be. +create stream cfdp_in as select substring(packet, 12) as pdu from tm_realtime where extract_short(packet, 0) = 2622 +create stream cfdp_out (gentime TIMESTAMP, entityId long, seqNum int, pdu binary) +insert into tc_realtime select gentime, 'cfdp-service' as origin, seqNum, '/yamcs/cfdp/upload' as cmdName, unhex('1A3AC00000000000') + pdu as binary from cfdp_out diff --git a/config/obc/ppd/pyliner/server_overlay/etc/processor.yaml b/config/obc/ppd/pyliner/server_overlay/etc/processor.yaml new file mode 100644 index 000000000..d76f100a5 --- /dev/null +++ b/config/obc/ppd/pyliner/server_overlay/etc/processor.yaml @@ -0,0 +1,65 @@ +#Configuration tested on YAMCS 5.4.0 +realtime: + services: + - class: org.yamcs.StreamTmPacketProvider + args: + streams: ["tm_realtime"] + - class: org.yamcs.StreamTcCommandReleaser + args: + stream: "tc_realtime" + - class: org.yamcs.tctm.StreamParameterProvider + - class: org.yamcs.algorithms.AlgorithmManager + - class: org.yamcs.parameter.LocalParameterManager + config: + subscribeAll: true + # Check alarms and also enable the alarm server (that keeps track of unacknowledged alarms) + alarm: + parameterCheck: true + parameterServer: enabled + parameterCache: + enabled: true + cacheAll: true + # Duration in seconds on how long parameters are kept into cache + duration: 600 + # Maximum number of entries in the cache for one parameter + maxNumEntries: 4096 + tmProcessor: + # If container entries fit outside the binary packet, setting this to true will cause the error to be ignored, otherwise an exception will be printed in the yamcs logs + ignoreOutOfContainerEntries: false + # Record all the parameters that have initial values at the start of the processor + recordInitialValues: true + # Record the local values + recordLocalValues: true + + +# Used to perform step by step archive replays to displays,etc +#Archive: +# services: +# - class: org.yamcs.tctm.ReplayService +# config: +# # Keep a small cache in case new displays are open while the replay is paused, to have the parameters readily available +# parameterCache: +# enabled: true +# cacheAll: true +# maxNumEntries: 8 + + +# Used by the ParameterArchive when rebuilding the parameter archive +# no need for parameter cache +#ParameterArchive: +# services: +# - class: org.yamcs.tctm.ReplayService +# config: +# parameterCache: +# enabled: false + + +# Used for performing archive retrievals via replays +#Configuration tested on YAMCS 5.4.0 +# we do not want cache in order to extract the minimum data necessary +#ArchiveRetrieval: +# services: +# - class: org.yamcs.tctm.ReplayService +# config: +# parameterCache: +# enabled: false diff --git a/config/obc/ppd/pyliner/server_overlay/etc/registry.yaml b/config/obc/ppd/pyliner/server_overlay/etc/registry.yaml new file mode 100644 index 000000000..13be1f379 --- /dev/null +++ b/config/obc/ppd/pyliner/server_overlay/etc/registry.yaml @@ -0,0 +1,19369 @@ +modules: + cpd: + config_base: /home/lgomez/squeaky-weasel/software/airliner/public + cpu_id: CPD + modules: + adsbr: + app_name: ADSBR + commands: + ADSBR_CMD_MID: + commands: + Noop: + cc: 0 + struct: ADSBR_NoArgCmd_t + Reset: + cc: 1 + struct: ADSBR_NoArgCmd_t + msgID: 4587 + ADSBR_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CF_NoArgsCmd_t + msgID: 6636 + ADSBR_WAKEUP_MID: + msgID: 6637 + ADSBR_WAKE_UP_CMD_MID: + commands: + WakeUp: + cc: 0 + struct: CF_NoArgsCmd_t + msgID: null + config: + ADSBR_CMD_PIPE_DEPTH: + name: ADSBR_CMD_PIPE_DEPTH + value: 4 + ADSBR_CMD_PIPE_NAME: + name: ADSBR_CMD_PIPE_NAME + value: ADSBR_CMD_PIPE + ADSBR_CONFIG_TABLE_FILENAME: + name: ADSBR_CONFIG_TABLE_FILENAME + value: /cf/apps/adsbr_config.tbl + ADSBR_CUSTOM_DEV_PATH: + name: ADSBR_CUSTOM_DEV_PATH + value: /tmp/ttyS0 + ADSBR_DATA_PIPE_DEPTH: + name: ADSBR_DATA_PIPE_DEPTH + value: 4 + ADSBR_DATA_PIPE_NAME: + name: ADSBR_DATA_PIPE_NAME + value: ADSBR_DATA_PIPE + ADSBR_MISSION_REV: + name: ADSBR_MISSION_REV + value: 0 + ADSBR_SB_TIMEOUT: + name: ADSBR_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + ADSBR_SCH_PIPE_DEPTH: + name: ADSBR_SCH_PIPE_DEPTH + value: 2 + ADSBR_SCH_PIPE_NAME: + name: ADSBR_SCH_PIPE_NAME + value: ADSBR_SCH_PIPE + ADSBR_SCH_PIPE_PEND_TIME: + name: ADSBR_SCH_PIPE_PEND_TIME + value: 2000 + ADSBR_SCH_PIPE_SEND_HK_RESERVED: + name: ADSBR_SCH_PIPE_SEND_HK_RESERVED + value: 1 + ADSBR_SCH_PIPE_WAKEUP_RESERVED: + name: ADSBR_SCH_PIPE_WAKEUP_RESERVED + value: 1 + ADSBR_STARTUP_TIMEOUT_MSEC: + name: ADSBR_STARTUP_TIMEOUT_MSEC + value: 1000 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/adsbr/wh_design.yaml + events: + ADSBR_CDS_ERR_EID: + id: 9 + ADSBR_CDS_INF_EID: + id: 4 + ADSBR_CMD_ERR_EID: + id: 10 + ADSBR_CMD_INF_EID: + id: 5 + ADSBR_CONFIG_TABLE_ERR_EID: + id: 8 + ADSBR_CONFIG_TABLE_INF_EID: + id: 3 + ADSBR_ERR_EID: + id: 6 + ADSBR_INF_EID: + id: 1 + ADSBR_INIT_ERR_EID: + id: 7 + ADSBR_INIT_INF_EID: + id: 2 + ADSBR_MSGID_ERR_EID: + id: 12 + ADSBR_MSGLEN_ERR_EID: + id: 13 + ADSBR_PIPE_ERR_EID: + id: 11 + long_name: ADSB Receiver + module_type: CFE_APP + perfids: + ADSBR_MAIN_TASK_PERF_ID: + id: 114 + short_name: adsbr + telemetry: + ADSBR_HK_TLM_MID: + msgID: 2543 + struct: ADSBR_HkTlm_t + ak8963: + app_name: AK8963 + commands: + AK8963_CMD_MID: + commands: + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + SendDiag: + cc: 2 + struct: CFE_SB_CmdHdr_t + SetCalibration: + cc: 3 + struct: AK8963_SetCalibrationCmd_t + msgID: 6933 + AK8963_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: AK8963_NoArgCmd + msgID: 6934 + AK8963_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: AK8963_NoArgCmd + msgID: 6935 + config: + AK8963_CMD_PIPE_DEPTH: + name: AK8963_CMD_PIPE_DEPTH + value: 4 + AK8963_CMD_PIPE_NAME: + name: AK8963_CMD_PIPE_NAME + value: AK8963_CMD_PIPE + AK8963_CONFIG_TABLE_FILENAME: + name: AK8963_CONFIG_TABLE_FILENAME + value: /cf/apps/ak8963_config.tbl + AK8963_DATA_PIPE_DEPTH: + name: AK8963_DATA_PIPE_DEPTH + value: 4 + AK8963_DATA_PIPE_NAME: + name: AK8963_DATA_PIPE_NAME + value: AK8963_DATA_PIPE + AK8963_MAG_DIVIDER: + name: AK8963_MAG_DIVIDER + value: 1090.0f + AK8963_MAG_UNIT: + name: AK8963_MAG_UNIT + value: 1.0f + AK8963_MISSION_REV: + name: AK8963_MISSION_REV + value: 0 + AK8963_PARAM_PIPE_DEPTH: + name: AK8963_PARAM_PIPE_DEPTH + value: 4 + AK8963_PARAM_PIPE_NAME: + name: AK8963_PARAM_PIPE_NAME + value: AK8963_PARAM_PIPE + AK8963_SB_TIMEOUT: + name: AK8963_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + AK8963_SCH_PIPE_DEPTH: + name: AK8963_SCH_PIPE_DEPTH + value: 2 + AK8963_SCH_PIPE_NAME: + name: AK8963_SCH_PIPE_NAME + value: AK8963_SCH_PIPE + AK8963_SCH_PIPE_PEND_TIME: + name: AK8963_SCH_PIPE_PEND_TIME + value: 2000 + AK8963_SEND_HK_MID_MAX_MSG_COUNT: + name: AK8963_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + AK8963_STARTUP_TIMEOUT_MSEC: + name: AK8963_STARTUP_TIMEOUT_MSEC + value: 1000 + AK8963_WAKEUP_MID_MAX_MSG_COUNT: + name: AK8963_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/ak8963/wh_design.yaml + events: + AK8963_CALIBRATE_ERR_EID: + id: 18 + AK8963_CALIBRATE_INF_EID: + id: 17 + AK8963_CC_ERR_EID: + id: 9 + AK8963_CFGTBL_GETADDR_ERR_EID: + id: 6 + AK8963_CFGTBL_LOAD_ERR_EID: + id: 12 + AK8963_CFGTBL_MANAGE_ERR_EID: + id: 5 + AK8963_CFGTBL_REG_ERR_EID: + id: 11 + AK8963_CMD_NOOP_EID: + id: 2 + AK8963_INIT_ERR_EID: + id: 14 + AK8963_INIT_INF_EID: + id: 1 + AK8963_MSGID_ERR_EID: + id: 8 + AK8963_MSGLEN_ERR_EID: + id: 10 + AK8963_PIPE_INIT_ERR_EID: + id: 4 + AK8963_RCVMSG_ERR_EID: + id: 7 + AK8963_READ_ERR_EID: + id: 15 + AK8963_SUBSCRIBE_ERR_EID: + id: 3 + AK8963_UNINIT_ERR_EID: + id: 13 + AK8963_VALIDATE_ERR_EID: + id: 16 + long_name: TBD + module_type: CFE_APP + perfids: + AK8963_MAIN_TASK_PERF_ID: + id: null + AK8963_RECEIVE_PERF_ID: + id: null + AK8963_SEND_PERF_ID: + id: null + short_name: ak8963 + telemetry: + AK8963_DIAG_TLM_MID: + msgID: 2835 + struct: AK8963_DiagPacket_t + AK8963_HK_TLM_MID: + msgID: 2836 + struct: AK8963_HkTlm_t + amc: + app_name: AMC + commands: + AMC_CMD_MID: + commands: + ArmDebug: + cc: 2 + struct: AMC_NoArgCmd_t + DebugCmd: + cc: 6 + struct: AMC_DebugCmd_t + DisarmDebug: + cc: 3 + struct: AMC_NoArgCmd_t + DisengageDebug: + cc: 5 + struct: AMC_NoArgCmd_t + EngageDebug: + cc: 4 + struct: AMC_NoArgCmd_t + Noop: + cc: 0 + struct: AMC_NoArgCmd_t + Reset: + cc: 1 + struct: AMC_NoArgCmd_t + msgID: 6938 + AMC_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: AMC_NoArgCmd_t + msgID: 6939 + AMC_UPDATE_MOTORS_MID: + commands: + UpdateMotors: + cc: 0 + struct: AMC_NoArgCmd_t + msgID: 6940 + config: + AMC_CMD_PIPE_DEPTH: + name: AMC_CMD_PIPE_DEPTH + value: 4 + AMC_CMD_PIPE_NAME: + name: AMC_CMD_PIPE_NAME + value: AMC_CMD_PIPE + AMC_DATA_PIPE_DEPTH: + name: AMC_DATA_PIPE_DEPTH + value: 4 + AMC_DATA_PIPE_NAME: + name: AMC_DATA_PIPE_NAME + value: AMC_DATA_PIPE + AMC_MAX_MOTOR_OUTPUTS: + name: AMC_MAX_MOTOR_OUTPUTS + value: 4 + AMC_MAX_PARAMS: + name: AMC_MAX_PARAMS + value: 3 + AMC_MISSION_REV: + name: AMC_MISSION_REV + value: 0 + AMC_MIXER_CONFIG_TABLE_FILENAME: + name: AMC_MIXER_CONFIG_TABLE_FILENAME + value: /cf/apps/amc_mixercfg.tbl + AMC_PARAM_PIPE_DEPTH: + name: AMC_PARAM_PIPE_DEPTH + value: 4 + AMC_PARAM_PIPE_NAME: + name: AMC_PARAM_PIPE_NAME + value: AMC_PARAM_PIPE + AMC_PWM_CONFIG_TABLE_FILENAME: + name: AMC_PWM_CONFIG_TABLE_FILENAME + value: /cf/apps/amc_pwmcfg.tbl + AMC_SB_TIMEOUT: + name: AMC_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + AMC_SCH_PIPE_DEPTH: + name: AMC_SCH_PIPE_DEPTH + value: 15 + AMC_SCH_PIPE_NAME: + name: AMC_SCH_PIPE_NAME + value: AMC_SCH_PIPE + AMC_SCH_PIPE_PEND_TIME: + name: AMC_SCH_PIPE_PEND_TIME + value: 2000 + AMC_SEND_HK_MID_MAX_MSG_COUNT: + name: AMC_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + AMC_STARTUP_TIMEOUT_MSEC: + name: AMC_STARTUP_TIMEOUT_MSEC + value: 1000 + AMC_WAKEUP_MID_MAX_MSG_COUNT: + name: AMC_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/amc/wh_design.yaml + events: + AMC_ARM_DEBUG_INF_EID: + id: 26 + AMC_CC_ERR_EID: + id: 14 + AMC_CMD_DEBUG_ERR_EID: + id: 31 + AMC_CMD_DEBUG_INF_EID: + id: 30 + AMC_CMD_NOOP_EID: + id: 4 + AMC_DELETE_CB_REG_ERR_EID: + id: 25 + AMC_DEVICE_INIT_ERR_EID: + id: 16 + AMC_DISARM_DEBUG_ERR_EID: + id: 34 + AMC_DISARM_DEBUG_INF_EID: + id: 27 + AMC_DISENGAGE_DEBUG_ERR_EID: + id: 33 + AMC_DISENGAGE_DEBUG_INF_EID: + id: 29 + AMC_ENGAGE_DEBUG_ERR_EID: + id: 32 + AMC_ENGAGE_DEBUG_INF_EID: + id: 28 + AMC_INIT_INF_EID: + id: 1 + AMC_MIXER_CFGTBL_GETADDR_ERR_EID: + id: 11 + AMC_MIXER_CFGTBL_LOAD_ERR_EID: + id: 20 + AMC_MIXER_CFGTBL_MANAGE_ERR_EID: + id: 9 + AMC_MIXER_CFGTBL_REG_ERR_EID: + id: 18 + AMC_MIXER_INIT_ERR_EID: + id: 7 + AMC_MIXER_INVALID_MIXER_ERR_EID: + id: 21 + AMC_MIXER_INVLD_ROTOR_CONFIG_ERR_EID: + id: 22 + AMC_MIXER_TBLVAL_NONZER_DATA_ERR_EID: + id: 23 + AMC_MSGID_ERR_EID: + id: 13 + AMC_MSGLEN_ERR_EID: + id: 15 + AMC_PARAM_UPDATE_ERR_EID: + id: 24 + AMC_PIPE_INIT_ERR_EID: + id: 6 + AMC_PWM_CFGTBL_GETADDR_ERR_EID: + id: 10 + AMC_PWM_CFGTBL_LOAD_ERR_EID: + id: 19 + AMC_PWM_CFGTBL_MANAGE_ERR_EID: + id: 8 + AMC_PWM_CFGTBL_MAX_LT_MIN_ERR_EID: + id: 3 + AMC_PWM_CFGTBL_MIN_LT_DISARMED_ERR_EID: + id: 2 + AMC_PWM_CFGTBL_REG_ERR_EID: + id: 17 + AMC_RCVMSG_ERR_EID: + id: 12 + AMC_SUBSCRIBE_ERR_EID: + id: 5 + long_name: Actuator Motor Control + module_type: CFE_APP + perfids: + AMC_MAIN_TASK_PERF_ID: + id: null + AMC_RECEIVE_PERF_ID: + id: null + AMC_SEND_PERF_ID: + id: null + short_name: amc + telemetry: + AMC_HK_TLM_MID: + msgID: 2840 + struct: AMC_HkTlm_t + AMC_OUT_DATA_MID: + msgID: 2841 + struct: AMC_BebopObservationMsg_t + bat: + app_name: BAT + commands: + BAT_CMD_MID: + commands: + Noop: + cc: 0 + struct: BAT_NoArgCmd_t + Reset: + cc: 1 + struct: BAT_NoArgCmd_t + SendDiag: + cc: 2 + struct: BAT_NoArgCmd_t + msgID: 6944 + BAT_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: BAT_NoArgCmd_t + msgID: 6945 + BAT_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: BAT_NoArgCmd_t + msgID: 6946 + config: + BAT_CMD_PIPE_DEPTH: + name: BAT_CMD_PIPE_DEPTH + value: 4 + BAT_CMD_PIPE_NAME: + name: BAT_CMD_PIPE_NAME + value: BAT_CMD_PIPE + BAT_CONFIG_TABLE_FILENAME: + name: BAT_CONFIG_TABLE_FILENAME + value: /cf/apps/bat_config.tbl + BAT_DATA_PIPE_DEPTH: + name: BAT_DATA_PIPE_DEPTH + value: 4 + BAT_DATA_PIPE_NAME: + name: BAT_DATA_PIPE_NAME + value: BAT_DATA_PIPE + BAT_LISTENER_TASK_FLAGS: + name: BAT_LISTENER_TASK_FLAGS + value: OS_ENABLE_CORE_0 + BAT_LISTENER_TASK_STACK_SIZE: + name: BAT_LISTENER_TASK_STACK_SIZE + value: 16000 + BAT_MISSION_REV: + name: BAT_MISSION_REV + value: 0 + BAT_SB_TIMEOUT: + name: BAT_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + BAT_SCH_PIPE_DEPTH: + name: BAT_SCH_PIPE_DEPTH + value: 3 + BAT_SCH_PIPE_NAME: + name: BAT_SCH_PIPE_NAME + value: BAT_SCH_PIPE + BAT_SCH_PIPE_PEND_TIME: + name: BAT_SCH_PIPE_PEND_TIME + value: 2000 + BAT_SEND_HK_MID_MAX_MSG_COUNT: + name: BAT_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + BAT_STARTUP_TIMEOUT_MSEC: + name: BAT_STARTUP_TIMEOUT_MSEC + value: 1000 + BAT_WAKEUP_MID_MAX_MSG_COUNT: + name: BAT_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/bat/wh_design.yaml + events: + BAT_CC_ERR_EID: + id: 9 + BAT_CFGTBL_GETADDR_ERR_EID: + id: 6 + BAT_CFGTBL_LOAD_ERR_EID: + id: 12 + BAT_CFGTBL_MANAGE_ERR_EID: + id: 5 + BAT_CFGTBL_REG_ERR_EID: + id: 11 + BAT_CMD_NOOP_EID: + id: 2 + BAT_INIT_INF_EID: + id: 1 + BAT_LISTENER_CREATE_CHDTASK_ERR_EID: + id: 13 + BAT_MSGID_ERR_EID: + id: 8 + BAT_MSGLEN_ERR_EID: + id: 10 + BAT_PIPE_INIT_ERR_EID: + id: 4 + BAT_RCVMSG_ERR_EID: + id: 7 + BAT_SUBSCRIBE_ERR_EID: + id: 3 + long_name: Battery Manager + module_type: CFE_APP + perfids: + BAT_MAIN_TASK_PERF_ID: + id: null + short_name: bat + telemetry: + BAT_HK_TLM_MID: + msgID: 2847 + struct: BAT_HkTlm_t + cf: + app_name: CF + commands: + CF_CMD_MID: + commands: + Abandon: + cc: 9 + struct: CF_CARSCmd_t + AutoSuspendEn: + cc: 26 + struct: CF_AutoSuspendEnCmd_t + Cancel: + cc: 8 + struct: CF_CARSCmd_t + DequeueNode: + cc: 20 + struct: CF_DequeueNodeCmd_t + DisableDequeue: + cc: 17 + struct: CF_EnDisDequeueCmd_t + DisableDirPolling: + cc: 19 + struct: CF_EnDisPollCmd_t + EnableDequeue: + cc: 16 + struct: CF_EnDisDequeueCmd_t + EnableDirPolling: + cc: 18 + struct: CF_EnDisPollCmd_t + Freeze: + cc: 4 + struct: CF_NoArgsCmd_t + GetMIBParameter: + cc: 11 + struct: CF_GetMibParam_t + GiveTake: + cc: 25 + struct: CF_GiveTakeCmd_t + Kickstart: + cc: 23 + struct: CF_KickstartCmd_t + Noop: + cc: 0 + struct: CF_NoArgsCmd_t + PlaybackDirectory: + cc: 3 + struct: CF_PlaybackDirCmd_t + PlaybackFile: + cc: 2 + struct: CF_PlaybackFileCmd_t + PurgeQueue: + cc: 21 + struct: CF_PurgeQueueCmd_t + QuickStat: + cc: 24 + struct: CF_QuickStatCmd_t + ResetCounters: + cc: 1 + struct: CF_ResetCtrsCmd_t + Resume: + cc: 7 + struct: CF_CARSCmd_t + SendConfigParameters: + cc: 14 + struct: CF_NoArgsCmd_t + SendTransaction: + cc: 12 + struct: CF_SendTransCmd_t + SetCyclesPerWakeup: + cc: 27 + struct: CF_CyclesPerWakeupCmd_t + SetMIBParameter: + cc: 10 + struct: CF_SetMibParam_t + SetPollParameter: + cc: 13 + struct: CF_SetPollParamCmd_t + Suspend: + cc: 6 + struct: CF_CARSCmd_t + Thaw: + cc: 5 + struct: CF_NoArgsCmd_t + WriteActiveTrans: + cc: 22 + struct: CF_WriteActiveTransCmd_t + WriteQueue: + cc: 15 + struct: CF_WriteQueueCmd_t + msgID: 6716 + CF_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CF_NoArgsCmd_t + msgID: 6717 + CF_SPACE_TO_GND_PDU_MID: + msgID: 2622 + CF_WAKE_UP_REQ_CMD_MID: + commands: + WakeUp: + cc: 0 + struct: CF_NoArgsCmd_t + msgID: 6719 + config: + CF_AUTOSUSPEND_MAX_TRANS: + name: CF_AUTOSUSPEND_MAX_TRANS + value: 1 + CF_CONFIG_TABLE_FILENAME: + name: CF_CONFIG_TABLE_FILENAME + value: /cf/cf_cfgtable.tbl + CF_CONFIG_TABLE_NAME: + name: CF_CONFIG_TABLE_NAME + value: ConfigTable + CF_DEFAULT_QUEUE_INFO_FILENAME: + name: CF_DEFAULT_QUEUE_INFO_FILENAME + value: /ram/cf_queue_info.dat + CF_ENGINE_TEMP_FILE_PREFIX: + name: CF_ENGINE_TEMP_FILE_PREFIX + value: /ram/cftmp + CF_INCOMING_PDU_BUF_SIZE: + name: CF_INCOMING_PDU_BUF_SIZE + value: 512 + CF_MAX_PLAYBACK_CHANNELS: + name: CF_MAX_PLAYBACK_CHANNELS + value: 2 + CF_MAX_POLLING_DIRS_PER_CHAN: + name: CF_MAX_POLLING_DIRS_PER_CHAN + value: 8 + CF_MAX_SIMULTANEOUS_TRANSACTIONS: + name: CF_MAX_SIMULTANEOUS_TRANSACTIONS + value: 100 + CF_MEMORY_POOL_BYTES: + name: CF_MEMORY_POOL_BYTES + value: 32768 + CF_MISSION_REV: + name: CF_MISSION_REV + value: 0 + CF_NUM_INPUT_CHANNELS: + name: CF_NUM_INPUT_CHANNELS + value: 1 + CF_OUTGOING_PDU_BUF_SIZE: + name: CF_OUTGOING_PDU_BUF_SIZE + value: 2048 + CF_PIPE_DEPTH: + name: CF_PIPE_DEPTH + value: 40 + CF_SEND_FIXED_SIZE_PKTS: + name: CF_SEND_FIXED_SIZE_PKTS + value: 0 + CF_STARTUP_SYNC_TIMEOUT: + name: CF_STARTUP_SYNC_TIMEOUT + value: 65000 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/cf/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + CF_CARS_CMD_EID: + id: 48 + CF_CARS_ERR1_EID: + id: 49 + CF_CC_ERR_EID: + id: 2 + CF_CFDP_ENGINE_DEB_EID: + id: 15 + CF_CFDP_ENGINE_ERR_EID: + id: 18 + CF_CFDP_ENGINE_INFO_EID: + id: 16 + CF_CFDP_ENGINE_WARN_EID: + id: 17 + CF_CFGTBL_GADR_ERR_EID: + id: 44 + CF_CFGTBL_LD_ERR_EID: + id: 42 + CF_CFGTBL_MNG_ERR_EID: + id: 43 + CF_CFGTBL_REG_ERR_EID: + id: 41 + CF_CMD_LEN_ERR_EID: + id: 4 + CF_CR_PIPE_ERR_EID: + id: 8 + CF_DEQ_NODE1_EID: + id: 68 + CF_DEQ_NODE2_EID: + id: 69 + CF_DEQ_NODE_ERR1_EID: + id: 62 + CF_DEQ_NODE_ERR2_EID: + id: 63 + CF_DEQ_NODE_ERR3_EID: + id: 64 + CF_DEQ_NODE_ERR4_EID: + id: 65 + CF_DIS_DQ_CMD_EID: + id: 88 + CF_DIS_POLL_CMD1_EID: + id: 94 + CF_DIS_POLL_CMD2_EID: + id: 95 + CF_DIS_POLL_ERR1_EID: + id: 96 + CF_DIS_POLL_ERR2_EID: + id: 97 + CF_DQ_CMD_ERR1_EID: + id: 87 + CF_DQ_CMD_ERR2_EID: + id: 89 + CF_ENA_DQ_CMD_EID: + id: 86 + CF_ENA_POLL_CMD1_EID: + id: 90 + CF_ENA_POLL_CMD2_EID: + id: 91 + CF_ENA_POLL_ERR1_EID: + id: 92 + CF_ENA_POLL_ERR2_EID: + id: 93 + CF_ENDIS_AUTO_SUS_CMD_EID: + id: 25 + CF_FILEWRITE_ERR_EID: + id: 54 + CF_FILE_CLOSE_ERR_EID: + id: 36 + CF_FILE_IO_ERR1_EID: + id: 7 + CF_FILE_IO_ERR2_EID: + id: 12 + CF_FILE_IO_ERR3_EID: + id: 19 + CF_FREEZE_CMD_EID: + id: 46 + CF_GET_MIB_CMD_EID: + id: 51 + CF_GIVETAKE_CMD_EID: + id: 158 + CF_GIVETAKE_ERR1_EID: + id: 130 + CF_GIVETAKE_ERR2_EID: + id: 131 + CF_GIVETAKE_ERR3_EID: + id: 132 + CF_GIVETAKE_ERR4_EID: + id: 133 + CF_HANDSHAKE_ERR1_EID: + id: 73 + CF_IND_ACK_TIM_EXP_EID: + id: 32 + CF_IND_FAU_UNEX_EID: + id: 75 + CF_IND_INA_TIM_EXP_EID: + id: 33 + CF_IND_NACK_TIM_EXP_EID: + id: 34 + CF_IND_UNEXP_TYPE_EID: + id: 35 + CF_IND_XACT_ABA_EID: + id: 29 + CF_IND_XACT_FAU_EID: + id: 28 + CF_IND_XACT_RES_EID: + id: 27 + CF_IND_XACT_SUS_EID: + id: 26 + CF_INIT_EID: + id: 1 + CF_INV_FILENAME_EID: + id: 157 + CF_IN_TRANS_FAILED_EID: + id: 22 + CF_IN_TRANS_OK_EID: + id: 20 + CF_IN_TRANS_START_EID: + id: 102 + CF_KICKSTART_CMD_EID: + id: 30 + CF_KICKSTART_ERR1_EID: + id: 56 + CF_LOGIC_NAME_ERR_EID: + id: 14 + CF_MACH_ALLOC_ERR_EID: + id: 37 + CF_MEM_ALLOC_ERR_EID: + id: 84 + CF_MEM_DEALLOC_ERR_EID: + id: 85 + CF_MID_ERR_EID: + id: 3 + CF_MV_UP_NODE_EID: + id: 24 + CF_NOOP_CMD_EID: + id: 5 + CF_NO_TERM_ERR_EID: + id: 120 + CF_OPEN_DIR_ERR_EID: + id: 98 + CF_OUT_SND_ERR1_EID: + id: 152 + CF_OUT_SND_ERR2_EID: + id: 153 + CF_OUT_SND_ERR3_EID: + id: 154 + CF_OUT_TRANS_FAILED_EID: + id: 23 + CF_OUT_TRANS_OK_EID: + id: 21 + CF_OUT_TRANS_START_EID: + id: 103 + CF_PB_DIR_ERR1_EID: + id: 135 + CF_PB_DIR_ERR2_EID: + id: 136 + CF_PB_DIR_ERR3_EID: + id: 137 + CF_PB_DIR_ERR4_EID: + id: 138 + CF_PB_DIR_ERR5_EID: + id: 139 + CF_PB_FILE_ERR1_EID: + id: 76 + CF_PB_FILE_ERR2_EID: + id: 77 + CF_PB_FILE_ERR3_EID: + id: 78 + CF_PB_FILE_ERR4_EID: + id: 79 + CF_PB_FILE_ERR5_EID: + id: 80 + CF_PB_FILE_ERR6_EID: + id: 81 + CF_PDU_RCV_ERR1_EID: + id: 70 + CF_PDU_RCV_ERR2_EID: + id: 71 + CF_PDU_RCV_ERR3_EID: + id: 72 + CF_PLAYBACK_DIR_EID: + id: 134 + CF_PLAYBACK_FILE_EID: + id: 38 + CF_PURGEQ1_EID: + id: 146 + CF_PURGEQ2_EID: + id: 147 + CF_PURGEQ_ERR1_EID: + id: 140 + CF_PURGEQ_ERR2_EID: + id: 141 + CF_PURGEQ_ERR3_EID: + id: 142 + CF_PURGEQ_ERR4_EID: + id: 143 + CF_PURGEQ_ERR5_EID: + id: 144 + CF_PURGEQ_ERR6_EID: + id: 145 + CF_PUT_REQ_ERR1_EID: + id: 39 + CF_PUT_REQ_ERR2_EID: + id: 40 + CF_QDIR_ACTIVEFILE_EID: + id: 155 + CF_QDIR_INV_NAME1_EID: + id: 82 + CF_QDIR_INV_NAME2_EID: + id: 83 + CF_QDIR_NOMEM1_EID: + id: 99 + CF_QDIR_NOMEM2_EID: + id: 100 + CF_QDIR_OPENFILE_EID: + id: 156 + CF_QDIR_PQFUL_EID: + id: 101 + CF_QUICK_CMD_EID: + id: 160 + CF_QUICK_ERR1_EID: + id: 159 + CF_RCV_MSG_ERR_EID: + id: 11 + CF_REMOVE_ERR1_EID: + id: 13 + CF_REMOVE_ERR2_EID: + id: 31 + CF_RESET_CMD_EID: + id: 6 + CF_SET_MIB_CMD_EID: + id: 50 + CF_SET_MIB_CMD_ERR1_EID: + id: 104 + CF_SET_MIB_CMD_ERR2_EID: + id: 105 + CF_SET_POLL_PARAM1_EID: + id: 128 + CF_SET_POLL_PARAM_ERR1_EID: + id: 121 + CF_SET_POLL_PARAM_ERR2_EID: + id: 122 + CF_SET_POLL_PARAM_ERR3_EID: + id: 123 + CF_SET_POLL_PARAM_ERR4_EID: + id: 124 + CF_SET_POLL_PARAM_ERR5_EID: + id: 125 + CF_SET_POLL_PARAM_ERR6_EID: + id: 126 + CF_SET_POLL_PARAM_ERR7_EID: + id: 127 + CF_SND_CFG_CMD_EID: + id: 129 + CF_SND_QUE_ERR1_EID: + id: 60 + CF_SND_Q_INFO_EID: + id: 53 + CF_SND_TRANS_CMD_EID: + id: 74 + CF_SND_TRANS_ERR_EID: + id: 61 + CF_SUB_CMD_ERR_EID: + id: 10 + CF_SUB_PDUS_ERR_EID: + id: 52 + CF_SUB_REQ_ERR_EID: + id: 9 + CF_SUB_WAKE_ERR_EID: + id: 55 + CF_TBL_LD_ATTEMPT_EID: + id: 151 + CF_TBL_VAL_ERR10_EID: + id: 115 + CF_TBL_VAL_ERR11_EID: + id: 116 + CF_TBL_VAL_ERR12_EID: + id: 117 + CF_TBL_VAL_ERR13_EID: + id: 118 + CF_TBL_VAL_ERR14_EID: + id: 119 + CF_TBL_VAL_ERR1_EID: + id: 106 + CF_TBL_VAL_ERR2_EID: + id: 107 + CF_TBL_VAL_ERR3_EID: + id: 108 + CF_TBL_VAL_ERR4_EID: + id: 109 + CF_TBL_VAL_ERR5_EID: + id: 110 + CF_TBL_VAL_ERR6_EID: + id: 111 + CF_TBL_VAL_ERR7_EID: + id: 112 + CF_TBL_VAL_ERR8_EID: + id: 113 + CF_TBL_VAL_ERR9_EID: + id: 114 + CF_THAW_CMD_EID: + id: 47 + CF_TRANS_SUSPEND_OVRFLW_EID: + id: 45 + CF_WRACT_ERR1_EID: + id: 148 + CF_WRACT_ERR2_EID: + id: 149 + CF_WRACT_TRANS_EID: + id: 150 + CF_WR_CMD_ERR1_EID: + id: 57 + CF_WR_CMD_ERR2_EID: + id: 58 + CF_WR_CMD_ERR3_EID: + id: 59 + CF_WR_CMD_ERR4_EID: + id: 66 + long_name: CFDP File Delivery + module_type: CFE_APP + msg_def_overrides: + - member: Param + parent: CF_SetMibParam_t + type: string + - member: Value + parent: CF_SetMibParam_t + type: string + - member: Param + parent: CF_GetMibParam_t + type: string + - enumerations: + ALL: 0 + CMD: 1 + DOWN: 4 + FAULT: 2 + UP: 3 + member: Value + parent: CF_ResetCtrsCmd_t + type: enumeration + - enumerations: + CLASS_1: 1 + CLASS_2: 2 + member: Class + parent: CF_PlaybackFileCmd_t + type: enumeration + - enumerations: + DELETE: 0 + KEEP: 1 + member: Preserve + parent: CF_PlaybackFileCmd_t + type: enumeration + - member: PeerEntityId + parent: CF_PlaybackFileCmd_t + type: string + - member: SrcFilename + parent: CF_PlaybackFileCmd_t + type: string + - member: DstFilename + parent: CF_PlaybackFileCmd_t + type: string + - enumerations: + CLASS_1: 1 + CLASS_2: 2 + member: Class + parent: CF_PlaybackDirCmd_t + type: enumeration + - enumerations: + DELETE: 0 + KEEP: 1 + member: Preserve + parent: CF_PlaybackDirCmd_t + type: enumeration + - member: PeerEntityId + parent: CF_PlaybackDirCmd_t + type: string + - member: SrcPath + parent: CF_PlaybackDirCmd_t + type: string + - member: DstPath + parent: CF_PlaybackDirCmd_t + type: string + - enumerations: + CLASS_1: 1 + CLASS_2: 2 + member: Class + parent: CF_SetPollParamCmd_t + type: enumeration + - enumerations: + DELETE: 0 + KEEP: 1 + member: Preserve + parent: CF_SetPollParamCmd_t + type: enumeration + - member: PeerEntityId + parent: CF_SetPollParamCmd_t + type: string + - member: SrcPath + parent: CF_SetPollParamCmd_t + type: string + - member: DstPath + parent: CF_SetPollParamCmd_t + type: string + - member: Trans + parent: CF_CARSCmd_t + type: string + - enumerations: + DOWN: 2 + UP: 1 + member: Type + parent: CF_WriteQueueCmd_t + type: enumeration + - enumerations: + ACTIVE: 1 + HISTORY: 2 + PENDING: 0 + member: Queue + parent: CF_WriteQueueCmd_t + type: enumeration + - member: Filename + parent: CF_WriteQueueCmd_t + type: string + - enumerations: + ALL: 0 + DOWN: 2 + UP: 1 + member: Type + parent: CF_WriteActiveTransCmd_t + type: enumeration + - member: Filename + parent: CF_WriteActiveTransCmd_t + type: string + - member: Trans + parent: CF_SendTransCmd_t + type: string + - member: Trans + parent: CF_DequeueNodeCmd_t + type: string + - enumerations: + DOWN: 2 + UP: 1 + member: Type + parent: CF_PurgeQueueCmd_t + type: enumeration + - enumerations: + ACTIVE: 1 + HISTORY: 2 + PENDING: 0 + member: Queue + parent: CF_PurgeQueueCmd_t + type: enumeration + - member: Trans + parent: CF_QuickStatCmd_t + type: string + - enumerations: + GIVE: 0 + TAKE: 1 + member: GiveOrTakeSemaphore + parent: CF_GiveTakeCmd_t + type: enumeration + - enumerations: + DISABLE: 0 + ENABLE: 1 + member: EnableDisable + parent: CF_AutoSuspendEnCmd_t + type: enumeration + - enumerations: + DISABLE: 0 + ENABLE: 1 + member: EnFlag + parent: AutoSuspend_Telemetry_t + type: enumeration + - member: FlightEngineEntityId + parent: Engine_Telemetry_t + type: string + - member: LastFileUplinked + parent: Uplink_Telemetry_t + type: string + - member: LastFailedTrans + parent: App_Telemetry_t + type: string + - enumerations: + DATA_COMPLETE: 2 + DATA_INCOMPLETE: 3 + DONT_CARE_0: 0 + DONT_CARE_1: 1 + member: DeliCode + parent: CF_EngTransStat_t + type: enumeration + - enumerations: + ABANDONED: 3 + CANCELLED: 2 + SUCCESSFUL: 1 + UNKNOWN: 0 + member: FinalStat + parent: CF_EngTransStat_t + type: enumeration + - enumerations: + CLASS_1_RECEIVER: 2 + CLASS_1_SENDER: 1 + CLASS_2_RECEIVER: 4 + CLASS_2_SENDER: 3 + member: Role + parent: CF_EngTransStat_t + type: enumeration + - enumerations: + FINISHED: 7 + S1: 1 + S2: 2 + S3: 3 + S4: 4 + S5: 5 + S6: 6 + UNINITIALIZED: 0 + member: State + parent: CF_EngTransStat_t + type: enumeration + - member: SrcFile + parent: CF_EngTransStat_t + type: string + - member: DstFile + parent: CF_EngTransStat_t + type: string + - member: TmpFile + parent: CF_EngTransStat_t + type: string + - enumerations: + ABANDON: 3 + ACTIVE: 9 + ALREADY_ACTIVE: 6 + CANCELLED: 2 + NO_META: 4 + PENDING: 5 + PUT_REQ_FAIL: 8 + PUT_REQ_ISSUED: 7 + SUCCESS: 1 + UNKNOWN: 0 + member: Status + parent: CF_AppTransStat_t + type: enumeration + - enumerations: + CANCEL_REQUEST_RECEIVED: 15 + FILESTORE_REJECTION: 4 + FILE_CHECKSUM_FAILURE: 5 + FILE_SIZE_ERROR: 6 + INACTIVITY_DETECTED: 8 + INVALID_FILE_STRUCTURE: 9 + INVALID_TRANSMISSION_MODE: 3 + KEEP_ALIVE_LIMIT_REACHED: 2 + NAK_LIMIT_REACHED: 7 + NO_ERROR: 0 + POSITIVE_ACK_LIMIT_REACHED: 1 + RESERVED_BY_CCSDS_10: 10 + RESERVED_BY_CCSDS_11: 11 + RESERVED_BY_CCSDS_12: 12 + RESERVED_BY_CCSDS_13: 13 + SUSPEND_REQUEST_RECEIVED: 14 + member: CondCode + parent: CF_AppTransStat_t + type: enumeration + - enumerations: + CLASS_1: 1 + CLASS_2: 2 + member: Class + parent: CF_AppTransStat_t + type: enumeration + - enumerations: + PLAYBACK_DIR_CMD: 2 + PLAYBACK_FILE_CMD: 1 + POLL_DIRECTORY: 3 + member: Source + parent: CF_AppTransStat_t + type: enumeration + - enumerations: + ALL: 0 + PLAYBACK: 2 + UPLINK: 1 + member: NodeType + parent: CF_AppTransStat_t + type: enumeration + - member: SrcEntityId + parent: CF_AppTransStat_t + type: string + - member: SrcFile + parent: CF_AppTransStat_t + type: string + - member: DstFile + parent: CF_AppTransStat_t + type: string + - enumerations: + ABANDON: 3 + ACTIVE: 9 + ALREADY_ACTIVE: 6 + CANCELLED: 2 + NO_META: 4 + PENDING: 5 + PUT_REQ_FAIL: 8 + PUT_REQ_ISSUED: 7 + SUCCESS: 1 + UNKNOWN: 0 + member: TransStatus + parent: CF_QueueInfoFileEntry_t + type: enumeration + - member: SrcEntityId + parent: CF_QueueInfoFileEntry_t + type: string + - member: SrcFile + parent: CF_QueueInfoFileEntry_t + type: string + - member: SaveIncompleteFiles + parent: CF_ConfigPacket_t + type: string + - member: PipeName + parent: CF_ConfigPacket_t + type: string + - member: TmpFilePrefix + parent: CF_ConfigPacket_t + type: string + - member: CfgTblName + parent: CF_ConfigPacket_t + type: string + - member: CfgTbleFilename + parent: CF_ConfigPacket_t + type: string + - member: DefQInfoFilename + parent: CF_ConfigPacket_t + type: string + perfids: + CF_CYCLE_ENG_PERF_ID: + id: 36 + CF_FCLOSE_PERF_ID: + id: 37 + CF_FILESIZE_PERF_ID: + id: 38 + CF_FOPEN_PERF_ID: + id: 39 + CF_FREAD_PERF_ID: + id: 40 + CF_FWRITE_PERF_ID: + id: 41 + CF_QDIRFILES_PERF_ID: + id: 42 + CF_REDLIGHT_PERF_ID: + id: 43 + short_name: cf + telemetry: + CF_CONFIG_TLM_MID: + msgID: 2616 + struct: CF_ConfigPacket_t + CF_HK_TLM_MID: + msgID: 2617 + struct: CF_HkPacket_t + CF_INCOMING_PDU_MID: + msgID: 6714 + CF_TRANS_TLM_MID: + msgID: 2619 + struct: CF_TransPacket_t + cfs_lib: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + ci: + app_name: CI + commands: + CI_CMD_MID: + commands: + AuthorizeCmd: + cc: 2 + struct: CI_CmdAuthData_t + DeauthorizeCmd: + cc: 3 + struct: CI_CmdAuthData_t + DeregisterCmd: + cc: 5 + struct: CI_CmdRegData_t + Noop: + cc: 0 + struct: CI_NoArgCmd_t + RegisterCmd: + cc: 4 + struct: CI_CmdRegData_t + Reset: + cc: 1 + struct: CI_NoArgCmd_t + UpdateCmd: + cc: 6 + struct: CI_CmdRegData_t + msgID: 6708 + CI_INGEST_COMMANDS_MID: + commands: + IngestCommands: + cc: 0 + struct: CI_NoArgCmd_t + msgID: 7141 + CI_PROCESS_TIMEOUTS_MID: + commands: + ProcessTimeouts: + cc: 0 + struct: CI_NoArgCmd_t + msgID: 6709 + CI_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CI_NoArgCmd_t + msgID: 6710 + CI_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: CI_NoArgCmd_t + msgID: 6711 + config: + CI_CHECKSUM_REQUIRED: + name: CI_CHECKSUM_REQUIRED + value: 0 + CI_CMD_MAX_TIMEOUT: + name: CI_CMD_MAX_TIMEOUT + value: 20 + CI_CMD_PIPE_DEPTH: + name: CI_CMD_PIPE_DEPTH + value: 4 + CI_CMD_PIPE_NAME: + name: CI_CMD_PIPE_NAME + value: CI_CMD_PIPE + CI_CONFIG_TABLE_FILENAME: + name: CI_CONFIG_TABLE_FILENAME + value: /cf/apps/ci_config.tbl + CI_DATA_PIPE_DEPTH: + name: CI_DATA_PIPE_DEPTH + value: 4 + CI_DATA_PIPE_NAME: + name: CI_DATA_PIPE_NAME + value: CI_DATA_PIPE + CI_INGEST_MODE: + name: CI_INGEST_MODE + value: CI_BHV_OPTIMISTIC + CI_MAX_ENC_LEN: + name: CI_MAX_ENC_LEN + value: 32768 + CI_MAX_RGST_CMDS: + name: CI_MAX_RGST_CMDS + value: 100 + CI_MISSION_REV: + name: CI_MISSION_REV + value: 0 + CI_SB_TIMEOUT: + name: CI_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + CI_SCH_PIPE_DEPTH: + name: CI_SCH_PIPE_DEPTH + value: 2 + CI_SCH_PIPE_NAME: + name: CI_SCH_PIPE_NAME + value: CI_SCH_PIPE + CI_SCH_PIPE_PEND_TIME: + name: CI_SCH_PIPE_PEND_TIME + value: 2000 + CI_SCH_PIPE_PROC_TIMEOUT_RESERVED: + name: CI_SCH_PIPE_PROC_TIMEOUT_RESERVED + value: 1 + CI_SCH_PIPE_SEND_HK_RESERVED: + name: CI_SCH_PIPE_SEND_HK_RESERVED + value: 1 + CI_SCH_PIPE_WAKEUP_RESERVED: + name: CI_SCH_PIPE_WAKEUP_RESERVED + value: 1 + CI_STARTUP_TIMEOUT_MSEC: + name: CI_STARTUP_TIMEOUT_MSEC + value: 5000 + CI_TIMEOUT_TABLE_FILENAME: + name: CI_TIMEOUT_TABLE_FILENAME + value: /cf/apps/ci_timeout.tbl + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/ci/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + CI_CMD_ALREADY_REGISTERED_EID: + id: 28 + CI_CMD_AUTHORIZED_EID: + id: 22 + CI_CMD_AUTH_INV_MODE_EID: + id: 20 + CI_CMD_AUTH_INV_STATE_EID: + id: 21 + CI_CMD_AUTH_NOT_REG_EID: + id: 19 + CI_CMD_AUTH_TIMEOUT_EID: + id: 18 + CI_CMD_DEAUTHORIZED_EID: + id: 26 + CI_CMD_DEAUTH_INV_MODE_EID: + id: 24 + CI_CMD_DEAUTH_INV_STATE_EID: + id: 25 + CI_CMD_DEAUTH_NOT_REG_EID: + id: 23 + CI_CMD_DEREGISTERED_EID: + id: 29 + CI_CMD_ERR_EID: + id: 8 + CI_CMD_INF_EID: + id: 3 + CI_CMD_INGEST_ERR_EID: + id: 13 + CI_CMD_INVALID_EID: + id: 16 + CI_CMD_NOT_REGISTERED_EID: + id: 30 + CI_CMD_REGISTERED_EID: + id: 27 + CI_CMD_REG_ERR_EID: + id: 31 + CI_CMD_UNAUTHORIZED_EID: + id: 17 + CI_CMD_UPDATE_REG_EID: + id: 33 + CI_CMD_UPDT_REG_INVLD_STATE_EI: + id: 32 + CI_CONFIG_TABLE_ERR_EID: + id: 6 + CI_CONFIG_TABLE_INF_EID: + id: 2 + CI_ENA_INF_EID: + id: 15 + CI_ERR_EID: + id: 4 + CI_INIT_ERR_EID: + id: 5 + CI_INIT_INF_EID: + id: 1 + CI_MSGID_ERR_EID: + id: 10 + CI_MSGLEN_ERR_EID: + id: 11 + CI_NO_DECODE_FUNC_EID: + id: 34 + CI_PIPE_ERR_EID: + id: 9 + CI_TIMEOUT_TABLE_ERR_EID: + id: 7 + long_name: Command Ingest + module_type: CFE_APP + perfids: + CF_APPMAIN_PERF_ID: + id: 33 + CI_MAIN_TASK_PERF_ID: + id: 34 + CI_SOCKET_RCV_PERF_ID: + id: 35 + short_name: ci + telemetry: + CI_HK_TLM_MID: + msgID: 2610 + struct: CI_HkTlm_t + core: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + modules: + cfe: + config: + CFE_CMD_APPID_BASE_CPU1: + name: CFE_CMD_APPID_BASE_CPU1 + value: 1 + CFE_CMD_APPID_BASE_CPU2: + name: CFE_CMD_APPID_BASE_CPU2 + value: 33 + CFE_CMD_APPID_BASE_CPU3: + name: CFE_CMD_APPID_BASE_CPU3 + value: 65 + CFE_CMD_MID_BASE_CPU1: + name: CFE_CMD_MID_BASE_CPU1 + value: 6144 + CFE_CMD_MID_BASE_CPU2: + name: CFE_CMD_MID_BASE_CPU2 + value: 6176 + CFE_CMD_MID_BASE_CPU3: + name: CFE_CMD_MID_BASE_CPU3 + value: 6208 + CFE_CMD_MID_BASE_GLOB: + name: CFE_CMD_MID_BASE_GLOB + value: 6240 + CFE_CORE_MAX_STARTUP_MSEC: + name: CFE_CORE_MAX_STARTUP_MSEC + value: 30000 + CFE_CPU_ID: + name: CFE_CPU_ID + value: 1 + CFE_CPU_NAME: + name: CFE_CPU_NAME + value: CPU1 + CFE_MISSION_REV: + name: CFE_MISSION_REV + value: 0 + CFE_SPACECRAFT_ID: + name: CFE_SPACECRAFT_ID + value: 66 + CFE_TLM_APPID_BASE_CPU1: + name: CFE_TLM_APPID_BASE_CPU1 + value: 0 + CFE_TLM_APPID_BASE_CPU2: + name: CFE_TLM_APPID_BASE_CPU2 + value: 32 + CFE_TLM_APPID_BASE_CPU3: + name: CFE_TLM_APPID_BASE_CPU3 + value: 64 + CFE_TLM_MID_BASE_CPU1: + name: CFE_TLM_MID_BASE_CPU1 + value: 2048 + CFE_TLM_MID_BASE_CPU2: + name: CFE_TLM_MID_BASE_CPU2 + value: 2080 + CFE_TLM_MID_BASE_CPU3: + name: CFE_TLM_MID_BASE_CPU3 + value: 2112 + CFE_TLM_MID_BASE_GLOB: + name: CFE_TLM_MID_BASE_GLOB + value: 2144 + MESSAGE_FORMAT_IS_CCSDS: + name: MESSAGE_FORMAT_IS_CCSDS + value: true + definition: /home/lgomez/squeaky-weasel/software/airliner/public/core/base/cfe/wh_design.yaml + long_name: Core Flight Executive + modules: + cfe_es: + app_name: CFE_ES + commands: + CFE_ES_CMD_MID: + commands: + AppReload: + cc: 7 + struct: CFE_ES_AppReloadCmd_t + ClearERLog: + cc: 12 + struct: CFE_SB_CmdHdr_t + ClearSysLog: + cc: 10 + struct: CFE_SB_CmdHdr_t + DeleteCDS: + cc: 21 + struct: CFE_ES_DeleteCDSCmd_t + DumpCDSReg: + cc: 23 + struct: CFE_ES_DumpCDSRegCmd_t + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + PerfSetFilterMask: + cc: 16 + struct: CFE_ES_PerfSetFilterMaskCmd_t + PerfSetTrigMask: + cc: 17 + struct: CFE_ES_PerfSetTrigMaskCmd_t + PerfStart: + cc: 14 + struct: CFE_ES_PerfStartCmd_t + PerfStop: + cc: 15 + struct: CFE_ES_PerfStopCmd_t + QueryAllApps: + cc: 9 + struct: CFE_ES_QueryAllCmd_t + QueryAllTasks: + cc: 24 + struct: CFE_ES_QueryAllTasksCmd_t + QueryOneApp: + cc: 8 + struct: CFE_ES_AppNameCmd_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + ResetPRCount: + cc: 19 + struct: CFE_SB_CmdHdr_t + Restart: + cc: 2 + struct: CFE_ES_RestartCmd_t + RestartApp: + cc: 6 + struct: CFE_ES_AppNameCmd_t + SetMaxPRCount: + cc: 20 + struct: CFE_ES_SetMaxPRCountCmd_t + SetSysLogMode: + cc: 18 + struct: CFE_ES_OverWriteSysLogCmd_t + ShellCmd: + cc: 3 + struct: CFE_ES_ShellCmd_t + StartApp: + cc: 4 + struct: CFE_ES_StartAppCmd_t + StopApp: + cc: 5 + struct: CFE_ES_AppNameCmd_t + TlmPoolStats: + cc: 22 + struct: CFE_ES_TlmPoolStatsCmd_t + WriteERLog: + cc: 13 + struct: CFE_ES_WriteERlogCmd_t + WriteSysLog: + cc: 11 + struct: CFE_ES_WriteSyslogCmd_t + msgID: 6660 + CFE_ES_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6661 + config: + CFE_ES_APP_KILL_TIMEOUT: + name: CFE_ES_APP_KILL_TIMEOUT + value: 5 + CFE_ES_APP_SCAN_RATE: + name: CFE_ES_APP_SCAN_RATE + value: 1000 + CFE_ES_APP_TLM_MSG: + name: CFE_ES_APP_TLM_MSG + value: 11 + CFE_ES_CDS_MAX_NAME_LENGTH: + name: CFE_ES_CDS_MAX_NAME_LENGTH + value: 16 + CFE_ES_CDS_MAX_NUM_ENTRIES: + name: CFE_ES_CDS_MAX_NUM_ENTRIES + value: 512 + CFE_ES_CDS_MEM_BLOCK_SIZE: + name: CFE_ES_CDS_MEM_BLOCK_SIZE + value: 80000 + CFE_ES_CDS_MEM_BLOCK_SIZE_01: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_01 + value: 8 + CFE_ES_CDS_MEM_BLOCK_SIZE_02: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_02 + value: 16 + CFE_ES_CDS_MEM_BLOCK_SIZE_03: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_03 + value: 32 + CFE_ES_CDS_MEM_BLOCK_SIZE_04: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_04 + value: 48 + CFE_ES_CDS_MEM_BLOCK_SIZE_05: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_05 + value: 64 + CFE_ES_CDS_MEM_BLOCK_SIZE_06: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_06 + value: 96 + CFE_ES_CDS_MEM_BLOCK_SIZE_07: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_07 + value: 128 + CFE_ES_CDS_MEM_BLOCK_SIZE_08: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_08 + value: 160 + CFE_ES_CDS_MEM_BLOCK_SIZE_09: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_09 + value: 256 + CFE_ES_CDS_MEM_BLOCK_SIZE_10: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_10 + value: 512 + CFE_ES_CDS_MEM_BLOCK_SIZE_11: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_11 + value: 1024 + CFE_ES_CDS_MEM_BLOCK_SIZE_12: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_12 + value: 2048 + CFE_ES_CDS_MEM_BLOCK_SIZE_13: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_13 + value: 4096 + CFE_ES_CDS_MEM_BLOCK_SIZE_14: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_14 + value: 8192 + CFE_ES_CDS_MEM_BLOCK_SIZE_15: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_15 + value: 16384 + CFE_ES_CDS_MEM_BLOCK_SIZE_16: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_16 + value: 32768 + CFE_ES_CDS_SIZE: + name: CFE_ES_CDS_SIZE + value: 128 * 2048 + CFE_ES_CMD_MSG: + name: CFE_ES_CMD_MSG + value: 6 + CFE_ES_CRC_16: + name: CFE_ES_CRC_16 + value: 2 + CFE_ES_CRC_32: + name: CFE_ES_CRC_32 + value: 3 + CFE_ES_CRC_8: + name: CFE_ES_CRC_8 + value: 1 + CFE_ES_DEFAULT_APP_LOG_FILE: + name: CFE_ES_DEFAULT_APP_LOG_FILE + value: /ram/cfe_es_app_info.log + CFE_ES_DEFAULT_CDS_REG_DUMP_FILE: + name: CFE_ES_DEFAULT_CDS_REG_DUMP_FILE + value: /ram/cfe_cds_reg.log + CFE_ES_DEFAULT_CRC: + name: CFE_ES_DEFAULT_CRC + value: CFE_ES_CRC_16 + CFE_ES_DEFAULT_ER_LOG_FILE: + name: CFE_ES_DEFAULT_ER_LOG_FILE + value: /ram/cfe_erlog.log + CFE_ES_DEFAULT_PERF_DUMP_FILENAME: + name: CFE_ES_DEFAULT_PERF_DUMP_FILENAME + value: /ram/cfe_es_perf.dat + CFE_ES_DEFAULT_SHELL_FILENAME: + name: CFE_ES_DEFAULT_SHELL_FILENAME + value: /ram/ShellCmd.out + CFE_ES_DEFAULT_STACK_SIZE: + name: CFE_ES_DEFAULT_STACK_SIZE + value: 16384 + CFE_ES_DEFAULT_SYSLOG_FILE: + name: CFE_ES_DEFAULT_SYSLOG_FILE + value: /ram/cfe_es_syslog.log + CFE_ES_DEFAULT_SYSLOG_MODE: + name: CFE_ES_DEFAULT_SYSLOG_MODE + value: 1 + CFE_ES_DEFAULT_TASK_LOG_FILE: + name: CFE_ES_DEFAULT_TASK_LOG_FILE + value: /ram/cfe_es_task_info.log + CFE_ES_ER_LOG_ENTRIES: + name: CFE_ES_ER_LOG_ENTRIES + value: 20 + CFE_ES_ER_LOG_MAX_CONTEXT_SIZE: + name: CFE_ES_ER_LOG_MAX_CONTEXT_SIZE + value: 128 + CFE_ES_HK_TLM_MSG: + name: CFE_ES_HK_TLM_MSG + value: 0 + CFE_ES_MAX_APPLICATIONS: + name: CFE_ES_MAX_APPLICATIONS + value: 64 + CFE_ES_MAX_GEN_COUNTERS: + name: CFE_ES_MAX_GEN_COUNTERS + value: 8 + CFE_ES_MAX_LIBRARIES: + name: CFE_ES_MAX_LIBRARIES + value: 10 + CFE_ES_MAX_PROCESSOR_RESETS: + name: CFE_ES_MAX_PROCESSOR_RESETS + value: 2 + CFE_ES_MAX_SHELL_CMD: + name: CFE_ES_MAX_SHELL_CMD + value: 64 + CFE_ES_MAX_SHELL_PKT: + name: CFE_ES_MAX_SHELL_PKT + value: 64 + CFE_ES_MEMPOOL_ALIGNED: + name: CFE_ES_MEMPOOL_ALIGNED + value: 1 + CFE_ES_MEMSTATS_TLM_MSG: + name: CFE_ES_MEMSTATS_TLM_MSG + value: 16 + CFE_ES_MEM_BLOCK_SIZE: + name: CFE_ES_MEM_BLOCK_SIZE + value: 200000 + CFE_ES_MEM_BLOCK_SIZE_01: + name: CFE_ES_MEM_BLOCK_SIZE_01 + value: 8 + CFE_ES_MEM_BLOCK_SIZE_02: + name: CFE_ES_MEM_BLOCK_SIZE_02 + value: 16 + CFE_ES_MEM_BLOCK_SIZE_03: + name: CFE_ES_MEM_BLOCK_SIZE_03 + value: 32 + CFE_ES_MEM_BLOCK_SIZE_04: + name: CFE_ES_MEM_BLOCK_SIZE_04 + value: 48 + CFE_ES_MEM_BLOCK_SIZE_05: + name: CFE_ES_MEM_BLOCK_SIZE_05 + value: 64 + CFE_ES_MEM_BLOCK_SIZE_06: + name: CFE_ES_MEM_BLOCK_SIZE_06 + value: 96 + CFE_ES_MEM_BLOCK_SIZE_07: + name: CFE_ES_MEM_BLOCK_SIZE_07 + value: 128 + CFE_ES_MEM_BLOCK_SIZE_08: + name: CFE_ES_MEM_BLOCK_SIZE_08 + value: 160 + CFE_ES_MEM_BLOCK_SIZE_09: + name: CFE_ES_MEM_BLOCK_SIZE_09 + value: 256 + CFE_ES_MEM_BLOCK_SIZE_10: + name: CFE_ES_MEM_BLOCK_SIZE_10 + value: 512 + CFE_ES_MEM_BLOCK_SIZE_11: + name: CFE_ES_MEM_BLOCK_SIZE_11 + value: 1024 + CFE_ES_MEM_BLOCK_SIZE_12: + name: CFE_ES_MEM_BLOCK_SIZE_12 + value: 2048 + CFE_ES_MEM_BLOCK_SIZE_13: + name: CFE_ES_MEM_BLOCK_SIZE_13 + value: 4096 + CFE_ES_MEM_BLOCK_SIZE_14: + name: CFE_ES_MEM_BLOCK_SIZE_14 + value: 8192 + CFE_ES_MEM_BLOCK_SIZE_15: + name: CFE_ES_MEM_BLOCK_SIZE_15 + value: 16384 + CFE_ES_MEM_BLOCK_SIZE_16: + name: CFE_ES_MEM_BLOCK_SIZE_16 + value: 80000 + CFE_ES_NONVOL_STARTUP_FILE: + name: CFE_ES_NONVOL_STARTUP_FILE + value: /cf/apps/cfe_es_startup.scr + CFE_ES_OBJECT_TABLE_SIZE: + name: CFE_ES_OBJECT_TABLE_SIZE + value: 30 + CFE_ES_PERF_CHILD_MS_DELAY: + name: CFE_ES_PERF_CHILD_MS_DELAY + value: 20 + CFE_ES_PERF_CHILD_PRIORITY: + name: CFE_ES_PERF_CHILD_PRIORITY + value: 200 + CFE_ES_PERF_CHILD_STACK_SIZE: + name: CFE_ES_PERF_CHILD_STACK_SIZE + value: 16384 + CFE_ES_PERF_DATA_BUFFER_SIZE: + name: CFE_ES_PERF_DATA_BUFFER_SIZE + value: 10000 + CFE_ES_PERF_ENTRIES_BTWN_DLYS: + name: CFE_ES_PERF_ENTRIES_BTWN_DLYS + value: 50 + CFE_ES_PERF_FILTMASK_ALL: + name: CFE_ES_PERF_FILTMASK_ALL + value: ~CFE_ES_PERF_FILTMASK_NONE + CFE_ES_PERF_FILTMASK_INIT: + name: CFE_ES_PERF_FILTMASK_INIT + value: CFE_ES_PERF_FILTMASK_ALL + CFE_ES_PERF_FILTMASK_NONE: + name: CFE_ES_PERF_FILTMASK_NONE + value: 0 + CFE_ES_PERF_MAX_IDS: + name: CFE_ES_PERF_MAX_IDS + value: 128 + CFE_ES_PERF_TRIGMASK_ALL: + name: CFE_ES_PERF_TRIGMASK_ALL + value: ~CFE_ES_PERF_TRIGMASK_NONE + CFE_ES_PERF_TRIGMASK_INIT: + name: CFE_ES_PERF_TRIGMASK_INIT + value: CFE_ES_PERF_TRIGMASK_NONE + CFE_ES_PERF_TRIGMASK_NONE: + name: CFE_ES_PERF_TRIGMASK_NONE + value: 0 + CFE_ES_RAM_DISK_MOUNT_STRING: + name: CFE_ES_RAM_DISK_MOUNT_STRING + value: /ram + CFE_ES_RAM_DISK_NUM_SECTORS: + name: CFE_ES_RAM_DISK_NUM_SECTORS + value: 4096 + CFE_ES_RAM_DISK_PERCENT_RESERVED: + name: CFE_ES_RAM_DISK_PERCENT_RESERVED + value: 30 + CFE_ES_RAM_DISK_SECTOR_SIZE: + name: CFE_ES_RAM_DISK_SECTOR_SIZE + value: 512 + CFE_ES_RESET_AREA_SIZE: + name: CFE_ES_RESET_AREA_SIZE + value: 170 * 2048 + CFE_ES_SEND_HK_MSG: + name: CFE_ES_SEND_HK_MSG + value: 8 + CFE_ES_SHELL_TLM_MSG: + name: CFE_ES_SHELL_TLM_MSG + value: 15 + CFE_ES_STARTUP_SCRIPT_TIMEOUT_MSEC: + name: CFE_ES_STARTUP_SCRIPT_TIMEOUT_MSEC + value: 30000 + CFE_ES_STARTUP_SYNC_POLL_MSEC: + name: CFE_ES_STARTUP_SYNC_POLL_MSEC + value: 50 + CFE_ES_START_TASK_FLAGS: + name: CFE_ES_START_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CFE_ES_START_TASK_PRIORITY: + name: CFE_ES_START_TASK_PRIORITY + value: 68 + CFE_ES_START_TASK_STACK_SIZE: + name: CFE_ES_START_TASK_STACK_SIZE + value: 16384 + CFE_ES_SYSTEM_LOG_SIZE: + name: CFE_ES_SYSTEM_LOG_SIZE + value: 3072 + CFE_ES_USER_RESERVED_SIZE: + name: CFE_ES_USER_RESERVED_SIZE + value: 1024 * 2048 + CFE_ES_VOLATILE_STARTUP_FILE: + name: CFE_ES_VOLATILE_STARTUP_FILE + value: /ram/apps/cfe_es_startup.scr + events: + CFE_ES_ALL_APPS_EID: + id: 16 + CFE_ES_BOOT_ERR_EID: + id: 24 + CFE_ES_BUILD_INF_EID: + id: 92 + CFE_ES_CC1_ERR_EID: + id: 22 + CFE_ES_CDS_DELETED_INFO_EID: + id: 78 + CFE_ES_CDS_DELETE_ERR_EID: + id: 76 + CFE_ES_CDS_DELETE_TBL_ERR_EID: + id: 79 + CFE_ES_CDS_DUMP_ERR_EID: + id: 84 + CFE_ES_CDS_NAME_ERR_EID: + id: 77 + CFE_ES_CDS_OWNER_ACTIVE_EID: + id: 80 + CFE_ES_CDS_REGISTER_ERR_EID: + id: 69 + CFE_ES_CDS_REG_DUMP_INF_EID: + id: 83 + CFE_ES_CREATING_CDS_DUMP_ERR_EID: + id: 86 + CFE_ES_ERLOG1_INF_EID: + id: 19 + CFE_ES_ERLOG2_EID: + id: 20 + CFE_ES_ERLOG2_ERR_EID: + id: 56 + CFE_ES_ERREXIT_APP_ERR_EID: + id: 33 + CFE_ES_ERREXIT_APP_INF_EID: + id: 14 + CFE_ES_ERR_SYSLOGMODE_EID: + id: 71 + CFE_ES_EXIT_APP_ERR_EID: + id: 46 + CFE_ES_EXIT_APP_INF_EID: + id: 13 + CFE_ES_FILEWRITE_ERR_EID: + id: 74 + CFE_ES_INITSTATS_INF_EID: + id: 2 + CFE_ES_INIT_INF_EID: + id: 1 + CFE_ES_INVALID_POOL_HANDLE_ERR_EID: + id: 82 + CFE_ES_LEN_ERR_EID: + id: 23 + CFE_ES_MID_ERR_EID: + id: 21 + CFE_ES_NOOP_INF_EID: + id: 3 + CFE_ES_ONE_APPID_ERR_EID: + id: 50 + CFE_ES_ONE_APP_EID: + id: 15 + CFE_ES_ONE_ERR_EID: + id: 49 + CFE_ES_OSCREATE_ERR_EID: + id: 51 + CFE_ES_PCR_ERR1_EID: + id: 47 + CFE_ES_PCR_ERR2_EID: + id: 48 + CFE_ES_PERF_DATAWRITTEN_EID: + id: 68 + CFE_ES_PERF_FILTMSKCMD_EID: + id: 63 + CFE_ES_PERF_FILTMSKERR_EID: + id: 64 + CFE_ES_PERF_LOG_ERR_EID: + id: 67 + CFE_ES_PERF_STARTCMD_EID: + id: 57 + CFE_ES_PERF_STARTCMD_ERR_EID: + id: 58 + CFE_ES_PERF_STARTCMD_TRIG_ERR_EID: + id: 59 + CFE_ES_PERF_STOPCMD_EID: + id: 60 + CFE_ES_PERF_STOPCMD_ERR1_EID: + id: 61 + CFE_ES_PERF_STOPCMD_ERR2_EID: + id: 62 + CFE_ES_PERF_TRIGMSKCMD_EID: + id: 65 + CFE_ES_PERF_TRIGMSKERR_EID: + id: 66 + CFE_ES_RELOAD_APP_DBG_EID: + id: 11 + CFE_ES_RELOAD_APP_ERR1_EID: + id: 42 + CFE_ES_RELOAD_APP_ERR2_EID: + id: 43 + CFE_ES_RELOAD_APP_ERR3_EID: + id: 44 + CFE_ES_RELOAD_APP_ERR4_EID: + id: 45 + CFE_ES_RELOAD_APP_INF_EID: + id: 12 + CFE_ES_RESET_INF_EID: + id: 4 + CFE_ES_RESET_PR_COUNT_EID: + id: 72 + CFE_ES_RESTART_APP_DBG_EID: + id: 9 + CFE_ES_RESTART_APP_ERR1_EID: + id: 38 + CFE_ES_RESTART_APP_ERR2_EID: + id: 39 + CFE_ES_RESTART_APP_ERR3_EID: + id: 40 + CFE_ES_RESTART_APP_ERR4_EID: + id: 41 + CFE_ES_RESTART_APP_INF_EID: + id: 10 + CFE_ES_RST_ACCESS_EID: + id: 75 + CFE_ES_SET_MAX_PR_COUNT_EID: + id: 73 + CFE_ES_SHELL_ERR_EID: + id: 25 + CFE_ES_SHELL_INF_EID: + id: 5 + CFE_ES_START_ERR_EID: + id: 26 + CFE_ES_START_EXC_ACTION_ERR_EID: + id: 32 + CFE_ES_START_INF_EID: + id: 6 + CFE_ES_START_INVALID_ENTRY_POINT_ERR_EID: + id: 28 + CFE_ES_START_INVALID_FILENAME_ERR_EID: + id: 27 + CFE_ES_START_NULL_APP_NAME_ERR_EID: + id: 29 + CFE_ES_START_PRIORITY_ERR_EID: + id: 31 + CFE_ES_START_STACK_ERR_EID: + id: 30 + CFE_ES_STOP_DBG_EID: + id: 7 + CFE_ES_STOP_ERR1_EID: + id: 35 + CFE_ES_STOP_ERR2_EID: + id: 36 + CFE_ES_STOP_ERR3_EID: + id: 37 + CFE_ES_STOP_INF_EID: + id: 8 + CFE_ES_SYSLOG1_INF_EID: + id: 17 + CFE_ES_SYSLOG2_EID: + id: 18 + CFE_ES_SYSLOG2_ERR_EID: + id: 55 + CFE_ES_SYSLOGMODE_EID: + id: 70 + CFE_ES_TASKINFO_EID: + id: 87 + CFE_ES_TASKINFO_OSCREATE_ERR_EID: + id: 88 + CFE_ES_TASKINFO_WRHDR_ERR_EID: + id: 89 + CFE_ES_TASKINFO_WR_ERR_EID: + id: 90 + CFE_ES_TASKWR_ERR_EID: + id: 53 + CFE_ES_TLM_POOL_STATS_INFO_EID: + id: 81 + CFE_ES_VERSION_INF_EID: + id: 91 + CFE_ES_WRHDR_ERR_EID: + id: 52 + CFE_ES_WRITE_CFE_HDR_ERR_EID: + id: 85 + long_name: Core Flight Executive - Essential Services + module_type: CFE_CORE + msg_def_overrides: + - enumerations: + POWERON_RESET: 2 + PROCESSOR_RESET: 1 + member: RestartType + parent: CFE_ES_RestartCmd_Payload_t + type: enumeration + - member: CmdString + parent: CFE_ES_ShellCmd_Payload_t + type: string + - member: OutputFilename + parent: CFE_ES_ShellCmd_Payload_t + type: string + - member: QueryAllFileName + parent: CFE_ES_QueryAllCmd_Payload_t + type: string + - member: QueryAllFileName + parent: CFE_ES_QueryAllTasksCmd_Payload_t + type: string + - member: SysLogFileName + parent: CFE_ES_WriteSyslogCmd_Payload_t + type: string + - member: ERLogFileName + parent: CFE_ES_WriteERlogCmd_Payload_t + type: string + - member: Application + parent: CFE_ES_AppReloadCmd_Payload_t + type: string + - member: AppFileName + parent: CFE_ES_AppReloadCmd_Payload_t + type: string + - member: CdsName + parent: CFE_ES_DeleteCDSCmd_Payload_t + type: string + - enumerations: + CENTER: 1 + END: 2 + START: 0 + member: TriggerMode + parent: CFE_ES_PerfStartCmd_Payload_t + type: enumeration + - member: DataFileName + parent: CFE_ES_PerfStopCmd_Payload_t + type: string + - member: Application + parent: CFE_ES_TlmPoolStatsCmd_Payload_t + type: string + - member: DumpFilename + parent: CFE_ES_DumpCDSRegCmd_Payload_t + type: string + - enumerations: + CORE: 1 + EXTERNAL: 2 + member: Type + parent: CFE_ES_AppInfo_t + type: enumeration + - member: Name + parent: CFE_ES_AppInfo_t + type: string + - member: EntryPoint + parent: CFE_ES_AppInfo_t + type: string + - member: FileName + parent: CFE_ES_AppInfo_t + type: string + - enumerations: + PROC_RESTART: 1 + RESTART_APP: 0 + member: ExceptionAction + parent: CFE_ES_AppInfo_t + type: enumeration + - member: MainTaskName + parent: CFE_ES_AppInfo_t + type: string + - enumerations: + DISCARD: 1 + OVERWRITE: 0 + member: Mode + parent: CFE_ES_OverWriteSysLogCmd_Payload_t + type: enumeration + - enumerations: + DROP: 1 + OVERWRITE: 0 + member: SysLogMode + parent: CFE_ES_HkPacket_Payload_t + type: enumeration + - enumerations: + POWERUP: 2 + PROCESSOR: 1 + member: ResetType + parent: CFE_ES_HkPacket_Payload_t + type: enumeration + - enumerations: + BANKSWITCH_RESET: 9 + EXCEPTION: 6 + HWDEBUG_RESET: 8 + HW_SPECIAL_COMMAND: 3 + HW_WATCHDOG: 4 + POWER_CYCLE: 1 + PUSH_BUTTON: 2 + RESET_COMMAND: 5 + UNDEFINED_RESET: 7 + member: ResetSubtype + parent: CFE_ES_HkPacket_Payload_t + type: enumeration + - enumerations: + IDLE: 0 + TRIGGERED: 2 + WAITING_FOR_TRIGGER: 1 + member: PerfState + parent: CFE_ES_HkPacket_Payload_t + type: enumeration + - enumerations: + TRIGGER_CENTER: 1 + TRIGGER_END: 2 + TRIGGER_START: 0 + member: PerfMode + parent: CFE_ES_HkPacket_Payload_t + type: enumeration + - member: ShellOutput + parent: CFE_ES_ShellPacket_Payload_t + type: string + - member: Application + parent: CFE_ES_StartAppCmd_Payload_t + type: string + - member: AppEntryPoint + parent: CFE_ES_StartAppCmd_Payload_t + type: string + - member: AppFileName + parent: CFE_ES_StartAppCmd_Payload_t + type: string + - enumerations: + PROC_RESTART: 1 + RESTART_APP: 0 + member: ExceptionAction + parent: CFE_ES_StartAppCmd_Payload_t + type: enumeration + - member: Application + parent: CFE_ES_AppNameCmd_Payload_t + type: string + - member: AppName + parent: CFE_EVS_PacketID_t + type: string + perfids: + CFE_ES_MAIN_PERF_ID: + id: 1 + short_name: cfe_es + telemetry: + CFE_ES_APP_TLM_MID: + msgID: 2583 + struct: CFE_ES_OneAppTlm_t + CFE_ES_HK_TLM_MID: + msgID: 2575 + struct: CFE_ES_HkPacket_t + CFE_ES_MEMSTATS_TLM_MID: + msgID: 2588 + struct: CFE_ES_PoolStatsTlm_t + CFE_ES_SHELL_TLM_MID: + msgID: 2587 + struct: CFE_ES_ShellPacket_t + type_remaps: + CFE_ES_MemHandle_t: uint32 + cpuaddr: uint32 + cfe_evs: + app_name: CFE_EVS + commander_templates: + _EVENT_CONTROL: + output: EventControl.bob + scope: GLOBAL + template: cdr/EVS/resources/templates/EventControl.j2 + commands: + CFE_EVS_CMD_MID: + commands: + AddAppEventFilter: + cc: 15 + struct: CFE_EVS_AppNameEventIDMaskCmd_t + ClearLog: + cc: 20 + struct: CFE_SB_CmdHdr_t + DeleteAppEventFilter: + cc: 16 + struct: CFE_EVS_AppNameEventIDCmd_t + DisableAppEventType: + cc: 6 + struct: CFE_EVS_AppNameBitMaskCmd_t + DisableAppEvents: + cc: 8 + struct: CFE_EVS_AppNameCmd_t + DisableEventType: + cc: 3 + struct: CFE_EVS_BitMaskCmd_t + DisablePorts: + cc: 12 + struct: CFE_EVS_BitMaskCmd_t + EnableAppEventType: + cc: 5 + struct: CFE_EVS_AppNameBitMaskCmd_t + EnableAppEvents: + cc: 7 + struct: CFE_EVS_AppNameCmd_t + EnableEventType: + cc: 2 + struct: CFE_EVS_BitMaskCmd_t + EnablePorts: + cc: 11 + struct: CFE_EVS_BitMaskCmd_t + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + ResetAppEventCounters: + cc: 9 + struct: CFE_EVS_AppNameCmd_t + ResetAppEventFilter: + cc: 13 + struct: CFE_EVS_AppNameEventIDCmd_t + ResetAppFilters: + cc: 14 + struct: CFE_EVS_AppNameCmd_t + SetAppEventFilter: + cc: 10 + struct: CFE_EVS_AppNameEventIDMaskCmd_t + SetEventFormatMode: + cc: 4 + struct: CFE_EVS_FormatCmd_t + SetLogMode: + cc: 19 + struct: CFE_EVS_ModeCmd_t + WriteAppData: + cc: 17 + struct: CFE_EVS_AppDataCmd_t + WriteLogData: + cc: 18 + struct: CFE_EVS_LogFileCmd_t + msgID: 6656 + CFE_EVS_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6662 + config: + CFE_EVS_CMD_MSG: + name: CFE_EVS_CMD_MSG + value: 1 + CFE_EVS_DEFAULT_APP_DATA_FILE: + name: CFE_EVS_DEFAULT_APP_DATA_FILE + value: /ram/cfe_evs_app.dat + CFE_EVS_DEFAULT_LOG_FILE: + name: CFE_EVS_DEFAULT_LOG_FILE + value: /ram/cfe_evs.log + CFE_EVS_DEFAULT_LOG_MODE: + name: CFE_EVS_DEFAULT_LOG_MODE + value: 1 + CFE_EVS_DEFAULT_MSG_FORMAT_MODE: + name: CFE_EVS_DEFAULT_MSG_FORMAT_MODE + value: CFE_EVS_LONG_FORMAT + CFE_EVS_DEFAULT_TYPE_FLAG: + name: CFE_EVS_DEFAULT_TYPE_FLAG + value: 14 + CFE_EVS_EVENT_MSG_MSG: + name: CFE_EVS_EVENT_MSG_MSG + value: 8 + CFE_EVS_HK_TLM_MSG: + name: CFE_EVS_HK_TLM_MSG + value: 1 + CFE_EVS_LOG_MAX: + name: CFE_EVS_LOG_MAX + value: 20 + CFE_EVS_LOG_ON: + name: CFE_EVS_LOG_ON + value: true + CFE_EVS_MAX_EVENT_FILTERS: + name: CFE_EVS_MAX_EVENT_FILTERS + value: 255 + CFE_EVS_MAX_MESSAGE_LENGTH: + name: CFE_EVS_MAX_MESSAGE_LENGTH + value: 122 + CFE_EVS_PORT_DEFAULT: + name: CFE_EVS_PORT_DEFAULT + value: 1 + CFE_EVS_SEND_HK_MSG: + name: CFE_EVS_SEND_HK_MSG + value: 9 + CFE_EVS_START_TASK_FLAGS: + name: CFE_EVS_START_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CFE_EVS_START_TASK_PRIORITY: + name: CFE_EVS_START_TASK_PRIORITY + value: 61 + CFE_EVS_START_TASK_STACK_SIZE: + name: CFE_EVS_START_TASK_STACK_SIZE + value: CFE_ES_DEFAULT_STACK_SIZE + events: + CFE_EVS_ADDFILTER_EID: + id: 30 + CFE_EVS_DELFILTER_EID: + id: 31 + CFE_EVS_DISAPPENTTYPE_EID: + id: 24 + CFE_EVS_DISAPPEVT_EID: + id: 26 + CFE_EVS_DISEVTTYPE_EID: + id: 21 + CFE_EVS_DISPORT_EID: + id: 19 + CFE_EVS_ENAAPPEVTTYPE_EID: + id: 23 + CFE_EVS_ENAAPPEVT_EID: + id: 25 + CFE_EVS_ENAEVTTYPE_EID: + id: 20 + CFE_EVS_ENAPORT_EID: + id: 18 + CFE_EVS_ERR_APPNOREGS_EID: + id: 7 + CFE_EVS_ERR_CC_EID: + id: 15 + CFE_EVS_ERR_CRDATFILE_EID: + id: 13 + CFE_EVS_ERR_CRLOGFILE_EID: + id: 3 + CFE_EVS_ERR_EVTIDNOREGS_EID: + id: 6 + CFE_EVS_ERR_ILLAPPIDRANGE_EID: + id: 8 + CFE_EVS_ERR_ILLEGALFMTMOD_EID: + id: 10 + CFE_EVS_ERR_INVALID_BITMASK_EID: + id: 40 + CFE_EVS_ERR_LOGMODE_EID: + id: 39 + CFE_EVS_ERR_MAXREGSFILTER_EID: + id: 11 + CFE_EVS_ERR_MSGID_EID: + id: 5 + CFE_EVS_ERR_NOAPPIDFOUND_EID: + id: 9 + CFE_EVS_ERR_UNREGISTERED_EVS_APP: + id: 41 + CFE_EVS_ERR_WRDATFILE_EID: + id: 12 + CFE_EVS_ERR_WRLOGFILE_EID: + id: 2 + CFE_EVS_EVT_FILTERED_EID: + id: 37 + CFE_EVS_FILTER_MAX_EID: + id: 42 + CFE_EVS_LEN_ERR_EID: + id: 43 + CFE_EVS_LOGMODE_EID: + id: 38 + CFE_EVS_NO_LOGCLR_EID: + id: 35 + CFE_EVS_NO_LOGSET_EID: + id: 34 + CFE_EVS_NO_LOGWR_EID: + id: 36 + CFE_EVS_RSTALLFILTER_EID: + id: 29 + CFE_EVS_RSTCNT_EID: + id: 16 + CFE_EVS_RSTEVTCNT_EID: + id: 27 + CFE_EVS_RSTFILTER_EID: + id: 28 + CFE_EVS_SETEVTFMTMOD_EID: + id: 22 + CFE_EVS_SETFILTERMSK_EID: + id: 17 + CFE_EVS_WRDAT_EID: + id: 32 + CFE_EVS_WRLOG_EID: + id: 33 + long_name: Core Flight Executive - Event Services + module_type: CFE_CORE + msg_def_overrides: + - member: LogFilename + parent: CFE_EVS_LogFileCmd_Payload_t + type: string + - member: AppDataFilename + parent: CFE_EVS_AppDataCmd_Payload_t + type: string + - enumerations: + DISCARD: 1 + OVERWRITE: 0 + member: Mode + parent: CFE_EVS_ModeCmd_Payload_t + type: enumeration + - enumerations: + LONG: 1 + SHORT: 0 + member: Mode + parent: CFE_EVS_FormatCmd_Payload_t + type: enumeration + - member: AppName + parent: CFE_EVS_AppNameCmd_Payload_t + type: string + - member: AppName + parent: CFE_EVS_AppNameEventIDCmd_Payload_t + type: string + - member: AppName + parent: CFE_EVS_AppNameBitMaskCmd_Payload_t + type: string + - member: AppName + parent: CFE_EVS_AppNameEventIDMaskCmd_Payload_t + type: string + - enumerations: + LONG: 1 + SHORT: 0 + member: MessageFormatMode + parent: CFE_EVS_TlmPkt_Payload_t + type: enumeration + - enumerations: + DISCARD: 1 + OVERWRITE: 0 + member: LogMode + parent: CFE_EVS_TlmPkt_Payload_t + type: enumeration + - member: AppName + parent: CFE_EVS_PacketID_t + type: string + - enumerations: + CRITICAL: 4 + DEBUG: 1 + ERROR: 3 + INFO: 2 + member: EventType + parent: CFE_EVS_PacketID_t + type: enumeration + - member: Message + parent: CFE_EVS_Packet_Payload_t + type: string + perfids: + CFE_EVS_MAIN_PERF_ID: + id: 2 + short_name: cfe_evs + telemetry: + CFE_EVS_EVENT_MSG_MID: + msgID: 2581 + CFE_EVS_HK_TLM_MID: + msgID: 2576 + struct: CFE_EVS_TlmPkt_t + cfe_sb: + app_name: CFE_SB + commands: + CFE_SB_CMD_MID: + commands: + DisableRoute: + cc: 5 + struct: CFE_SB_EnRoutCmd_t + DisableSubReport: + cc: 10 + struct: CFE_SB_CmdHdr_t + EnableRoute: + cc: 4 + struct: CFE_SB_EnRoutCmd_t + EnableSubReport: + cc: 9 + struct: CFE_SB_CmdHdr_t + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + SendPrevSubs: + cc: 11 + struct: CFE_SB_CmdHdr_t + SendStats: + cc: 2 + struct: CFE_SB_CmdHdr_t + WriteMapInfo: + cc: 8 + struct: CFE_SB_WriteFileInfoCmd_t + WritePipeInfo: + cc: 7 + struct: CFE_SB_WriteFileInfoCmd_t + WriteRouteInfo: + cc: 3 + struct: CFE_SB_WriteFileInfoCmd_t + msgID: 6657 + CFE_SB_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6663 + config: + CFE_SB_ALLSUBS_TLM_MSG: + name: CFE_SB_ALLSUBS_TLM_MSG + value: 13 + CFE_SB_BUF_MEMORY_BYTES: + name: CFE_SB_BUF_MEMORY_BYTES + value: 524288 + CFE_SB_CMD_MSG: + name: CFE_SB_CMD_MSG + value: 3 + CFE_SB_DEFAULT_MAP_FILENAME: + name: CFE_SB_DEFAULT_MAP_FILENAME + value: /ram/cfe_sb_msgmap.dat + CFE_SB_DEFAULT_MSG_LIMIT: + name: CFE_SB_DEFAULT_MSG_LIMIT + value: 4 + CFE_SB_DEFAULT_PIPE_FILENAME: + name: CFE_SB_DEFAULT_PIPE_FILENAME + value: /ram/cfe_sb_pipe.dat + CFE_SB_DEFAULT_REPORT_SENDER: + name: CFE_SB_DEFAULT_REPORT_SENDER + value: 1 + CFE_SB_DEFAULT_ROUTING_FILENAME: + name: CFE_SB_DEFAULT_ROUTING_FILENAME + value: /ram/cfe_sb_route.dat + CFE_SB_FILTERED_EVENT1: + name: CFE_SB_FILTERED_EVENT1 + value: CFE_SB_SEND_NO_SUBS_EID + CFE_SB_FILTERED_EVENT2: + name: CFE_SB_FILTERED_EVENT2 + value: CFE_SB_DUP_SUBSCRIP_EID + CFE_SB_FILTERED_EVENT3: + name: CFE_SB_FILTERED_EVENT3 + value: CFE_SB_MSGID_LIM_ERR_EID + CFE_SB_FILTERED_EVENT4: + name: CFE_SB_FILTERED_EVENT4 + value: CFE_SB_Q_FULL_ERR_EID + CFE_SB_FILTERED_EVENT5: + name: CFE_SB_FILTERED_EVENT5 + value: 0 + CFE_SB_FILTERED_EVENT6: + name: CFE_SB_FILTERED_EVENT6 + value: 0 + CFE_SB_FILTERED_EVENT7: + name: CFE_SB_FILTERED_EVENT7 + value: 0 + CFE_SB_FILTERED_EVENT8: + name: CFE_SB_FILTERED_EVENT8 + value: 0 + CFE_SB_FILTER_MASK1: + name: CFE_SB_FILTER_MASK1 + value: CFE_EVS_FIRST_4_STOP + CFE_SB_FILTER_MASK2: + name: CFE_SB_FILTER_MASK2 + value: CFE_EVS_FIRST_4_STOP + CFE_SB_FILTER_MASK3: + name: CFE_SB_FILTER_MASK3 + value: CFE_EVS_FIRST_16_STOP + CFE_SB_FILTER_MASK4: + name: CFE_SB_FILTER_MASK4 + value: CFE_EVS_FIRST_16_STOP + CFE_SB_FILTER_MASK5: + name: CFE_SB_FILTER_MASK5 + value: CFE_EVS_NO_FILTER + CFE_SB_FILTER_MASK6: + name: CFE_SB_FILTER_MASK6 + value: CFE_EVS_NO_FILTER + CFE_SB_FILTER_MASK7: + name: CFE_SB_FILTER_MASK7 + value: CFE_EVS_NO_FILTER + CFE_SB_FILTER_MASK8: + name: CFE_SB_FILTER_MASK8 + value: CFE_EVS_NO_FILTER + CFE_SB_HIGHEST_VALID_MSGID: + name: CFE_SB_HIGHEST_VALID_MSGID + value: 8191 + CFE_SB_HK_TLM_MSG: + name: CFE_SB_HK_TLM_MSG + value: 3 + CFE_SB_MAX_BLOCK_SIZE: + name: CFE_SB_MAX_BLOCK_SIZE + value: CFE_SB_MAX_SB_MSG_SIZE + 40 + CFE_SB_MAX_DEST_PER_PKT: + name: CFE_SB_MAX_DEST_PER_PKT + value: 16 + CFE_SB_MAX_MSG_IDS: + name: CFE_SB_MAX_MSG_IDS + value: 256 + CFE_SB_MAX_PIPES: + name: CFE_SB_MAX_PIPES + value: 255 + CFE_SB_MAX_PIPE_DEPTH: + name: CFE_SB_MAX_PIPE_DEPTH + value: 256 + CFE_SB_MAX_SB_MSG_SIZE: + name: CFE_SB_MAX_SB_MSG_SIZE + value: 32768 + CFE_SB_MEM_BLOCK_SIZE_01: + name: CFE_SB_MEM_BLOCK_SIZE_01 + value: 8 + CFE_SB_MEM_BLOCK_SIZE_02: + name: CFE_SB_MEM_BLOCK_SIZE_02 + value: 16 + CFE_SB_MEM_BLOCK_SIZE_03: + name: CFE_SB_MEM_BLOCK_SIZE_03 + value: 20 + CFE_SB_MEM_BLOCK_SIZE_04: + name: CFE_SB_MEM_BLOCK_SIZE_04 + value: 36 + CFE_SB_MEM_BLOCK_SIZE_05: + name: CFE_SB_MEM_BLOCK_SIZE_05 + value: 64 + CFE_SB_MEM_BLOCK_SIZE_06: + name: CFE_SB_MEM_BLOCK_SIZE_06 + value: 96 + CFE_SB_MEM_BLOCK_SIZE_07: + name: CFE_SB_MEM_BLOCK_SIZE_07 + value: 128 + CFE_SB_MEM_BLOCK_SIZE_08: + name: CFE_SB_MEM_BLOCK_SIZE_08 + value: 160 + CFE_SB_MEM_BLOCK_SIZE_09: + name: CFE_SB_MEM_BLOCK_SIZE_09 + value: 256 + CFE_SB_MEM_BLOCK_SIZE_10: + name: CFE_SB_MEM_BLOCK_SIZE_10 + value: 512 + CFE_SB_MEM_BLOCK_SIZE_11: + name: CFE_SB_MEM_BLOCK_SIZE_11 + value: 1024 + CFE_SB_MEM_BLOCK_SIZE_12: + name: CFE_SB_MEM_BLOCK_SIZE_12 + value: 2048 + CFE_SB_MEM_BLOCK_SIZE_13: + name: CFE_SB_MEM_BLOCK_SIZE_13 + value: 4096 + CFE_SB_MEM_BLOCK_SIZE_14: + name: CFE_SB_MEM_BLOCK_SIZE_14 + value: 8192 + CFE_SB_MEM_BLOCK_SIZE_15: + name: CFE_SB_MEM_BLOCK_SIZE_15 + value: 16384 + CFE_SB_MEM_BLOCK_SIZE_16: + name: CFE_SB_MEM_BLOCK_SIZE_16 + value: 32768 + CFE_SB_ONESUB_TLM_MSG: + name: CFE_SB_ONESUB_TLM_MSG + value: 14 + CFE_SB_PACKET_TIME_FORMAT: + name: CFE_SB_PACKET_TIME_FORMAT + value: CFE_SB_TIME_32_16_SUBS + CFE_SB_SEND_HK_MSG: + name: CFE_SB_SEND_HK_MSG + value: 11 + CFE_SB_START_TASK_FLAGS: + name: CFE_SB_START_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CFE_SB_START_TASK_PRIORITY: + name: CFE_SB_START_TASK_PRIORITY + value: 64 + CFE_SB_START_TASK_STACK_SIZE: + name: CFE_SB_START_TASK_STACK_SIZE + value: CFE_ES_DEFAULT_STACK_SIZE + CFE_SB_STATS_TLM_MSG: + name: CFE_SB_STATS_TLM_MSG + value: 10 + CFE_SB_TIME_32_16_SUBS: + name: CFE_SB_TIME_32_16_SUBS + value: 1 + CFE_SB_TIME_32_32_M_20: + name: CFE_SB_TIME_32_32_M_20 + value: 3 + CFE_SB_TIME_32_32_SUBS: + name: CFE_SB_TIME_32_32_SUBS + value: 2 + events: + CFE_SB_BAD_CMD_CODE_EID: + id: 42 + CFE_SB_BAD_MSGID_EID: + id: 43 + CFE_SB_BAD_PIPEID_EID: + id: 19 + CFE_SB_CMD0_RCVD_EID: + id: 28 + CFE_SB_CMD1_RCVD_EID: + id: 29 + CFE_SB_CR_PIPE_BAD_ARG_EID: + id: 2 + CFE_SB_CR_PIPE_ERR_EID: + id: 4 + CFE_SB_DEL_PIPE_ERR1_EID: + id: 46 + CFE_SB_DEL_PIPE_ERR2_EID: + id: 54 + CFE_SB_DEST_BLK_ERR_EID: + id: 20 + CFE_SB_DSBL_RTE1_EID: + id: 36 + CFE_SB_DSBL_RTE2_EID: + id: 37 + CFE_SB_DSBL_RTE3_EID: + id: 38 + CFE_SB_DUP_SUBSCRIP_EID: + id: 7 + CFE_SB_ENBL_RTE1_EID: + id: 33 + CFE_SB_ENBL_RTE2_EID: + id: 34 + CFE_SB_ENBL_RTE3_EID: + id: 35 + CFE_SB_FILEWRITE_ERR_EID: + id: 49 + CFE_SB_FULL_SUB_PKT_EID: + id: 44 + CFE_SB_GET_BUF_ERR_EID: + id: 16 + CFE_SB_GLS_INV_CALLER_EID: + id: 41 + CFE_SB_INIT_EID: + id: 1 + CFE_SB_LSTSNDER_ERR1_EID: + id: 30 + CFE_SB_LSTSNDER_ERR2_EID: + id: 31 + CFE_SB_MAX_DESTS_MET_EID: + id: 9 + CFE_SB_MAX_MSGS_MET_EID: + id: 8 + CFE_SB_MAX_PIPES_MET_EID: + id: 3 + CFE_SB_MSGID_LIM_ERR_EID: + id: 17 + CFE_SB_MSG_TOO_BIG_EID: + id: 15 + CFE_SB_PART_SUB_PKT_EID: + id: 45 + CFE_SB_PIPE_ADDED_EID: + id: 5 + CFE_SB_PIPE_DELETED_EID: + id: 47 + CFE_SB_Q_FULL_ERR_EID: + id: 25 + CFE_SB_Q_RD_ERR_EID: + id: 27 + CFE_SB_Q_WR_ERR_EID: + id: 26 + CFE_SB_RCV_BAD_ARG_EID: + id: 18 + CFE_SB_SEND_BAD_ARG_EID: + id: 13 + CFE_SB_SEND_INV_MSGID_EID: + id: 21 + CFE_SB_SEND_NO_SUBS_EID: + id: 14 + CFE_SB_SND_RTG_EID: + id: 39 + CFE_SB_SND_RTG_ERR1_EID: + id: 40 + CFE_SB_SND_STATS_EID: + id: 32 + CFE_SB_SUBSCRIPTION_RCVD_EID: + id: 10 + CFE_SB_SUBSCRIPTION_REMOVED_EID: + id: 48 + CFE_SB_SUBSCRIPTION_RPT_EID: + id: 22 + CFE_SB_SUB_ARG_ERR_EID: + id: 6 + CFE_SB_SUB_INV_CALLER_EID: + id: 51 + CFE_SB_SUB_INV_PIPE_EID: + id: 50 + CFE_SB_UNSUBSCRIPTION_RPT_EID: + id: 24 + CFE_SB_UNSUB_ARG_ERR_EID: + id: 11 + CFE_SB_UNSUB_INV_CALLER_EID: + id: 53 + CFE_SB_UNSUB_INV_PIPE_EID: + id: 52 + CFE_SB_UNSUB_NO_SUBS_EID: + id: 12 + long_name: Core Flight Executive - Software Bus + module_type: CFE_CORE + msg_def_overrides: + - member: Filename + parent: CFE_SB_WriteFileInfoCmd_Payload_t + type: string + - enumerations: + ACTIVE: 1 + INACTIVE: 0 + member: State + parent: CFE_SB_RoutingFileEntry_t + type: enumeration + - member: AppName + parent: CFE_SB_RoutingFileEntry_t + type: string + - member: PipeName + parent: CFE_SB_RoutingFileEntry_t + type: string + - enumerations: + SUBSCRIPTION: 0 + UNSUBSCRIPTION: 1 + member: SubType + parent: CFE_SB_SubRprtMsg_Payload_t + type: enumeration + perfids: + CFE_SB_MAIN_PERF_ID: + id: 4 + CFE_SB_MSG_LIM_PERF_ID: + id: 5 + CFE_SB_PIPE_OFLOW_PERF_ID: + id: 27 + short_name: cfe_sb + telemetry: + CFE_SB_ALLSUBS_TLM_MID: + msgID: 2585 + struct: CFE_SB_PrevSubMsg_t + CFE_SB_HK_TLM_MID: + msgID: 2577 + struct: CFE_SB_HKMsg_t + CFE_SB_ONESUB_TLM_MID: + msgID: 2586 + struct: CFE_SB_SubRprtMsg_t + CFE_SB_STATS_TLM_MID: + msgID: 2582 + struct: CFE_SB_StatMsg_t + type_remaps: + CFE_SB_MsgId_t: uint16 + CFE_SB_PipeId_t: uint8 + cfe_tbl: + app_name: CFE_TBL + commands: + CFE_TBL_CMD_MID: + commands: + AbortLoad: + cc: 9 + struct: CFE_TBL_AbortLdCmd_t + Activate: + cc: 5 + struct: CFE_TBL_ActivateCmd_t + DelCDS: + cc: 8 + struct: CFE_TBL_DelCDSCmd_t + Dump: + cc: 3 + struct: CFE_TBL_DumpCmd_t + DumpReg: + cc: 6 + struct: CFE_TBL_DumpRegCmd_t + Load: + cc: 2 + struct: CFE_TBL_LoadCmd_t + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + TlmReg: + cc: 7 + struct: CFE_TBL_TlmRegCmd_t + Validate: + cc: 4 + struct: CFE_TBL_ValidateCmd_t + msgID: 6658 + CFE_TBL_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6664 + config: + CFE_TBL_BUF_MEMORY_BYTES: + name: CFE_TBL_BUF_MEMORY_BYTES + value: 1048576 + CFE_TBL_CMD_MSG: + name: CFE_TBL_CMD_MSG + value: 4 + CFE_TBL_DEFAULT_REG_DUMP_FILE: + name: CFE_TBL_DEFAULT_REG_DUMP_FILE + value: /ram/cfe_tbl_reg.log + CFE_TBL_HK_TLM_MSG: + name: CFE_TBL_HK_TLM_MSG + value: 4 + CFE_TBL_MAX_CRITICAL_TABLES: + name: CFE_TBL_MAX_CRITICAL_TABLES + value: 32 + CFE_TBL_MAX_DBL_TABLE_SIZE: + name: CFE_TBL_MAX_DBL_TABLE_SIZE + value: 65535 + CFE_TBL_MAX_NAME_LENGTH: + name: CFE_TBL_MAX_NAME_LENGTH + value: 16 + CFE_TBL_MAX_NUM_HANDLES: + name: CFE_TBL_MAX_NUM_HANDLES + value: 256 + CFE_TBL_MAX_NUM_TABLES: + name: CFE_TBL_MAX_NUM_TABLES + value: 128 + CFE_TBL_MAX_NUM_VALIDATIONS: + name: CFE_TBL_MAX_NUM_VALIDATIONS + value: 10 + CFE_TBL_MAX_SIMULTANEOUS_LOADS: + name: CFE_TBL_MAX_SIMULTANEOUS_LOADS + value: 4 + CFE_TBL_MAX_SNGL_TABLE_SIZE: + name: CFE_TBL_MAX_SNGL_TABLE_SIZE + value: 65535 + CFE_TBL_REG_TLM_MSG: + name: CFE_TBL_REG_TLM_MSG + value: 12 + CFE_TBL_SEND_HK_MSG: + name: CFE_TBL_SEND_HK_MSG + value: 12 + CFE_TBL_START_TASK_FLAGS: + name: CFE_TBL_START_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CFE_TBL_START_TASK_PRIORITY: + name: CFE_TBL_START_TASK_PRIORITY + value: 70 + CFE_TBL_START_TASK_STACK_SIZE: + name: CFE_TBL_START_TASK_STACK_SIZE + value: CFE_ES_DEFAULT_STACK_SIZE + CFE_TBL_VALID_PRID_1: + name: CFE_TBL_VALID_PRID_1 + value: CFE_CPU_ID + CFE_TBL_VALID_PRID_2: + name: CFE_TBL_VALID_PRID_2 + value: CFE_TBL_U32FROM4CHARS(a, b, c, d) + CFE_TBL_VALID_PRID_3: + name: CFE_TBL_VALID_PRID_3 + value: 0 + CFE_TBL_VALID_PRID_4: + name: CFE_TBL_VALID_PRID_4 + value: 0 + CFE_TBL_VALID_PRID_COUNT: + name: CFE_TBL_VALID_PRID_COUNT + value: 0 + CFE_TBL_VALID_SCID_1: + name: CFE_TBL_VALID_SCID_1 + value: CFE_SPACECRAFT_ID + CFE_TBL_VALID_SCID_2: + name: CFE_TBL_VALID_SCID_2 + value: CFE_TBL_U32FROM4CHARS(a, b, c, d) + CFE_TBL_VALID_SCID_COUNT: + name: CFE_TBL_VALID_SCID_COUNT + value: 0 + events: + CFE_TBL_ACTIVATE_DUMP_ONLY_ERR_EID: + id: 78 + CFE_TBL_ACTIVATE_ERR_EID: + id: 70 + CFE_TBL_ASSUMED_VALID_INF_EID: + id: 23 + CFE_TBL_CC1_ERR_EID: + id: 51 + CFE_TBL_CDS_DELETED_INFO_EID: + id: 38 + CFE_TBL_CDS_DELETE_ERR_EID: + id: 86 + CFE_TBL_CDS_NOT_FOUND_ERR_EID: + id: 85 + CFE_TBL_CDS_OWNER_ACTIVE_ERR_EID: + id: 87 + CFE_TBL_CREATING_DUMP_FILE_ERR_EID: + id: 62 + CFE_TBL_DUMP_PENDING_ERR_EID: + id: 77 + CFE_TBL_FAIL_HK_SEND_ERR_EID: + id: 56 + CFE_TBL_FAIL_NOTIFY_SEND_ERR_EID: + id: 89 + CFE_TBL_FILE_ACCESS_ERR_EID: + id: 53 + CFE_TBL_FILE_INCOMPLETE_ERR_EID: + id: 71 + CFE_TBL_FILE_LOADED_INF_EID: + id: 12 + CFE_TBL_FILE_STD_HDR_ERR_EID: + id: 54 + CFE_TBL_FILE_SUBTYPE_ERR_EID: + id: 59 + CFE_TBL_FILE_TBL_HDR_ERR_EID: + id: 55 + CFE_TBL_FILE_TOO_BIG_ERR_EID: + id: 75 + CFE_TBL_FILE_TYPE_ERR_EID: + id: 58 + CFE_TBL_ILLEGAL_BUFF_PARAM_ERR_EID: + id: 80 + CFE_TBL_INIT_INF_EID: + id: 1 + CFE_TBL_INTERNAL_ERROR_ERR_EID: + id: 61 + CFE_TBL_IN_REGISTRY_ERR_EID: + id: 82 + CFE_TBL_LEN_ERR_EID: + id: 52 + CFE_TBL_LOADING_A_DUMP_ONLY_ERR_EID: + id: 79 + CFE_TBL_LOADING_PENDING_ERR_EID: + id: 88 + CFE_TBL_LOAD_ABORT_ERR_EID: + id: 69 + CFE_TBL_LOAD_ABORT_INF_EID: + id: 21 + CFE_TBL_LOAD_ERR_EID: + id: 93 + CFE_TBL_LOAD_EXCEEDS_SIZE_ERR_EID: + id: 72 + CFE_TBL_LOAD_PEND_REQ_INF_EID: + id: 17 + CFE_TBL_LOAD_SUCCESS_INF_EID: + id: 35 + CFE_TBL_LOAD_TYPE_ERR_EID: + id: 94 + CFE_TBL_MID_ERR_EID: + id: 50 + CFE_TBL_NOOP_INF_EID: + id: 10 + CFE_TBL_NOT_CRITICAL_TBL_ERR_EID: + id: 83 + CFE_TBL_NOT_IN_CRIT_REG_ERR_EID: + id: 84 + CFE_TBL_NO_INACTIVE_BUFFER_ERR_EID: + id: 66 + CFE_TBL_NO_SUCH_TABLE_ERR_EID: + id: 57 + CFE_TBL_NO_WORK_BUFFERS_ERR_EID: + id: 60 + CFE_TBL_OVERWRITE_DUMP_INF_EID: + id: 13 + CFE_TBL_OVERWRITE_REG_DUMP_INF_EID: + id: 15 + CFE_TBL_PARTIAL_LOAD_ERR_EID: + id: 74 + CFE_TBL_PROCESSOR_ID_ERR_EID: + id: 98 + CFE_TBL_REGISTER_ERR_EID: + id: 90 + CFE_TBL_RESET_INF_EID: + id: 11 + CFE_TBL_SHARE_ERR_EID: + id: 91 + CFE_TBL_SPACECRAFT_ID_ERR_EID: + id: 97 + CFE_TBL_TLM_REG_CMD_INF_EID: + id: 18 + CFE_TBL_TOO_MANY_DUMPS_ERR_EID: + id: 76 + CFE_TBL_TOO_MANY_VALIDATIONS_ERR_EID: + id: 67 + CFE_TBL_UNREGISTER_ERR_EID: + id: 92 + CFE_TBL_UNVALIDATED_ERR_EID: + id: 81 + CFE_TBL_UPDATE_ERR_EID: + id: 95 + CFE_TBL_UPDATE_SUCCESS_INF_EID: + id: 37 + CFE_TBL_VALIDATION_ERR_EID: + id: 96 + CFE_TBL_VALIDATION_INF_EID: + id: 36 + CFE_TBL_VAL_REQ_MADE_INF_EID: + id: 16 + CFE_TBL_WRITE_CFE_HDR_ERR_EID: + id: 63 + CFE_TBL_WRITE_DUMP_INF_EID: + id: 14 + CFE_TBL_WRITE_REG_DUMP_INF_EID: + id: 22 + CFE_TBL_WRITE_TBL_HDR_ERR_EID: + id: 64 + CFE_TBL_WRITE_TBL_IMG_ERR_EID: + id: 65 + CFE_TBL_WRITE_TBL_REG_ERR_EID: + id: 68 + CFE_TBL_ZERO_LENGTH_LOAD_ERR_EID: + id: 73 + long_name: Core Flight Executive - Table Services + module_type: CFE_CORE + msg_def_overrides: + - member: LoadFilename + parent: CFE_TBL_LoadCmd_Payload_t + type: string + - enumerations: + ACTIVE_BUFFER: 1 + INACTIVE_BUFFER: 0 + member: ActiveTblFlag + parent: CFE_TBL_DumpCmd_Payload_t + type: enumeration + - member: TableName + parent: CFE_TBL_DumpCmd_Payload_t + type: string + - member: DumpFilename + parent: CFE_TBL_DumpCmd_Payload_t + type: string + - enumerations: + ACTIVE_BUFFER: 1 + INACTIVE_BUFFER: 0 + member: ActiveTblFlag + parent: CFE_TBL_ValidateCmd_Payload_t + type: enumeration + - member: TableName + parent: CFE_TBL_ValidateCmd_Payload_t + type: string + - member: TableName + parent: CFE_TBL_ActivateCmd_Payload_t + type: string + - member: DumpFilename + parent: CFE_TBL_DumpRegCmd_Payload_t + type: string + - member: TableName + parent: CFE_TBL_TlmRegCmd_Payload_t + type: string + - member: TableName + parent: CFE_TBL_DelCDSCmd_Payload_t + type: string + - member: TableName + parent: CFE_TBL_AbortLdCmd_Payload_t + type: string + - member: LastValTableName + parent: CFE_TBL_HkPacket_Payload_t + type: string + - member: LastUpdatedTbl + parent: CFE_TBL_HkPacket_Payload_t + type: string + - member: LastFileLoaded + parent: CFE_TBL_HkPacket_Payload_t + type: string + - member: LastFileDumped + parent: CFE_TBL_HkPacket_Payload_t + type: string + - member: LastTableLoaded + parent: CFE_TBL_HkPacket_Payload_t + type: string + - member: Name + parent: CFE_TBL_TblRegPacket_Payload_t + type: string + - member: LastFileLoaded + parent: CFE_TBL_TblRegPacket_Payload_t + type: string + - member: OwnerAppName + parent: CFE_TBL_TblRegPacket_Payload_t + type: string + perfids: {} + short_name: cfe_tbl + telemetry: + CFE_TBL_HK_TLM_MID: + msgID: 2578 + struct: CFE_TBL_HkPacket_t + CFE_TBL_REG_TLM_MID: + msgID: 2584 + struct: CFE_TBL_TblRegPacket_t + cfe_time: + app_name: CFE_TIME + commands: + CFE_TIME_1HZ_CMD_MID: + commands: + 1HZCmd: + cc: 0 + struct: CFE_TIME_1HzCmd_t + msgID: 6667 + CFE_TIME_CMD_MID: + commands: + Add1HzAdjust: + cc: 13 + struct: CFE_TIME_1HzAdjCmd_t + AddAdjust: + cc: 11 + struct: CFE_TIME_TimeCmd_t + AddDelay: + cc: 5 + struct: CFE_TIME_TimeCmd_t + Noop: + cc: 0 + struct: CFE_TIME_NoArgsCmd_t + Reset: + cc: 1 + struct: CFE_TIME_NoArgsCmd_t + SendDiag: + cc: 2 + struct: CFE_TIME_NoArgsCmd_t + SetLeapSeconds: + cc: 10 + struct: CFE_TIME_TimeCmd_t + SetMET: + cc: 8 + struct: CFE_TIME_TimeCmd_t + SetSTCF: + cc: 9 + struct: CFE_TIME_TimeCmd_t + SetSignal: + cc: 15 + struct: CFE_TIME_SignalCmd_t + SetSource: + cc: 3 + struct: CFE_TIME_SourceCmd_t + SetState: + cc: 4 + struct: CFE_TIME_StateCmd_t + SetTime: + cc: 7 + struct: CFE_TIME_TimeCmd_t + Sub1HzAdjust: + cc: 14 + struct: CFE_TIME_1HzAdjCmd_t + SubAdjust: + cc: 12 + struct: CFE_TIME_TimeCmd_t + SubDelay: + cc: 6 + struct: CFE_TIME_TimeCmd_t + msgID: 6659 + CFE_TIME_DATA_CMD_MID: + commands: + ToneData: + cc: 0 + struct: CFE_TIME_ToneDataCmd_t + msgID: 6668 + CFE_TIME_FAKE_CMD_MID: + commands: + FakeTone: + cc: 0 + struct: CFE_TIME_FakeToneCmd_t + msgID: 6669 + CFE_TIME_SEND_CMD_MID: + commands: + SendCmd: + cc: 0 + struct: CFE_TIME_NoArgsCmd_t + msgID: 6670 + CFE_TIME_SEND_HK_MID: + msgID: 6665 + CFE_TIME_TONE_CMD_MID: + commands: + ToneSignal: + cc: 0 + struct: CFE_TIME_ToneSignalCmd_t + msgID: 6666 + config: + CFE_TIME_1HZ_CMD_MSG: + name: CFE_TIME_1HZ_CMD_MSG + value: 17 + CFE_TIME_1HZ_TASK_FLAGS: + name: CFE_TIME_1HZ_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CFE_TIME_1HZ_TASK_PRIORITY: + name: CFE_TIME_1HZ_TASK_PRIORITY + value: 25 + CFE_TIME_1HZ_TASK_STACK_SIZE: + name: CFE_TIME_1HZ_TASK_STACK_SIZE + value: 16384 + CFE_TIME_AT_TONE_WAS: + name: CFE_TIME_AT_TONE_WAS + value: true + CFE_TIME_AT_TONE_WILL_BE: + name: CFE_TIME_AT_TONE_WILL_BE + value: false + CFE_TIME_CFG_CLIENT: + name: CFE_TIME_CFG_CLIENT + value: false + CFE_TIME_CFG_DEFAULT_TAI: + name: CFE_TIME_CFG_DEFAULT_TAI + value: true + CFE_TIME_CFG_DEFAULT_UTC: + name: CFE_TIME_CFG_DEFAULT_UTC + value: false + CFE_TIME_CFG_FAKE_TONE: + name: CFE_TIME_CFG_FAKE_TONE + value: true + CFE_TIME_CFG_LATCH_FLY: + name: CFE_TIME_CFG_LATCH_FLY + value: 8 + CFE_TIME_CFG_SERVER: + name: CFE_TIME_CFG_SERVER + value: true + CFE_TIME_CFG_SIGNAL: + name: CFE_TIME_CFG_SIGNAL + value: false + CFE_TIME_CFG_SOURCE: + name: CFE_TIME_CFG_SOURCE + value: false + CFE_TIME_CFG_SRC_GPS: + name: CFE_TIME_CFG_SRC_GPS + value: false + CFE_TIME_CFG_SRC_MET: + name: CFE_TIME_CFG_SRC_MET + value: false + CFE_TIME_CFG_SRC_TIME: + name: CFE_TIME_CFG_SRC_TIME + value: false + CFE_TIME_CFG_START_FLY: + name: CFE_TIME_CFG_START_FLY + value: 2 + CFE_TIME_CFG_TONE_LIMIT: + name: CFE_TIME_CFG_TONE_LIMIT + value: 20000 + CFE_TIME_CFG_VIRTUAL: + name: CFE_TIME_CFG_VIRTUAL + value: true + CFE_TIME_CMD_MSG: + name: CFE_TIME_CMD_MSG + value: 5 + CFE_TIME_DATA_CMD_MSG: + name: CFE_TIME_DATA_CMD_MSG + value: 0 + CFE_TIME_DEF_DELAY_SECS: + name: CFE_TIME_DEF_DELAY_SECS + value: 0 + CFE_TIME_DEF_DELAY_SUBS: + name: CFE_TIME_DEF_DELAY_SUBS + value: 1000 + CFE_TIME_DEF_LEAPS: + name: CFE_TIME_DEF_LEAPS + value: 32 + CFE_TIME_DEF_MET_SECS: + name: CFE_TIME_DEF_MET_SECS + value: 1000 + CFE_TIME_DEF_MET_SUBS: + name: CFE_TIME_DEF_MET_SUBS + value: 0 + CFE_TIME_DEF_STCF_SECS: + name: CFE_TIME_DEF_STCF_SECS + value: 1000000 + CFE_TIME_DEF_STCF_SUBS: + name: CFE_TIME_DEF_STCF_SUBS + value: 0 + CFE_TIME_DIAG_TLM_MSG: + name: CFE_TIME_DIAG_TLM_MSG + value: 6 + CFE_TIME_ENA_1HZ_CMD_PKT: + name: CFE_TIME_ENA_1HZ_CMD_PKT + value: true + CFE_TIME_EPOCH_DAY: + name: CFE_TIME_EPOCH_DAY + value: 1 + CFE_TIME_EPOCH_HOUR: + name: CFE_TIME_EPOCH_HOUR + value: 0 + CFE_TIME_EPOCH_MINUTE: + name: CFE_TIME_EPOCH_MINUTE + value: 0 + CFE_TIME_EPOCH_SECOND: + name: CFE_TIME_EPOCH_SECOND + value: 0 + CFE_TIME_EPOCH_YEAR: + name: CFE_TIME_EPOCH_YEAR + value: 1980 + CFE_TIME_FAKE_CMD_MSG: + name: CFE_TIME_FAKE_CMD_MSG + value: 1 + CFE_TIME_FS_FACTOR: + name: CFE_TIME_FS_FACTOR + value: 789004800 + CFE_TIME_HK_TLM_MSG: + name: CFE_TIME_HK_TLM_MSG + value: 5 + CFE_TIME_MAX_DELTA_SECS: + name: CFE_TIME_MAX_DELTA_SECS + value: 0 + CFE_TIME_MAX_DELTA_SUBS: + name: CFE_TIME_MAX_DELTA_SUBS + value: 500000 + CFE_TIME_MAX_ELAPSED: + name: CFE_TIME_MAX_ELAPSED + value: 200000 + CFE_TIME_MAX_LOCAL_SECS: + name: CFE_TIME_MAX_LOCAL_SECS + value: CFE_TIME_MAX_LOCAL_SUBS + CFE_TIME_MAX_NUM_SYNCH_FUNCS: + name: CFE_TIME_MAX_NUM_SYNCH_FUNCS + value: 4 + CFE_TIME_MIN_ELAPSED: + name: CFE_TIME_MIN_ELAPSED + value: 0 + CFE_TIME_SEND_CMD_MSG: + name: CFE_TIME_SEND_CMD_MSG + value: 2 + CFE_TIME_SEND_HK_MSG: + name: CFE_TIME_SEND_HK_MSG + value: 13 + CFE_TIME_START_TASK_FLAGS: + name: CFE_TIME_START_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CFE_TIME_START_TASK_PRIORITY: + name: CFE_TIME_START_TASK_PRIORITY + value: 60 + CFE_TIME_START_TASK_STACK_SIZE: + name: CFE_TIME_START_TASK_STACK_SIZE + value: CFE_ES_DEFAULT_STACK_SIZE + CFE_TIME_TONE_CMD_MSG: + name: CFE_TIME_TONE_CMD_MSG + value: 16 + CFE_TIME_TONE_TASK_FLAGS: + name: CFE_TIME_TONE_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CFE_TIME_TONE_TASK_PRIORITY: + name: CFE_TIME_TONE_TASK_PRIORITY + value: 25 + CFE_TIME_TONE_TASK_STACK_SIZE: + name: CFE_TIME_TONE_TASK_STACK_SIZE + value: 16384 + events: + CFE_TIME_1HZ_CFG_EID: + id: 48 + CFE_TIME_1HZ_EID: + id: 16 + CFE_TIME_1HZ_ERR_EID: + id: 38 + CFE_TIME_CC_ERR_EID: + id: 27 + CFE_TIME_DELAY_CFG_EID: + id: 42 + CFE_TIME_DELAY_EID: + id: 11 + CFE_TIME_DELAY_ERR_EID: + id: 33 + CFE_TIME_DELTA_CFG_EID: + id: 47 + CFE_TIME_DELTA_EID: + id: 15 + CFE_TIME_DELTA_ERR_EID: + id: 37 + CFE_TIME_DIAG_EID: + id: 6 + CFE_TIME_EXIT_ERR_EID: + id: 25 + CFE_TIME_FLY_OFF_EID: + id: 21 + CFE_TIME_FLY_ON_EID: + id: 20 + CFE_TIME_ID_ERR_EID: + id: 26 + CFE_TIME_INIT_EID: + id: 1 + CFE_TIME_LEAPS_CFG_EID: + id: 46 + CFE_TIME_LEAPS_EID: + id: 17 + CFE_TIME_MET_CFG_EID: + id: 44 + CFE_TIME_MET_EID: + id: 13 + CFE_TIME_MET_ERR_EID: + id: 35 + CFE_TIME_NOOP_EID: + id: 4 + CFE_TIME_RESET_EID: + id: 5 + CFE_TIME_SIGNAL_CFG_EID: + id: 41 + CFE_TIME_SIGNAL_EID: + id: 9 + CFE_TIME_SIGNAL_ERR_EID: + id: 32 + CFE_TIME_SOURCE_CFG_EID: + id: 40 + CFE_TIME_SOURCE_EID: + id: 8 + CFE_TIME_SOURCE_ERR_EID: + id: 31 + CFE_TIME_STATE_EID: + id: 7 + CFE_TIME_STATE_ERR_EID: + id: 30 + CFE_TIME_STCF_CFG_EID: + id: 45 + CFE_TIME_STCF_EID: + id: 14 + CFE_TIME_STCF_ERR_EID: + id: 36 + CFE_TIME_TIME_CFG_EID: + id: 43 + CFE_TIME_TIME_EID: + id: 12 + CFE_TIME_TIME_ERR_EID: + id: 34 + long_name: Core Flight Executive - Time Services + module_type: CFE_CORE + msg_def_overrides: + - member: ToneSource + parent: CFE_TIME_SignalCmd_Payload_t + type: string + - enumerations: + FLYWHEEL: 1 + INVALID: -1 + VALID: 0 + member: ClockState + parent: CFE_TIME_StateCmd_Payload_t + type: enumeration + - enumerations: + EXTERN: 2 + INTERN: 1 + member: TimeSource + parent: CFE_TIME_SourceCmd_Payload_t + type: enumeration + - enumerations: + PRIMARY: 1 + REDUNDANT: 2 + member: ToneSource + parent: CFE_TIME_SignalCmd_Payload_t + type: enumeration + - enumerations: + FLYWHEEL: 1 + INVALID: -1 + VALID: 0 + member: ClockStateAPI + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + NOT_SET: 0 + WAS_SET: 1 + member: ClockSetState + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + IS_FLY: 1 + NO_FLY: 0 + member: ClockFlyState + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + EXTERN: 2 + INTERN: 1 + member: ClockSource + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + PRIMARY: 1 + REDUNDANT: 2 + member: ClockSignal + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + IS_FLY: 1 + NO_FLY: 0 + member: ServerFlyState + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + ADD: 1 + SUB: 2 + member: OneTimeDirection + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + ADD: 1 + SUB: 2 + member: OneHzDirection + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + ADD: 1 + SUB: 2 + member: DelayDirection + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + BAD: 2 + ERROR: 1 + EXISTING: 4 + NEW: 3 + member: DataStoreStatus + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + perfids: + CFE_TIME_LOCAL1HZISR_PERF_ID: + id: 8 + CFE_TIME_LOCAL1HZTASK_PERF_ID: + id: 10 + CFE_TIME_MAIN_PERF_ID: + id: 6 + CFE_TIME_SENDMET_PERF_ID: + id: 9 + CFE_TIME_TONE1HZISR_PERF_ID: + id: 7 + CFE_TIME_TONE1HZTASK_PERF_ID: + id: 11 + short_name: cfe_time + telemetry: + CFE_TIME_DIAG_TLM_MID: + msgID: 2580 + struct: CFE_TIME_DiagPacket_t + CFE_TIME_HK_TLM_MID: + msgID: 2579 + struct: CFE_TIME_HkPacket_t + short_name: cfe + osal: + config: + OSAL_SOCKET_QUEUE: + name: OSAL_SOCKET_QUEUE + value: false + OS_BUFFER_MSG_DEPTH: + name: OS_BUFFER_MSG_DEPTH + value: 100 + OS_BUFFER_SIZE: + name: OS_BUFFER_SIZE + value: 4000 + OS_INCLUDE_MODULE_LOADER: + name: OS_INCLUDE_MODULE_LOADER + value: true + OS_INCLUDE_NETWORK: + name: OS_INCLUDE_NETWORK + value: true + OS_MAX_API_NAME: + name: OS_MAX_API_NAME + value: 40 + OS_MAX_BIN_SEMAPHORES: + name: OS_MAX_BIN_SEMAPHORES + value: 100 + OS_MAX_CMD_LEN: + name: OS_MAX_CMD_LEN + value: 1000 + OS_MAX_COUNT_SEMAPHORES: + name: OS_MAX_COUNT_SEMAPHORES + value: 100 + OS_MAX_FILE_NAME: + name: OS_MAX_FILE_NAME + value: 20 + OS_MAX_LOCAL_PATH_LEN: + name: OS_MAX_LOCAL_PATH_LEN + value: OS_MAX_PATH_LEN + OS_FS_PHYS_NAME_LEN + OS_MAX_MODULES: + name: OS_MAX_MODULES + value: 64 + OS_MAX_MUTEXES: + name: OS_MAX_MUTEXES + value: 100 + OS_MAX_NUM_OPEN_FILES: + name: OS_MAX_NUM_OPEN_FILES + value: 50 + OS_MAX_PATH_LEN: + name: OS_MAX_PATH_LEN + value: 64 + OS_MAX_QUEUES: + name: OS_MAX_QUEUES + value: 255 + OS_MAX_QUEUE_DEPTH: + name: OS_MAX_QUEUE_DEPTH + value: 256 + OS_MAX_QUEUE_WIDTH: + name: OS_MAX_QUEUE_WIDTH + value: 8 + OS_MAX_SYM_LEN: + name: OS_MAX_SYM_LEN + value: 64 + OS_MAX_TASKS: + name: OS_MAX_TASKS + value: 100 + OS_MAX_TIMEOUTS: + name: OS_MAX_TIMEOUTS + value: OS_MAX_QUEUES+OS_MAX_COUNT_SEMAPHORES+OS_MAX_BIN_SEMAPHORES + OS_MAX_TIMERS: + name: OS_MAX_TIMERS + value: 5 + OS_RUNTIME_MANAGER_CMD_QUEUE_DEPTH: + name: OS_RUNTIME_MANAGER_CMD_QUEUE_DEPTH + value: 1 + OS_RUNTIME_MANAGER_CMD_QUEUE_NAME: + name: OS_RUNTIME_MANAGER_CMD_QUEUE_NAME + value: OS_RUNTIME_MGR_CMD + OS_RUNTIME_MANAGER_CMD_TASK_NAME: + name: OS_RUNTIME_MANAGER_CMD_TASK_NAME + value: OS_RUNTIME_MGR_CMD + OS_RUNTIME_MANAGER_CMD_TASK_PRIORITY: + name: OS_RUNTIME_MANAGER_CMD_TASK_PRIORITY + value: 0 + OS_RUNTIME_MANAGER_CMD_TASK_STACK_SIZE: + name: OS_RUNTIME_MANAGER_CMD_TASK_STACK_SIZE + value: 32535 + OS_RUNTIME_MANAGER_EXEC_TASK_NAME: + name: OS_RUNTIME_MANAGER_EXEC_TASK_NAME + value: OS_RUNTIME_MGR_EXEC + OS_RUNTIME_MANAGER_EXEC_TASK_PRIORITY: + name: OS_RUNTIME_MANAGER_EXEC_TASK_PRIORITY + value: 99 + OS_RUNTIME_MANAGER_EXEC_TASK_STACK_SIZE: + name: OS_RUNTIME_MANAGER_EXEC_TASK_STACK_SIZE + value: 32535 + OS_RUNTIME_MANAGER_SEM_NAME: + name: OS_RUNTIME_MANAGER_SEM_NAME + value: OS_RUNTIME_MGR_SEM + OS_SHELL_CMD_INPUT_FILE_NAME: + name: OS_SHELL_CMD_INPUT_FILE_NAME + value: /ram/OS_ShellCmd.in + OS_UTILITYTASK_PRIORITY: + name: OS_UTILITYTASK_PRIORITY + value: 245 + OS_UTILITYTASK_STACK_SIZE: + name: OS_UTILITYTASK_STACK_SIZE + value: 2048 + OS_UTILITY_TASK_ON: + name: OS_UTILITY_TASK_ON + value: true + definition: /home/lgomez/squeaky-weasel/software/airliner/public/../private/core/osal/freertos/wh_design.yaml + long_name: Operating System Abstraction Layer + short_name: osal + psp: + definition: /home/lgomez/squeaky-weasel/software/airliner/public/../private/core/psp/obc-cpd/wh_design.yaml + cs: + app_name: CS + commands: + CS_BACKGROUND_CYCLE_MID: + commands: + BackgroundCycle: + cc: 0 + struct: CS_NoArgsCmd_t + msgID: 6738 + CS_CMD_MID: + commands: + CancelOneShot: + cc: 3 + struct: CS_NoArgsCmd_t + DisableAllCS: + cc: 5 + struct: CS_NoArgsCmd_t + DisableApps: + cc: 35 + struct: CS_NoArgsCmd_t + DisableCfeCore: + cc: 7 + struct: CS_NoArgsCmd_t + DisableEEPROM: + cc: 15 + struct: CS_NoArgsCmd_t + DisableEntryEEPROM: + cc: 19 + struct: CS_EntryCmd_t + DisableEntryMemory: + cc: 26 + struct: CS_EntryCmd_t + DisableMemory: + cc: 22 + struct: CS_NoArgsCmd_t + DisableNameApp: + cc: 39 + struct: CS_AppNameCmd_t + DisableNameTable: + cc: 33 + struct: CS_TableNameCmd_t + DisableOS: + cc: 11 + struct: CS_NoArgsCmd_t + DisableTables: + cc: 29 + struct: CS_NoArgsCmd_t + EnableAllCS: + cc: 4 + struct: CS_NoArgsCmd_t + EnableApps: + cc: 34 + struct: CS_NoArgsCmd_t + EnableCfeCore: + cc: 6 + struct: CS_NoArgsCmd_t + EnableEEPROM: + cc: 14 + struct: CS_NoArgsCmd_t + EnableEntryEEPROM: + cc: 18 + struct: CS_EntryCmd_t + EnableEntryMemory: + cc: 25 + struct: CS_EntryCmd_t + EnableMemory: + cc: 21 + struct: CS_NoArgsCmd_t + EnableNameApp: + cc: 38 + struct: CS_AppNameCmd_t + EnableNameTable: + cc: 32 + struct: CS_TableNameCmd_t + EnableOS: + cc: 10 + struct: CS_NoArgsCmd_t + EnableTables: + cc: 28 + struct: CS_NoArgsCmd_t + GetEntryIDEEPROM: + cc: 20 + struct: CS_GetEntryIDCmd_t + GetEntryIDMemory: + cc: 27 + struct: CS_GetEntryIDCmd_t + Noop: + cc: 0 + struct: CS_NoArgsCmd_t + OneShot: + cc: 2 + struct: CS_OneShotCmd_t + RecomputeBaselineApp: + cc: 37 + struct: CS_AppNameCmd_t + RecomputeBaselineCfeCore: + cc: 9 + struct: CS_NoArgsCmd_t + RecomputeBaselineEEPROM: + cc: 17 + struct: CS_EntryCmd_t + RecomputeBaselineMemory: + cc: 24 + struct: CS_EntryCmd_t + RecomputeBaselineOS: + cc: 13 + struct: CS_NoArgsCmd_t + RecomputeBaselineTable: + cc: 31 + struct: CS_TableNameCmd_t + ReportBaselineApp: + cc: 36 + struct: CS_AppNameCmd_t + ReportBaselineCfeCore: + cc: 8 + struct: CS_NoArgsCmd_t + ReportBaselineEEPROM: + cc: 16 + struct: CS_EntryCmd_t + ReportBaselineMemory: + cc: 23 + struct: CS_EntryCmd_t + ReportBaselineOS: + cc: 12 + struct: CS_NoArgsCmd_t + ReportBaselineTable: + cc: 30 + struct: CS_TableNameCmd_t + Reset: + cc: 1 + struct: CS_NoArgsCmd_t + msgID: 6737 + CS_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CS_NoArgsCmd_t + msgID: 6739 + config: + CS_APPS_TBL_POWERON_STATE: + name: CS_APPS_TBL_POWERON_STATE + value: CS_STATE_ENABLED + CS_CDS_NAME: + name: CS_CDS_NAME + value: CS_CDS + CS_CFECORE_CHECKSUM_STATE: + name: CS_CFECORE_CHECKSUM_STATE + value: CS_STATE_ENABLED + CS_CHILD_TASK_DELAY: + name: CS_CHILD_TASK_DELAY + value: 1000 + CS_CHILD_TASK_FLAGS: + name: CS_CHILD_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CS_CHILD_TASK_PRIORITY: + name: CS_CHILD_TASK_PRIORITY + value: 200 + CS_DEFAULT_ALGORITHM: + name: CS_DEFAULT_ALGORITHM + value: CFE_ES_DEFAULT_CRC + CS_DEFAULT_BYTES_PER_CYCLE: + name: CS_DEFAULT_BYTES_PER_CYCLE + value: 1024 *16 + CS_DEF_APP_TABLE_FILENAME: + name: CS_DEF_APP_TABLE_FILENAME + value: /cf/apps/cs_apptbl.tbl + CS_DEF_EEPROM_TABLE_FILENAM: + name: CS_DEF_EEPROM_TABLE_FILENAM + value: /cf/apps/cs_eepromtbl.tbl + CS_DEF_MEMORY_TABLE_FILENAME: + name: CS_DEF_MEMORY_TABLE_FILENAME + value: /cf/apps/cs_memorytbl.tbl + CS_DEF_TABLES_TABLE_FILENAME: + name: CS_DEF_TABLES_TABLE_FILENAME + value: /cf/apps/cs_tablestbl.tbl + CS_EEPROM_TBL_POWERON_STATE: + name: CS_EEPROM_TBL_POWERON_STATE + value: CS_STATE_ENABLED + CS_MAX_NUM_APP_TABLE_ENTRIES: + name: CS_MAX_NUM_APP_TABLE_ENTRIES + value: 24 + CS_MAX_NUM_EEPROM_TABLE_ENTRIES: + name: CS_MAX_NUM_EEPROM_TABLE_ENTRIES + value: 16 + CS_MAX_NUM_MEMORY_TABLE_ENTRIES: + name: CS_MAX_NUM_MEMORY_TABLE_ENTRIES + value: 16 + CS_MAX_NUM_TABLES_TABLE_ENTRIES: + name: CS_MAX_NUM_TABLES_TABLE_ENTRIES + value: 24 + CS_MEMORY_TBL_POWERON_STATE: + name: CS_MEMORY_TBL_POWERON_STATE + value: CS_STATE_ENABLED + CS_OSCS_CHECKSUM_STATE: + name: CS_OSCS_CHECKSUM_STATE + value: CS_STATE_ENABLED + CS_PIPE_DEPTH: + name: CS_PIPE_DEPTH + value: 12 + CS_PRESERVE_STATES_ON_PROCESSOR_RESET: + name: CS_PRESERVE_STATES_ON_PROCESSOR_RESET + value: true + CS_STARTUP_TIMEOUT: + name: CS_STARTUP_TIMEOUT + value: 60000 + CS_TABLES_TBL_POWERON_STATE: + name: CS_TABLES_TBL_POWERON_STATE + value: CS_STATE_ENABLED + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/cs/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + CS_APP_MISCOMPARE_ERR_EID: + id: 30 + CS_BASELINE_APP_INF_EID: + id: 82 + CS_BASELINE_CFECORE_INF_EID: + id: 10 + CS_BASELINE_EEPROM_INF_EID: + id: 39 + CS_BASELINE_INVALID_ENTRY_EEPROM_ERR_EID: + id: 41 + CS_BASELINE_INVALID_ENTRY_MEMORY_ERR_EID: + id: 56 + CS_BASELINE_INVALID_NAME_APP_ERR_EID: + id: 84 + CS_BASELINE_INVALID_NAME_TABLES_ERR_EID: + id: 71 + CS_BASELINE_MEMORY_INF_EID: + id: 54 + CS_BASELINE_OS_INF_EID: + id: 12 + CS_BASELINE_TABLES_INF_EID: + id: 69 + CS_CC1_ERR_EID: + id: 34 + CS_CFECORE_MISCOMPARE_ERR_EID: + id: 31 + CS_COMPUTE_APP_ERR_EID: + id: 122 + CS_COMPUTE_APP_NOT_FOUND_ERR_EID: + id: 93 + CS_COMPUTE_APP_PLATFORM_DBG_EID: + id: 128 + CS_COMPUTE_TABLES_ERR_EID: + id: 121 + CS_COMPUTE_TABLES_NOT_FOUND_ERR_EID: + id: 94 + CS_COMPUTE_TABLES_RELEASE_ERR_EID: + id: 120 + CS_DISABLE_ALL_INF_EID: + id: 4 + CS_DISABLE_APP_DEF_NOT_FOUND_DBG_EID: + id: 132 + CS_DISABLE_APP_INF_EID: + id: 80 + CS_DISABLE_APP_NAME_INF_EID: + id: 91 + CS_DISABLE_APP_UNKNOWN_NAME_ERR_EID: + id: 92 + CS_DISABLE_CFECORE_INF_EID: + id: 6 + CS_DISABLE_EEPROM_DEF_EMPTY_DBG_EID: + id: 135 + CS_DISABLE_EEPROM_ENTRY_INF_EID: + id: 48 + CS_DISABLE_EEPROM_INF_EID: + id: 37 + CS_DISABLE_EEPROM_INVALID_ENTRY_ERR_EID: + id: 49 + CS_DISABLE_MEMORY_DEF_EMPTY_DBG_EID: + id: 133 + CS_DISABLE_MEMORY_ENTRY_INF_EID: + id: 63 + CS_DISABLE_MEMORY_INF_EID: + id: 52 + CS_DISABLE_MEMORY_INVALID_ENTRY_ERR_EID: + id: 64 + CS_DISABLE_OS_INF_EID: + id: 8 + CS_DISABLE_TABLES_INF_EID: + id: 67 + CS_DISABLE_TABLES_NAME_INF_EID: + id: 78 + CS_DISABLE_TABLES_UNKNOWN_NAME_ERR_EID: + id: 79 + CS_DISABLE_TABLE_DEF_NOT_FOUND_DBG_EID: + id: 130 + CS_EEPROM_MISCOMPARE_ERR_EID: + id: 27 + CS_ENABLE_ALL_INF_EID: + id: 5 + CS_ENABLE_APP_DEF_NOT_FOUND_DBG_EID: + id: 131 + CS_ENABLE_APP_INF_EID: + id: 81 + CS_ENABLE_APP_NAME_INF_EID: + id: 89 + CS_ENABLE_APP_UNKNOWN_NAME_ERR_EID: + id: 90 + CS_ENABLE_CFECORE_INF_EID: + id: 7 + CS_ENABLE_EEPROM_DEF_EMPTY_DBG_EID: + id: 136 + CS_ENABLE_EEPROM_ENTRY_INF_EID: + id: 46 + CS_ENABLE_EEPROM_INF_EID: + id: 38 + CS_ENABLE_EEPROM_INVALID_ENTRY_ERR_EID: + id: 47 + CS_ENABLE_MEMORY_DEF_EMPTY_DBG_EID: + id: 134 + CS_ENABLE_MEMORY_ENTRY_INF_EID: + id: 61 + CS_ENABLE_MEMORY_INF_EID: + id: 53 + CS_ENABLE_MEMORY_INVALID_ENTRY_ERR_EID: + id: 62 + CS_ENABLE_OS_INF_EID: + id: 9 + CS_ENABLE_TABLES_INF_EID: + id: 68 + CS_ENABLE_TABLES_NAME_INF_EID: + id: 76 + CS_ENABLE_TABLES_UNKNOWN_NAME_ERR_EID: + id: 77 + CS_ENABLE_TABLE_DEF_NOT_FOUND_DBG_EID: + id: 129 + CS_EXIT_ERR_EID: + id: 35 + CS_EXIT_INF_EID: + id: 146 + CS_GET_ENTRY_ID_EEPROM_INF_EID: + id: 50 + CS_GET_ENTRY_ID_EEPROM_NOT_FOUND_INF_EI: + id: 51 + CS_GET_ENTRY_ID_MEMORY_INF_EID: + id: 65 + CS_GET_ENTRY_ID_MEMORY_NOT_FOUND_INF_EID: + id: 66 + CS_INIT_APP_ERR_EID: + id: 119 + CS_INIT_CDS_ERR_EID 145: + id: 145 + CS_INIT_EEPROM_ERR_EID: + id: 116 + CS_INIT_INF_EID: + id: 1 + CS_INIT_MEMORY_ERR_EID: + id: 117 + CS_INIT_SB_CREATE_ERR_EID: + id: 112 + CS_INIT_SB_SUBSCRIBE_BACK_ERR_EID: + id: 114 + CS_INIT_SB_SUBSCRIBE_CMD_ERR_EID: + id: 115 + CS_INIT_SB_SUBSCRIBE_HK_ERR_EID: + id: 113 + CS_INIT_TABLES_ERR_EID: + id: 118 + CS_LEN_ERR_EID: + id: 36 + CS_MEMORY_MISCOMPARE_ERR_EID: + id: 28 + CS_MID_ERR_EID: + id: 33 + CS_NOOP_INF_EID: + id: 2 + CS_NO_BASELINE_APP_INF_EID: + id: 83 + CS_NO_BASELINE_CFECORE_INF_EID: + id: 11 + CS_NO_BASELINE_EEPROM_INF_EID: + id: 40 + CS_NO_BASELINE_MEMORY_INF_EID: + id: 55 + CS_NO_BASELINE_OS_INF_EID: + id: 13 + CS_NO_BASELINE_TABLES_INF_EID: + id: 70 + CS_ONESHOT_CANCELLED_INF_EID: + id: 24 + CS_ONESHOT_CANCEL_DELETE_CHDTASK_ERR_EID: + id: 25 + CS_ONESHOT_CANCEL_NO_CHDTASK_ERR_EID: + id: 26 + CS_ONESHOT_CHDTASK_ERR_EID: + id: 22 + CS_ONESHOT_CREATE_CHDTASK_ERR_EID: + id: 21 + CS_ONESHOT_FINISHED_INF_EID: + id: 100 + CS_ONESHOT_MEMVALIDATE_ERR_EID: + id: 23 + CS_ONESHOT_STARTED_DBG_EID: + id: 20 + CS_OS_MISCOMPARE_ERR_EID: + id: 32 + CS_OS_TEXT_SEG_INF_EID: + id: 127 + CS_PROCESS_APP_NO_ENTRIES_INF_EID: + id: 108 + CS_PROCESS_EEPROM_MEMORY_NO_ENTRIES_INF_EID: + id: 107 + CS_PROCESS_TABLES_NO_ENTRIES_INF_EID: + id: 109 + CS_RECOMPUTE_APP_CHDTASK_ERR_EID: + id: 88 + CS_RECOMPUTE_APP_CREATE_CHDTASK_ERR_EID: + id: 86 + CS_RECOMPUTE_APP_STARTED_DBG_EID: + id: 85 + CS_RECOMPUTE_CFECORE_CHDTASK_ERR_EID: + id: 16 + CS_RECOMPUTE_CFECORE_CREATE_CHDTASK_ERR_EID: + id: 15 + CS_RECOMPUTE_CFECORE_STARTED_DBG_EID: + id: 14 + CS_RECOMPUTE_EEPROM_CHDTASK_ERR_EID: + id: 45 + CS_RECOMPUTE_EEPROM_CREATE_CHDTASK_ERR_EID: + id: 43 + CS_RECOMPUTE_EEPROM_STARTED_DBG_EID: + id: 42 + CS_RECOMPUTE_ERROR_APP_ERR_EID: + id: 97 + CS_RECOMPUTE_ERROR_TABLES_ERR_EID: + id: 96 + CS_RECOMPUTE_FINISH_APP_INF_EID: + id: 99 + CS_RECOMPUTE_FINISH_EEPROM_MEMORY_INF_EID: + id: 95 + CS_RECOMPUTE_FINISH_TABLES_INF_EID: + id: 98 + CS_RECOMPUTE_INVALID_ENTRY_EEPROM_ERR_EID: + id: 44 + CS_RECOMPUTE_INVALID_ENTRY_MEMORY_ERR_EID: + id: 59 + CS_RECOMPUTE_MEMORY_CHDTASK_ERR_EID: + id: 60 + CS_RECOMPUTE_MEMORY_CREATE_CHDTASK_ERR_EID: + id: 58 + CS_RECOMPUTE_MEMORY_STARTED_DBG_EID: + id: 57 + CS_RECOMPUTE_OS_CHDTASK_ERR_EID: + id: 19 + CS_RECOMPUTE_OS_CREATE_CHDTASK_ERR_EID: + id: 18 + CS_RECOMPUTE_OS_STARTED_DBG_EI: + id: 17 + CS_RECOMPUTE_TABLES_CHDTASK_ERR_EID: + id: 75 + CS_RECOMPUTE_TABLES_CREATE_CHDTASK_ERR_EID: + id: 73 + CS_RECOMPUTE_TABLES_STARTED_DBG_EID: + id: 72 + CS_RECOMPUTE_UNKNOWN_NAME_APP_ERR_EID: + id: 87 + CS_RECOMPUTE_UNKNOWN_NAME_TABLES_ERR_EID: + id: 74 + CS_RESET_DBG_EID: + id: 3 + CS_TABLES_MISCOMPARE_ERR_EID: + id: 29 + CS_TBL_INIT_ERR_EID: + id: 110 + CS_TBL_UPDATE_ERR_EID: + id: 111 + CS_UPDATE_APP_ERR_EID: + id: 126 + CS_UPDATE_EEPROM_ERR_EID: + id: 123 + CS_UPDATE_MEMORY_ERR_EID: + id: 124 + CS_UPDATE_TABLES_ERR_EID: + id: 125 + CS_VAL_APP_DEF_TBL_DUPL_ERR_EID: + id: 140 + CS_VAL_APP_DEF_TBL_ZERO_NAME_ERR_EID: + id: 141 + CS_VAL_APP_INF_EID: + id: 142 + CS_VAL_APP_STATE_ERR_EID: + id: 106 + CS_VAL_EEPROM_INF_EID: + id: 144 + CS_VAL_EEPROM_RANGE_ERR_EID: + id: 102 + CS_VAL_EEPROM_STATE_ERR_EID: + id: 101 + CS_VAL_MEMORY_INF_EID: + id: 143 + CS_VAL_MEMORY_RANGE_ERR_EID: + id: 104 + CS_VAL_MEMORY_STATE_ERR_EID: + id: 103 + CS_VAL_TABLES_DEF_TBL_DUPL_ERR_EID: + id: 137 + CS_VAL_TABLES_DEF_TBL_ZERO_NAME_ERR_EID: + id: 138 + CS_VAL_TABLES_INF_EID: + id: 139 + CS_VAL_TABLES_STATE_ERR_EID: + id: 105 + long_name: Checksum Services + module_type: CFE_APP + msg_def_overrides: + - member: Name + parent: CS_AppNameCmd_t + type: string + - member: Name + parent: CS_TableNameCmd_t + type: string + perfids: + CS_APPMAIN_PERF_ID: + id: 44 + short_name: cs + telemetry: + CS_HK_TLM_MID: + msgID: 2640 + struct: CS_HkPacket_t + ds: + app_name: DS + commands: + DS_CMD_MID: + commands: + AddMessage: + cc: 16 + struct: DS_AddMidCmd_t + CloseAll: + cc: 17 + struct: DS_CloseAllCmd_t + CloseFile: + cc: 14 + struct: DS_CloseFileCmd_t + GetFileInfo: + cc: 15 + struct: DS_GetFileInfoCmd_t + Noop: + cc: 0 + struct: DS_NoopCmd_t + Reset: + cc: 1 + struct: DS_ResetCmd_t + SetAppState: + cc: 2 + struct: DS_AppStateCmd_t + SetDestAge: + cc: 12 + struct: DS_DestAgeCmd_t + SetDestBase: + cc: 9 + struct: DS_DestBaseCmd_t + SetDestCount: + cc: 13 + struct: DS_DestCountCmd_t + SetDestExt: + cc: 10 + struct: DS_DestExtCmd_t + SetDestPath: + cc: 8 + struct: DS_DestPathCmd_t + SetDestSize: + cc: 11 + struct: DS_DestSizeCmd_t + SetDestState: + cc: 7 + struct: DS_DestStateCmd_t + SetDestType: + cc: 6 + struct: DS_DestTypeCmd_t + SetFilterFile: + cc: 3 + struct: DS_FilterFileCmd_t + SetFilterParams: + cc: 5 + struct: DS_FilterParmsCmd_t + SetFilterType: + cc: 4 + struct: DS_FilterTypeCmd_t + msgID: 6742 + DS_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: DS_NoopCmd_t + msgID: 6743 + config: + DS_APP_PIPE_DEPTH: + name: DS_APP_PIPE_DEPTH + value: 256 + DS_APP_PIPE_NAME: + name: DS_APP_PIPE_NAME + value: DS_CMD_PIPE + DS_BASENAME_BUFSIZE: + name: DS_BASENAME_BUFSIZE + value: OS_MAX_PATH_LEN + DS_CDS_ENABLE_STATE: + name: DS_CDS_ENABLE_STATE + value: 1 + DS_DEF_DEST_FILENAME: + name: DS_DEF_DEST_FILENAME + value: /cf/apps/ds_file_tbl.tbl + DS_DEF_ENABLE_STATE: + name: DS_DEF_ENABLE_STATE + value: 1 + DS_DEF_FILTER_FILENAME: + name: DS_DEF_FILTER_FILENAME + value: cf/apps/ds_filter_tbl.tbl + DS_DESCRIPTOR_BUFSIZE: + name: DS_DESCRIPTOR_BUFSIZE + value: 32 + DS_DESTINATION_TBL_NAME: + name: DS_DESTINATION_TBL_NAME + value: FILE_TBL + DS_DEST_FILE_CNT: + name: DS_DEST_FILE_CNT + value: 16 + DS_EXTENSION_BUFSIZE: + name: DS_EXTENSION_BUFSIZE + value: 8 + DS_FILE_HDR_DESCRIPTION: + name: DS_FILE_HDR_DESCRIPTION + value: DS data storage file + DS_FILE_HDR_SUBTYPE: + name: DS_FILE_HDR_SUBTYPE + value: 12345 + DS_FILE_HEADER_TYPE: + name: DS_FILE_HEADER_TYPE + value: 1 + DS_FILE_MIN_AGE_LIMIT: + name: DS_FILE_MIN_AGE_LIMIT + value: 60 + DS_FILE_MIN_SIZE_LIMIT: + name: DS_FILE_MIN_SIZE_LIMIT + value: 1024 + DS_FILTERS_PER_PACKET: + name: DS_FILTERS_PER_PACKET + value: 4 + DS_FILTER_TBL_NAME: + name: DS_FILTER_TBL_NAME + value: FILTER_TBL + DS_MAKE_TABLES_CRITICAL: + name: DS_MAKE_TABLES_CRITICAL + value: 0 + DS_MAX_SEQUENCE_COUNT: + name: DS_MAX_SEQUENCE_COUNT + value: 99999999 + DS_MISSION_REV: + name: DS_MISSION_REV + value: 0 + DS_MOVE_FILES: + name: DS_MOVE_FILES + value: 50 + DS_PACKETS_IN_FILTER_TABLE: + name: DS_PACKETS_IN_FILTER_TABLE + value: 256 + DS_PATHNAME_BUFSIZE: + name: DS_PATHNAME_BUFSIZE + value: OS_MAX_PATH_LEN + DS_PER_PACKET_PIPE_LIMIT: + name: DS_PER_PACKET_PIPE_LIMIT + value: 1 + DS_SECS_PER_HK_CYCLE: + name: DS_SECS_PER_HK_CYCLE + value: 4 + DS_SEQUENCE_DIGITS: + name: DS_SEQUENCE_DIGITS + value: 8 + DS_TOTAL_FNAME_BUFSIZE: + name: DS_TOTAL_FNAME_BUFSIZE + value: OS_MAX_PATH_LEN + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/ds/wh_design.yaml + events: + DS_ADD_MID_CMD_EID: + id: 64 + DS_ADD_MID_CMD_ERR_EID: + id: 65 + DS_AGE_CMD_EID: + id: 55 + DS_AGE_CMD_ERR_EID: + id: 56 + DS_BASE_CMD_EID: + id: 49 + DS_BASE_CMD_ERR_EID: + id: 50 + DS_CLOSE_ALL_CMD_EID: + id: 66 + DS_CLOSE_ALL_CMD_ERR_EID: + id: 67 + DS_CLOSE_CMD_EID: + id: 59 + DS_CLOSE_CMD_ERR_EID: + id: 60 + DS_CMD_CODE_ERR_EID: + id: 21 + DS_CREATE_FILE_ERR_EID: + id: 15 + DS_ENADIS_CMD_EID: + id: 35 + DS_ENADIS_CMD_ERR_EID: + id: 36 + DS_EXIT_ERR_EID: + id: 3 + DS_EXT_CMD_EI: + id: 51 + DS_EXT_CMD_ERR_EID: + id: 52 + DS_FILE_CMD_EID: + id: 37 + DS_FILE_CMD_ERR_EID: + id: 38 + DS_FILE_NAME_ERR_EID: + id: 14 + DS_FIL_TBL_EID: + id: 10 + DS_FIL_TBL_ERR_EID: + id: 11 + DS_FLT_TBL_EID: + id: 12 + DS_FLT_TBL_ERR_EID: + id: 13 + DS_FTYPE_CMD_EID: + id: 39 + DS_FTYPE_CMD_ERR_EID: + id: 40 + DS_GET_FILE_INFO_CMD_EID: + id: 62 + DS_GET_FILE_INFO_CMD_ERR_EID: + id: 63 + DS_HK_REQUEST_ERR_EID: + id: 22 + DS_INIT_CDS_ERR_EID: + id: 6 + DS_INIT_EID: + id: 1 + DS_INIT_ERR_EID: + id: 2 + DS_INIT_TBL_CDS_EID: + id: 7 + DS_INIT_TBL_ERR_EID: + id: 8 + DS_MOVE_FILE_ERR_EID: + id: 61 + DS_NOOP_CMD_EID: + id: 31 + DS_NOOP_CMD_ERR_EID: + id: 32 + DS_NTYPE_CMD_EID: + id: 43 + DS_NTYPE_CMD_ERR_EID: + id: 44 + DS_PARMS_CMD_EID: + id: 41 + DS_PARMS_CMD_ERR_EID: + id: 42 + DS_PATH_CMD_EID: + id: 47 + DS_PATH_CMD_ERR_EID: + id: 48 + DS_RESET_CMD_EID: + id: 33 + DS_RESET_CMD_ERR_EID: + id: 34 + DS_SEQ_CMD_EID: + id: 57 + DS_SEQ_CMD_ERR_EID: + id: 58 + DS_SIZE_CMD_EID: + id: 53 + DS_SIZE_CMD_ERR_EID: + id: 54 + DS_STATE_CMD_EID: + id: 45 + DS_STATE_CMD_ERR_EID: + id: 46 + DS_WRITE_FILE_ERR_EID: + id: 16 + long_name: Data Storage + module_type: CFE_APP + msg_def_overrides: + - member: FilterTblFilename + parent: DS_HkPacket_t + type: string + - member: FileName + parent: DS_FileInfo_t + type: string + - member: Pathname + parent: DS_DestPathCmd_t + type: string + - member: Basename + parent: DS_DestBaseCmd_t + type: string + - member: Extension + parent: DS_DestExtCmd_t + type: string + perfids: + DS_APPMAIN_PERF_ID: + id: 45 + short_name: ds + telemetry: + DS_DIAG_TLM_MID: + msgID: 2644 + struct: DS_FileInfoPkt_t + DS_HK_TLM_MID: + msgID: 2645 + struct: DS_HkPacket_t + ea: + app_name: EA + commands: + EA_CMD_MID: + commands: + Noop: + cc: 0 + struct: EA_NoArgCmd_t + Reset: + cc: 1 + struct: EA_NoArgCmd_t + Start: + cc: 2 + struct: EA_StartCmd_t + Terminate: + cc: 3 + struct: EA_NoArgCmd_t + msgID: 6950 + EA_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: EA_NoArgCmd_t + msgID: 6951 + EA_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: EA_NoArgCmd_t + msgID: 6952 + config: + EA_APP_NUM_THREADS: + name: EA_APP_NUM_THREADS + value: 4 + EA_APP_UTIL_THRESHOLD: + name: EA_APP_UTIL_THRESHOLD + value: 70 + EA_CHILD_TASK_FLAGS: + name: EA_CHILD_TASK_FLAGS + value: OS_ENABLE_CORE_0 + EA_CHILD_TASK_PRIORITY: + name: EA_CHILD_TASK_PRIORITY + value: 187 + EA_CMD_PIPE_DEPTH: + name: EA_CMD_PIPE_DEPTH + value: 4 + EA_CMD_PIPE_NAME: + name: EA_CMD_PIPE_NAME + value: EA_CMD_PIPE + EA_CONFIG_TABLE_FILENAME: + name: EA_CONFIG_TABLE_FILENAME + value: /cf/apps/ea_config.tbl + EA_DATA_PIPE_DEPTH: + name: EA_DATA_PIPE_DEPTH + value: 4 + EA_DATA_PIPE_NAME: + name: EA_DATA_PIPE_NAME + value: EA_DATA_PIPE + EA_MAX_PATH_LEN: + name: EA_MAX_PATH_LEN + value: 96 + EA_MISSION_REV: + name: EA_MISSION_REV + value: 0 + EA_SB_TIMEOUT: + name: EA_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + EA_SCH_PIPE_DEPTH: + name: EA_SCH_PIPE_DEPTH + value: 2 + EA_SCH_PIPE_NAME: + name: EA_SCH_PIPE_NAME + value: EA_SCH_PIPE + EA_SCH_PIPE_PEND_TIME: + name: EA_SCH_PIPE_PEND_TIME + value: 2000 + EA_SCH_PIPE_SEND_HK_RESERVED: + name: EA_SCH_PIPE_SEND_HK_RESERVED + value: 1 + EA_SCH_PIPE_WAKEUP_RESERVED: + name: EA_SCH_PIPE_WAKEUP_RESERVED + value: 1 + EA_STARTUP_TIMEOUT_MSEC: + name: EA_STARTUP_TIMEOUT_MSEC + value: 1000 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/ea/wh_design.yaml + events: + EA_APP_ERR_EID: + id: 6 + EA_CC_ERR_EID: + id: 18 + EA_CHILD_TASK_START_EID: + id: 14 + EA_CHILD_TASK_START_ERR_EID: + id: 15 + EA_CMD_ERR_EID: + id: 10 + EA_CMD_INF_EID: + id: 3 + EA_CMD_NOOP_EID: + id: 16 + EA_CMD_RESET_EID: + id: 17 + EA_ERR_EID: + id: 8 + EA_INF_APP_START_EID: + id: 4 + EA_INF_APP_TERM_EID: + id: 5 + EA_INF_EID: + id: 1 + EA_INIT_ERR_EID: + id: 9 + EA_INIT_INF_EID: + id: 2 + EA_MSGID_ERR_EID: + id: 12 + EA_MSGLEN_ERR_EID: + id: 13 + EA_PIPE_ERR_EID: + id: 11 + EA_WARN_APP_UTIL_EID: + id: 7 + long_name: External Application + module_type: CFE_APP + perfids: + EA_MAIN_TASK_PERF_ID: + id: 70 + short_name: ea + telemetry: + EA_HK_TLM_MID: + msgID: 2853 + struct: EA_HkTlm_t + fm: + app_name: FM + commands: + FM_CMD_MID: + commands: + Concat: + cc: 9 + struct: FM_ConcatCmd_t + CopyFile: + cc: 2 + struct: FM_CopyFileCmd_t + CreateDir: + cc: 12 + struct: FM_CreateDirCmd_t + Decompress: + cc: 8 + struct: FM_DecompressCmd_t + DeleteAll: + cc: 7 + struct: FM_DeleteAllCmd_t + DeleteDir: + cc: 13 + struct: FM_DeleteDirCmd_t + DeleteFile: + cc: 5 + struct: FM_DeleteFileCmd_t + GetDirFile: + cc: 14 + struct: FM_GetDirFileCmd_t + GetDirPkt: + cc: 15 + struct: FM_GetDirPktCmd_t + GetFileInfo: + cc: 10 + struct: FM_GetFileInfoCmd_t + GetFreeSpace: + cc: 16 + struct: FM_GetFreeSpaceCmd_t + GetOpenFiles: + cc: 11 + struct: FM_GetOpenFilesCmd_t + MoveFile: + cc: 3 + struct: FM_MoveFileCmd_t + Noop: + cc: 0 + struct: FM_NoopCmd_t + RenameFile: + cc: 4 + struct: FM_RenameFileCmd_t + Reset: + cc: 1 + struct: FM_ResetCmd_t + SetPerm: + cc: 19 + struct: FM_SetPermCmd_t + SetTableState: + cc: 17 + struct: FM_SetTableStateCmd_t + msgID: 6749 + FM_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: FM_HousekeepingCmd_t + msgID: 6750 + config: + FM_APP_NAME: + name: FM_APP_NAME + value: FM + FM_APP_PIPE_DEPTH: + name: FM_APP_PIPE_DEPTH + value: 10 + FM_APP_PIPE_NAME: + name: FM_APP_PIPE_NAME + value: FM_CMD_PIPE + FM_CHILD_FILE_BLOCK_SIZE: + name: FM_CHILD_FILE_BLOCK_SIZE + value: 2048 + FM_CHILD_FILE_LOOP_COUNT: + name: FM_CHILD_FILE_LOOP_COUNT + value: 16 + FM_CHILD_FILE_SLEEP_MS: + name: FM_CHILD_FILE_SLEEP_MS + value: 20 + FM_CHILD_QUEUE_DEPTH: + name: FM_CHILD_QUEUE_DEPTH + value: 3 + FM_CHILD_SEM_NAME: + name: FM_CHILD_SEM_NAME + value: FM_CHILD_SEM + FM_CHILD_STAT_SLEEP_FILECOUNT: + name: FM_CHILD_STAT_SLEEP_FILECOUNT + value: 0 + FM_CHILD_STAT_SLEEP_MS: + name: FM_CHILD_STAT_SLEEP_MS + value: 0 + FM_CHILD_TASK_FLAGS: + name: FM_CHILD_TASK_FLAGS + value: OS_ENABLE_CORE_0 + FM_CHILD_TASK_NAME: + name: FM_CHILD_TASK_NAME + value: FM_CHILD_TASK + FM_CHILD_TASK_PRIORITY: + name: FM_CHILD_TASK_PRIORITY + value: 205 + FM_CHILD_TASK_STACK_SIZE: + name: FM_CHILD_TASK_STACK_SIZE + value: 20480 + FM_DIR_LIST_FILE_DEFNAME: + name: FM_DIR_LIST_FILE_DEFNAME + value: /ram/fm_dirlist.out + FM_DIR_LIST_FILE_ENTRIES: + name: FM_DIR_LIST_FILE_ENTRIES + value: 3000 + FM_DIR_LIST_FILE_SUBTYPE: + name: FM_DIR_LIST_FILE_SUBTYPE + value: 12345 + FM_DIR_LIST_PKT_ENTRIES: + name: FM_DIR_LIST_PKT_ENTRIES + value: 20 + FM_MISSION_REV: + name: FM_MISSION_REV + value: 0 + FM_TABLE_CFE_NAME: + name: FM_TABLE_CFE_NAME + value: FreeSpace + FM_TABLE_DEF_DESC: + name: FM_TABLE_DEF_DESC + value: FM File System Free Space Table + FM_TABLE_DEF_NAME: + name: FM_TABLE_DEF_NAME + value: /cf/apps/fm_freespace.tbl + FM_TABLE_ENTRY_COUNT: + name: FM_TABLE_ENTRY_COUNT + value: 8 + FM_TABLE_FILENAME: + name: FM_TABLE_FILENAME + value: fm_freespace.tbl + FM_TABLE_VALIDATION_ERR: + name: FM_TABLE_VALIDATION_ERR + value: 0xCF000080L + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/fm/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + FM_CC_ERR_EID: + id: 10 + FM_CHILD_EXE_ERR_EID: + id: 103 + FM_CHILD_INIT_EID: + id: 100 + FM_CHILD_INIT_ERR_EID: + id: 101 + FM_CHILD_TERM_ERR_EID: + id: 102 + FM_CONCAT_CHILD_ERR_EID: + id: 58 + FM_CONCAT_CMD_EID: + id: 53 + FM_CONCAT_OS_ERR_EID: + id: 59 + FM_CONCAT_PKT_ERR_EID: + id: 54 + FM_CONCAT_SRC1_ERR_EID: + id: 55 + FM_CONCAT_SRC2_ERR_EID: + id: 56 + FM_CONCAT_TGT_ERR_EID: + id: 57 + FM_COPY_CHILD_ERR_EID: + id: 21 + FM_COPY_CMD_EID: + id: 16 + FM_COPY_OS_ERR_EID: + id: 22 + FM_COPY_OVR_ERR_EID: + id: 18 + FM_COPY_PKT_ERR_EID: + id: 17 + FM_COPY_SRC_ERR_EID: + id: 19 + FM_COPY_TGT_ERR_EID: + id: 20 + FM_CREATE_DIR_CHILD_ERR_EID: + id: 70 + FM_CREATE_DIR_CMD_EID: + id: 67 + FM_CREATE_DIR_OS_ERR_EID: + id: 71 + FM_CREATE_DIR_PKT_ERR_EID: + id: 68 + FM_CREATE_DIR_SRC_ERR_EID: + id: 69 + FM_DECOM_CFE_ERR_EID: + id: 52 + FM_DECOM_CHILD_ERR_EID: + id: 51 + FM_DECOM_CMD_EID: + id: 47 + FM_DECOM_PKT_ERR_EID: + id: 48 + FM_DECOM_SRC_ERR_EID: + id: 49 + FM_DECOM_TGT_ERR_EID: + id: 50 + FM_DELETE_ALL_CHILD_ERR_EID: + id: 45 + FM_DELETE_ALL_CMD_EID: + id: 41 + FM_DELETE_ALL_OS_ERR_EID: + id: 46 + FM_DELETE_ALL_PKT_ERR_EID: + id: 43 + FM_DELETE_ALL_SRC_ERR_EID: + id: 44 + FM_DELETE_ALL_WARNING_EID: + id: 42 + FM_DELETE_CHILD_ERR_EID: + id: 39 + FM_DELETE_CMD_EID: + id: 36 + FM_DELETE_DIR_CHILD_ERR_EID: + id: 75 + FM_DELETE_DIR_CMD_EID: + id: 72 + FM_DELETE_DIR_EMPTY_ERR_EID: + id: 76 + FM_DELETE_DIR_OS_ERR_EID: + id: 77 + FM_DELETE_DIR_PKT_ERR_EID: + id: 73 + FM_DELETE_DIR_SRC_ERR_EID: + id: 74 + FM_DELETE_OS_ERR_EID: + id: 40 + FM_DELETE_PKT_ERR_EID: + id: 37 + FM_DELETE_SRC_ERR_EID: + id: 38 + FM_EXIT_ERR_EID: + id: 8 + FM_GET_DIR_FILE_CHILD_ERR_EID: + id: 83 + FM_GET_DIR_FILE_CMD_EID: + id: 78 + FM_GET_DIR_FILE_OS_ERR_EID: + id: 84 + FM_GET_DIR_FILE_PKT_ERR_EID: + id: 79 + FM_GET_DIR_FILE_SRC_ERR_EID: + id: 80 + FM_GET_DIR_FILE_TGT_ERR_EID: + id: 81 + FM_GET_DIR_FILE_WARNING_EID: + id: 82 + FM_GET_DIR_PKT_CHILD_ERR_EID: + id: 89 + FM_GET_DIR_PKT_CMD_EI: + id: 85 + FM_GET_DIR_PKT_OS_ERR_EID: + id: 90 + FM_GET_DIR_PKT_PKT_ERR_EID: + id: 87 + FM_GET_DIR_PKT_SRC_ERR_EID: + id: 88 + FM_GET_DIR_PKT_WARNING_EID: + id: 86 + FM_GET_FILE_INFO_CHILD_ERR_EID: + id: 63 + FM_GET_FILE_INFO_CMD_EID: + id: 60 + FM_GET_FILE_INFO_PKT_ERR_EID: + id: 61 + FM_GET_FILE_INFO_SRC_ERR_EID: + id: 62 + FM_GET_FILE_INFO_WARNING_EID: + id: 64 + FM_GET_FREE_SPACE_CMD_EID: + id: 91 + FM_GET_FREE_SPACE_PKT_ERR_EID: + id: 92 + FM_GET_FREE_SPACE_TBL_ERR_EID: + id: 93 + FM_GET_OPEN_FILES_CMD_EID: + id: 65 + FM_GET_OPEN_FILES_PKT_ERR_EID: + id: 66 + FM_HK_REQ_ERR_EID: + id: 11 + FM_MID_ERR_EID: + id: 9 + FM_MOVE_CHILD_ERR_EID: + id: 28 + FM_MOVE_CMD_EID: + id: 23 + FM_MOVE_OS_ERR_EID: + id: 29 + FM_MOVE_OVR_ERR_EID: + id: 25 + FM_MOVE_PKT_ERR_EID: + id: 24 + FM_MOVE_SRC_ERR_EID: + id: 26 + FM_MOVE_TGT_ERR_EID: + id: 27 + FM_NOOP_CMD_EID: + id: 12 + FM_NOOP_PKT_ERR_EID: + id: 13 + FM_RENAME_CHILD_ERR_EID: + id: 34 + FM_RENAME_CMD_EID: + id: 30 + FM_RENAME_OS_ERR_EID: + id: 35 + FM_RENAME_PKT_ERR_EID: + id: 31 + FM_RENAME_SRC_ERR_EID: + id: 32 + FM_RENAME_TGT_ERR_EID: + id: 33 + FM_RESET_CMD_EID: + id: 14 + FM_RESET_PKT_ERR_EID: + id: 15 + FM_SB_RECEIVE_ERR_EID: + id: 7 + FM_SET_PERM_CMD_EID: + id: 111 + FM_SET_PERM_ERR_EID: + id: 110 + FM_SET_PERM_OS_ERR_EID: + id: 112 + FM_SET_TABLE_STATE_ARG_ERR_EID: + id: 97 + FM_SET_TABLE_STATE_CMD_EID: + id: 94 + FM_SET_TABLE_STATE_PKT_ERR_EID: + id: 95 + FM_SET_TABLE_STATE_TBL_ERR_EID: + id: 96 + FM_SET_TABLE_STATE_UNUSED_ERR_EID: + id: 98 + FM_STARTUP_CREAT_PIPE_ERR_EID: + id: 3 + FM_STARTUP_EID: + id: 1 + FM_STARTUP_EVENTS_ERR_EID: + id: 2 + FM_STARTUP_SUBSCRIB_GCMD_ERR_EID: + id: 5 + FM_STARTUP_SUBSCRIB_HK_ERR_EID: + id: 4 + FM_STARTUP_TABLE_INIT_ERR_EID: + id: 6 + FM_TABLE_VERIFY_EID: + id: 104 + FM_TABLE_VERIFY_ERR_EID: + id: 99 + long_name: File Management + module_type: CFE_APP + msg_def_overrides: + - member: Source + parent: FM_CopyFileCmd_t + type: string + - member: Target + parent: FM_CopyFileCmd_t + type: string + - member: Source + parent: FM_MoveFileCmd_t + type: string + - member: Target + parent: FM_MoveFileCmd_t + type: string + - member: Source + parent: FM_RenameFileCmd_t + type: string + - member: Target + parent: FM_RenameFileCmd_t + type: string + - member: Filename + parent: FM_DeleteFileCmd_t + type: string + - member: Directory + parent: FM_DeleteAllCmd_t + type: string + - member: Source + parent: FM_DecompressCmd_t + type: string + - member: Target + parent: FM_DecompressCmd_t + type: string + - member: Source1 + parent: FM_ConcatCmd_t + type: string + - member: Source2 + parent: FM_ConcatCmd_t + type: string + - member: Target + parent: FM_ConcatCmd_t + type: string + - member: Filename + parent: FM_GetFileInfoCmd_t + type: string + - member: Directory + parent: FM_CreateDirCmd_t + type: string + - member: Directory + parent: FM_DeleteDirCmd_t + type: string + - member: Directory + parent: FM_GetDirFileCmd_t + type: string + - member: Filename + parent: FM_GetDirFileCmd_t + type: string + - member: Directory + parent: FM_GetDirPktCmd_t + type: string + - enumerations: + DISABLED: 0 + ENABLED: 1 + UNUSED: 2 + member: TableEntryState + parent: FM_SetTableStateCmd_t + type: enumeration + - member: FileName + parent: FM_SetPermCmd_t + type: string + - member: EntryName + parent: FM_DirListEntry_t + type: string + - member: DirName + parent: FM_DirListPkt_t + type: string + - member: DirName + parent: FM_DirListFileStats_t + type: string + - member: Filename + parent: FM_FileInfoPkt_t + type: string + - member: LogicalName + parent: FM_OpenFilesEntry_t + type: string + - member: AppName + parent: FM_OpenFilesEntry_t + type: string + - member: Name + parent: FM_FreeSpacePktEntry_t + type: string + - enumerations: + CONCAT: 9 + COPY: 2 + CREATE_DIR: 12 + DECOMPRESS: 8 + DELETE: 5 + DELETE_ALL: 7 + DELETE_DIR: 13 + DELETE_INT: 18 + GET_DIR_FILE: 14 + GET_DIR_PKT: 15 + GET_FILE_INFO: 10 + GET_FREE_SPACE: 16 + GET_OPEN_FILES: 11 + MOVE: 3 + NOOP: 0 + RENAME: 4 + RESET: 1 + SET_FILE_PEERM: 19 + SET_TABLE_STATE: 17 + member: ChildCurrentCC + parent: FM_HousekeepingPkt_t + type: enumeration + - enumerations: + CONCAT: 9 + COPY: 2 + CREATE_DIR: 12 + DECOMPRESS: 8 + DELETE: 5 + DELETE_ALL: 7 + DELETE_DIR: 13 + DELETE_INT: 18 + GET_DIR_FILE: 14 + GET_DIR_PKT: 15 + GET_FILE_INFO: 10 + GET_FREE_SPACE: 16 + GET_OPEN_FILES: 11 + MOVE: 3 + NOOP: 0 + RENAME: 4 + RESET: 1 + SET_FILE_PEERM: 19 + SET_TABLE_STATE: 17 + member: ChildPreviousCC + parent: FM_HousekeepingPkt_t + type: enumeration + - member: Name + parent: FM_TableEntry_t + type: string + - enumerations: + DISABLED: 0 + ENABLED: 1 + UNUSED: 2 + member: State + parent: FM_TableEntry_t + type: enumeration + perfids: + FM_APPMAIN_PERF_ID: + id: 46 + FM_CHILD_TASK_PERF_ID: + id: 47 + short_name: fm + telemetry: + FM_DIR_LIST_TLM_MID: + msgID: 2648 + struct: FM_DirListPkt_t + FM_FILE_INFO_TLM_MID: + msgID: 2649 + struct: FM_FileInfoPkt_t + FM_FREE_SPACE_TLM_MID: + msgID: 2650 + struct: FM_FreeSpacePkt_t + FM_HK_TLM_MID: + msgID: 2651 + struct: FM_HousekeepingPkt_t + FM_OPEN_FILES_TLM_MID: + msgID: 2652 + struct: FM_OpenFilesPkt_t + gps: + app_name: GPS + commands: + GPS_CMD_MID: + commands: + Noop: + cc: 0 + struct: GPS_NoArgCmd_t + Reset: + cc: 1 + struct: GPS_NoArgCmd_t + msgID: 6714 + GPS_READ_SENSOR_MID: + commands: + ReadSensor: + cc: 0 + struct: GPS_NoArgCmd_t + msgID: 6716 + GPS_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: GPS_NoArgCmd_t + msgID: 6715 + config: + GPS_CMD_PIPE_DEPTH: + name: GPS_CMD_PIPE_DEPTH + value: 4 + GPS_CMD_PIPE_NAME: + name: GPS_CMD_PIPE_NAME + value: GPS_CMD_PIPE + GPS_CONFIG_TABLE_FILENAME: + name: GPS_CONFIG_TABLE_FILENAME + value: /cf/apps/gps_config.tbl + GPS_CUSTOM_CHILD_TASK_FLAGS: + name: GPS_CUSTOM_CHILD_TASK_FLAGS + value: OS_ENABLE_CORE_0 + GPS_DATA_PIPE_DEPTH: + name: GPS_DATA_PIPE_DEPTH + value: 4 + GPS_DATA_PIPE_NAME: + name: GPS_DATA_PIPE_NAME + value: GPS_DATA_PIPE + GPS_MISSION_REV: + name: GPS_MISSION_REV + value: 0 + GPS_READ_SENSOR_MID_MAX_MSG_COUNT: + name: GPS_READ_SENSOR_MID_MAX_MSG_COUNT + value: 1 + GPS_SB_TIMEOUT: + name: GPS_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + GPS_SCH_PIPE_DEPTH: + name: GPS_SCH_PIPE_DEPTH + value: 2 + GPS_SCH_PIPE_NAME: + name: GPS_SCH_PIPE_NAME + value: GPS_SCH_PIPE + GPS_SCH_PIPE_PEND_TIME: + name: GPS_SCH_PIPE_PEND_TIME + value: 2000 + GPS_SEND_HK_MID_MAX_MSG_COUNT: + name: GPS_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + GPS_STARTUP_TIMEOUT_MSEC: + name: GPS_STARTUP_TIMEOUT_MSEC + value: 1000 + GPS_WAKEUP_MID_MAX_MSG_COUNT: + name: GPS_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/gps/wh_design.yaml + events: + GPS_CC_ERR_EID: + id: 9 + GPS_CFGTBL_GETADDR_ERR_EID: + id: 6 + GPS_CFGTBL_LOAD_ERR_EID: + id: 12 + GPS_CFGTBL_MANAGE_ERR_EID: + id: 5 + GPS_CFGTBL_REG_ERR_EID: + id: 11 + GPS_CMD_NOOP_EID: + id: 2 + GPS_INIT_ERR_EI: + id: 14 + GPS_INIT_INF_EID: + id: 1 + GPS_MSGID_ERR_EID: + id: 8 + GPS_MSGLEN_ERR_EID: + id: 10 + GPS_PIPE_INIT_ERR_EID: + id: 4 + GPS_RCVMSG_ERR_EID: + id: 7 + GPS_READ_ERR_EID: + id: 15 + GPS_SUBSCRIBE_ERR_EID: + id: 3 + GPS_UNINIT_ERR_EID: + id: 13 + long_name: GPS Driver + module_type: CFE_APP + perfids: + GPS_MAIN_TASK_PERF_ID: + id: 71 + short_name: gps + telemetry: + GPS_ACK_ACK_MID: + msgID: 2860 + GPS_ACK_NAK_MID: + msgID: 2861 + GPS_CFG_MSG_MID: + msgID: 2862 + GPS_CFG_NAV5_MID: + msgID: 2863 + GPS_CFG_PRT_MID: + msgID: 2864 + GPS_CFG_RATE_MID: + msgID: 2865 + GPS_CFG_SBAS_MID: + msgID: 2866 + GPS_HK_TLM_MID: + msgID: 2873 + struct: GPS_HkTlm_t + GPS_MON_HW_MID: + msgID: 2868 + GPS_NAV_DOP_MID: + msgID: 2869 + GPS_NAV_NAVPVT_MID: + msgID: 2870 + GPS_NAV_SVINFO_MID: + msgID: 2871 + GPS_SEND_HK_MID: + msgID: 2872 + hk: + app_name: HK + commands: + HK_CMD_MID: + commands: + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + msgID: 6767 + HK_SEND_COMBINED_PKT_MID: + commands: + SendCombinedPkt: + cc: 0 + struct: HK_Send_Out_Msg_t + msgID: 6768 + HK_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6769 + config: + HK_COPY_TABLE_ENTRIES: + name: HK_COPY_TABLE_ENTRIES + value: 128 + HK_COPY_TABLE_FILENAM: + name: HK_COPY_TABLE_FILENAM + value: /cf/apps/hk_cpy_tbl.tbl + HK_COPY_TABLE_NAME: + name: HK_COPY_TABLE_NAME + value: CopyTable + HK_DISCARD_INCOMPLETE_COMBO: + name: HK_DISCARD_INCOMPLETE_COMBO + value: 0 + HK_MISSION_REV: + name: HK_MISSION_REV + value: 0 + HK_NUM_BYTES_IN_MEM_POOL: + name: HK_NUM_BYTES_IN_MEM_POOL + value: (6 * 1024) + HK_PIPE_DEPTH: + name: HK_PIPE_DEPTH + value: 40 + HK_RUNTIME_TABLE_NAME: + name: HK_RUNTIME_TABLE_NAME + value: RuntimeTable + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/hk/wh_design.yaml + events: + HK_ACCESSING_PAST_PACKET_END_EID: + id: 6 + HK_CANT_SUBSCRIBE_TO_SB_PKT_EID: + id: 8 + HK_CC_ERR_EID: + id: 2 + HK_CMD_LEN_ERR_EID: + id: 3 + HK_CPTBL_GADR_ERR_EID: + id: 24 + HK_CPTBL_LD_ERR_EID: + id: 21 + HK_CPTBL_MNG_ERR_EID: + id: 22 + HK_CPTBL_REG_ERR_EID: + id: 19 + HK_CR_PIPE_ERR_EID: + id: 14 + HK_CR_POOL_ERR_EID: + id: 18 + HK_INIT_EI: + id: 1 + HK_MEM_POOL_FREE_FAILED_EID: + id: 9 + HK_MEM_POOL_MALLOC_FAILED_EID: + id: 7 + HK_MSG_LEN_ERR_EID: + id: 28 + HK_NOOP_CMD_EID: + id: 4 + HK_OUTPKT_MISSING_DATA_EID: + id: 12 + HK_RCV_MSG_ERR_EID: + id: 26 + HK_RESET_CNTRS_CMD_EID: + id: 5 + HK_RTTBL_GADR_ERR_EID: + id: 25 + HK_RTTBL_MNG_ERR_EID: + id: 23 + HK_RTTBL_REG_ERR_EID: + id: 20 + HK_SUB_CMB_ERR_EID: + id: 15 + HK_SUB_CMD_ERR_EID: + id: 17 + HK_SUB_REQ_ERR_EID: + id: 16 + HK_UNEXPECTED_GETSTAT2_RET_EID: + id: 27 + HK_UNEXPECTED_GETSTAT_RET_EID: + id: 10 + HK_UNKNOWN_COMBINED_PACKET_EID: + id: 11 + long_name: Housekeeping + module_type: CFE_APP + perfids: + HK_APPMAIN_PERF_ID: + id: 48 + short_name: hk + telemetry: + HK_COMBINED_PKT10_MID: + msgID: 2669 + HK_COMBINED_PKT1_MID: + msgID: 2660 + HK_COMBINED_PKT2_MID: + msgID: 2661 + HK_COMBINED_PKT3_MID: + msgID: 2662 + HK_COMBINED_PKT4_MID: + msgID: 2663 + HK_COMBINED_PKT5_MID: + msgID: 2664 + HK_COMBINED_PKT6_MID: + msgID: 2665 + HK_COMBINED_PKT7_MID: + msgID: 2666 + HK_COMBINED_PKT8_MID: + msgID: 2667 + HK_COMBINED_PKT9_MID: + msgID: 2668 + HK_HK_TLM_MID: + msgID: 2670 + struct: HK_HkPacket_t + hmc5883: + app_name: HMC5883 + commands: + HMC5883_CMD_MID: + commands: + Noop: + cc: 0 + struct: HMC5883_NoArgCmd_t + Reset: + cc: 1 + struct: HMC5883_NoArgCmd_t + SendDiag: + cc: 2 + struct: HMC5883_NoArgCmd_t + SetCalibration: + cc: 3 + struct: HMC5883_SetCalibrationCmd_t + msgID: 6988 + HMC5883_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: HMC5883_NoArgCmd_t + msgID: 6989 + HMC5883_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: HMC5883_NoArgCmd_t + msgID: 6990 + config: + HMC5883_CALC_MAG_RANGE: + name: HMC5883_CALC_MAG_RANGE + value: 1.3 + HMC5883_CMD_PIPE_DEPTH: + name: HMC5883_CMD_PIPE_DEPTH + value: 4 + HMC5883_CMD_PIPE_NAME: + name: HMC5883_CMD_PIPE_NAME + value: HMC5883_CMD_PIPE + HMC5883_CONFIG_TABLE_FILENAME: + name: HMC5883_CONFIG_TABLE_FILENAME + value: /cf/apps/hmc5883_config.tbl + HMC5883_DATA_PIPE_DEPTH: + name: HMC5883_DATA_PIPE_DEPTH + value: 4 + HMC5883_DATA_PIPE_NAME: + name: HMC5883_DATA_PIPE_NAME + value: HMC5883_DATA_PIPE + HMC5883_MAG_DIVIDER: + name: HMC5883_MAG_DIVIDER + value: 1090 + HMC5883_MAG_UNIT: + name: HMC5883_MAG_UNIT + value: 1 + HMC5883_MISSION_REV: + name: HMC5883_MISSION_REV + value: 0 + HMC5883_SB_TIMEOUT: + name: HMC5883_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + HMC5883_SCH_PIPE_DEPTH: + name: HMC5883_SCH_PIPE_DEPTH + value: 2 + HMC5883_SCH_PIPE_NAME: + name: HMC5883_SCH_PIPE_NAME + value: HMC5883_SCH_PIPE + HMC5883_SCH_PIPE_PEND_TIME: + name: HMC5883_SCH_PIPE_PEND_TIME + value: 2000 + HMC5883_SEND_HK_MID_MAX_MSG_COUNT: + name: HMC5883_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + HMC5883_STARTUP_TIMEOUT_MSEC: + name: HMC5883_STARTUP_TIMEOUT_MSEC + value: 1000 + HMC5883_WAKEUP_MID_MAX_MSG_COUNT: + name: HMC5883_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/hmc5883/wh_design.yaml + events: + HMC5883_CALIBRATE_ERR_EID: + id: 20 + HMC5883_CALIBRATE_INF_EID: + id: 19 + HMC5883_CC_ERR_EI: + id: 9 + HMC5883_CFGTBL_GETADDR_ERR_EID: + id: 6 + HMC5883_CFGTBL_LOAD_ERR_EID: + id: 12 + HMC5883_CFGTBL_MANAGE_ERR_EID: + id: 5 + HMC5883_CFGTBL_REG_ERR_EID: + id: 11 + HMC5883_CMD_NOOP_EID: + id: 2 + HMC5883_INIT_ERR_EID: + id: 14 + HMC5883_INIT_INF_EID: + id: 1 + HMC5883_MSGID_ERR_EID: + id: 8 + HMC5883_MSGLEN_ERR_EID: + id: 10 + HMC5883_OFFSET_ERR_EID: + id: 18 + HMC5883_PIPE_INIT_ERR_EID: + id: 4 + HMC5883_RCVMSG_ERR_EID: + id: 7 + HMC5883_READ_ERR_EID: + id: 15 + HMC5883_SCALE_ERR_EID: + id: 17 + HMC5883_SUBSCRIBE_ERR_EID: + id: 3 + HMC5883_UNINIT_ERR_EID: + id: 13 + HMC5883_VALIDATE_ERR_EID: + id: 16 + long_name: null + module_type: CFE_APP + perfids: + HMC5883_MAIN_TASK_PERF_ID: + id: null + HMC5883_RECEIVE_PERF_ID: + id: null + HMC5883_SEND_PERF_ID: + id: null + short_name: hmc5883 + telemetry: + HMC5883_DIAG_TLM_MID: + msgID: 2890 + struct: HMC5883_DiagPacket_t + HMC5883_HK_TLM_MID: + msgID: 2891 + struct: HMC5883_HkTlm_t + hs: + app_name: HS + commands: + HS_CMD_MID: + commands: + DisableAliveness: + cc: 7 + struct: CFE_SB_CmdHdr_t + DisableAppMon: + cc: 3 + struct: CFE_SB_CmdHdr_t + DisableCpuHog: + cc: 11 + struct: CFE_SB_CmdHdr_t + DisableEventMon: + cc: 5 + struct: CFE_SB_CmdHdr_t + EnableAliveness: + cc: 6 + struct: CFE_SB_CmdHdr_t + EnableAppMon: + cc: 2 + struct: CFE_SB_CmdHdr_t + EnableCpuHog: + cc: 10 + struct: CFE_SB_CmdHdr_t + EnableEventMon: + cc: 4 + struct: CFE_SB_CmdHdr_t + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + ReportDiag: + cc: 12 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + ResetResetsPerformed: + cc: 8 + struct: CFE_SB_CmdHdr_t + SetMaxResets: + cc: 9 + struct: HS_SetMaxResetsCmd_t + SetUtilDiag: + cc: 14 + struct: HS_SetUtilDiagCmd_t + SetUtilParams: + cc: 13 + struct: HS_SetUtilParamsCmd_t + msgID: 6777 + HS_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6778 + HS_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6779 + config: + HS_ALIVENESS_DEFAULT_STATE: + name: HS_ALIVENESS_DEFAULT_STATE + value: HS_STATE_ENABLED + HS_AMT_FILENAME: + name: HS_AMT_FILENAME + value: /cf/apps/hs_amt.tbl + HS_APPMON_DEFAULT_STAT: + name: HS_APPMON_DEFAULT_STAT + value: HS_STATE_ENABLED + HS_APP_NAME: + name: HS_APP_NAME + value: HS + HS_CMD_PIPE_DEPTH: + name: HS_CMD_PIPE_DEPTH + value: 12 + HS_CPUHOG_DEFAULT_STATE: + name: HS_CPUHOG_DEFAULT_STATE + value: HS_STATE_ENABLED + HS_CPU_ALIVE_PERIOD: + name: HS_CPU_ALIVE_PERIOD + value: 5 + HS_CPU_ALIVE_STRING: + name: HS_CPU_ALIVE_STRING + value: . + HS_EMT_FILENAME: + name: HS_EMT_FILENAME + value: /cf/apps/hs_emt.tbl + HS_EVENTMON_DEFAULT_STATE: + name: HS_EVENTMON_DEFAULT_STATE + value: HS_STATE_ENABLED + HS_EVENT_PIPE_DEPTH: + name: HS_EVENT_PIPE_DEPTH + value: 32 + HS_IDLE_TASK_FLAGS: + name: HS_IDLE_TASK_FLAGS + value: 0 + HS_IDLE_TASK_NAME: + name: HS_IDLE_TASK_NAME + value: HS_IDLE_TASK + HS_IDLE_TASK_PRIORITY: + name: HS_IDLE_TASK_PRIORITY + value: 252 + HS_IDLE_TASK_STACK_PTR: + name: HS_IDLE_TASK_STACK_PTR + value: 0 + HS_IDLE_TASK_STACK_SIZE: + name: HS_IDLE_TASK_STACK_SIZE + value: 4096 + HS_MAT_FILENAME: + name: HS_MAT_FILENAME + value: /cf/apps/hs_mat.tbl + HS_MAX_EXEC_CNT_SLOTS: + name: HS_MAX_EXEC_CNT_SLOTS + value: 32 + HS_MAX_MONITORED_APPS: + name: HS_MAX_MONITORED_APPS + value: 32 + HS_MAX_MONITORED_EVENTS: + name: HS_MAX_MONITORED_EVENTS + value: 16 + HS_MAX_MSG_ACT_SIZE: + name: HS_MAX_MSG_ACT_SIZE + value: 16 + HS_MAX_MSG_ACT_TYPES: + name: HS_MAX_MSG_ACT_TYPES + value: 8 + HS_MAX_RESTART_ACTIONS: + name: HS_MAX_RESTART_ACTIONS + value: 3 + HS_MISSION_REV: + name: HS_MISSION_REV + value: 0 + HS_POST_PROCESSING_DELAY: + name: HS_POST_PROCESSING_DELAY + value: 0 + HS_RESET_TASK_DELAY: + name: HS_RESET_TASK_DELAY + value: 50 + HS_STARTUP_SYNC_TIMEOUT: + name: HS_STARTUP_SYNC_TIMEOUT + value: 65000 + HS_UTIL_AVERAGE_NUM_INTERVAL: + name: HS_UTIL_AVERAGE_NUM_INTERVAL + value: 4 + HS_UTIL_CALLS_PER_MARK: + name: HS_UTIL_CALLS_PER_MARK + value: 1 + HS_UTIL_CONV_DIV: + name: HS_UTIL_CONV_DIV + value: 10000 + HS_UTIL_CONV_MULT1: + name: HS_UTIL_CONV_MULT1 + value: 1 + HS_UTIL_CONV_MULT2: + name: HS_UTIL_CONV_MULT2 + value: 1 + HS_UTIL_CYCLES_PER_INTERVAL: + name: HS_UTIL_CYCLES_PER_INTERVAL + value: 1 + HS_UTIL_DIAG_MASK: + name: HS_UTIL_DIAG_MASK + value: 4294967295 + HS_UTIL_HOGGING_TIMEOUT: + name: HS_UTIL_HOGGING_TIMEOUT + value: 5 + HS_UTIL_PEAK_NUM_INTERVAL: + name: HS_UTIL_PEAK_NUM_INTERVAL + value: 64 + HS_UTIL_PER_INTERVAL_HOGGIN: + name: HS_UTIL_PER_INTERVAL_HOGGIN + value: 9900 + HS_UTIL_PER_INTERVAL_TOTAL: + name: HS_UTIL_PER_INTERVAL_TOTAL + value: 10000 + HS_UTIL_TIME_DIAG_ARRAY_LENGTH: + name: HS_UTIL_TIME_DIAG_ARRAY_LENGTH + value: (1<<(HS_UTIL_TIME_DIAG_ARRAY_POWER)) + HS_UTIL_TIME_DIAG_ARRAY_MASK: + name: HS_UTIL_TIME_DIAG_ARRAY_MASK + value: (HS_UTIL_TIME_DIAG_ARRAY_LENGTH - 1) + HS_UTIL_TIME_DIAG_ARRAY_POWER: + name: HS_UTIL_TIME_DIAG_ARRAY_POWER + value: 4 + HS_WAKEUP_PIPE_DEPTH: + name: HS_WAKEUP_PIPE_DEPTH + value: 1 + HS_WAKEUP_TIMEOUT: + name: HS_WAKEUP_TIMEOUT + value: 1200 + HS_WATCHDOG_TIMEOUT_VALUE: + name: HS_WATCHDOG_TIMEOUT_VALUE + value: 10000 + HS_XCT_FILENAME: + name: HS_XCT_FILENAME + value: /cf/apps/hs_xct.tbl + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/hs/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + HS_AMTVAL_ERR_EID: + id: 51 + HS_AMTVAL_INF_EID: + id: 50 + HS_AMT_LD_ERR_EID: + id: 14 + HS_AMT_REG_ERR_EID: + id: 10 + HS_APPMON_APPNAME_ERR_EID: + id: 38 + HS_APPMON_FAIL_ERR_EID: + id: 41 + HS_APPMON_GETADDR_ERR_EID: + id: 33 + HS_APPMON_MSGACTS_ERR_EID: + id: 43 + HS_APPMON_NOT_RESTARTED_ERR_EID: + id: 40 + HS_APPMON_PROC_ERR_EID: + id: 42 + HS_APPMON_RESTART_ERR_EID: + id: 39 + HS_APP_EXIT_EID: + id: 2 + HS_BADEMT_UNSUB_EID: + id: 68 + HS_CC_ERR_EID: + id: 19 + HS_CDS_CORRUPT_ERR_EID: + id: 18 + HS_CDS_RESTORE_ERR_EID: + id: 3 + HS_CPUMON_HOGGING_ERR_EID: + id: 61 + HS_CR_CMD_PIPE_ERR_EID: + id: 4 + HS_CR_EVENT_PIPE_ERR_EID: + id: 5 + HS_CR_WAKEUP_PIPE_ERR_EID: + id: 6 + HS_DISABLE_ALIVENESS_DBG_EID: + id: 30 + HS_DISABLE_APPMON_DBG_EID: + id: 26 + HS_DISABLE_APPMON_ERR_EID: + id: 58 + HS_DISABLE_CPUHOG_DBG_EID: + id: 65 + HS_DISABLE_EVENTMON_DBG_EID: + id: 28 + HS_DISABLE_EVENTMON_ERR_EID: + id: 59 + HS_EMTVAL_ERR_EID: + id: 53 + HS_EMTVAL_INF_EID: + id: 52 + HS_EMT_LD_ERR_EID: + id: 15 + HS_EMT_REG_ERR_EID: + id: 11 + HS_ENABLE_ALIVENESS_DBG_EID: + id: 29 + HS_ENABLE_APPMON_DBG_EID: + id: 25 + HS_ENABLE_CPUHOG_DBG_EID: + id: 64 + HS_ENABLE_EVENTMON_DBG_EID: + id: 27 + HS_EVENTMON_DELETE_ERR_EID: + id: 48 + HS_EVENTMON_GETADDR_ERR_EID: + id: 34 + HS_EVENTMON_MSGACTS_ERR_EID: + id: 44 + HS_EVENTMON_NOT_DELETED_ERR_EID: + id: 49 + HS_EVENTMON_NOT_RESTARTED_ERR_EID: + id: 47 + HS_EVENTMON_PROC_ERR_EID: + id: 45 + HS_EVENTMON_RESTART_ERR_EID: + id: 46 + HS_EVENTMON_SUB_EID: + id: 66 + HS_EVENTMON_UNSUB_EID: + id: 67 + HS_EXECOUNT_GETADDR_ERR_EID: + id: 35 + HS_HKREQ_LEN_ERR_EID: + id: 21 + HS_INIT_EID: + id: 1 + HS_LEN_ERR_EID: + id: 22 + HS_MATVAL_ERR_EID: + id: 57 + HS_MATVAL_INF_EID: + id: 56 + HS_MAT_LD_ERR_EID: + id: 17 + HS_MAT_REG_ERR_EID: + id: 13 + HS_MID_ERR_EID: + id: 20 + HS_MSGACTS_GETADDR_ERR_EID: + id: 36 + HS_NOOP_INF_EID: + id: 23 + HS_RESET_DBG_EID: + id: 24 + HS_RESET_LIMIT_ERR_EID: + id: 37 + HS_RESET_RESETS_DBG_EID: + id: 31 + HS_SET_MAX_RESETS_DBG_EID: + id: 32 + HS_SUB_CMD_ERR_EID: + id: 9 + HS_SUB_EVS_ERR_EID: + id: 7 + HS_SUB_REQ_ERR_EID: + id: 8 + HS_SUB_WAKEUP_ERR_EID: + id: 60 + HS_XCTVAL_ERR_EID: + id: 55 + HS_XCTVAL_INF_EID: + id: 54 + HS_XCT_LD_ERR_EID: + id: 16 + HS_XCT_REG_ERR_EID: + id: 12 + long_name: Heath Services + module_type: CFE_APP + msg_def_overrides: + - enumerations: + DISABLED: 0 + ENABLED: 1 + member: CurrentAppMonState + parent: HS_HkPacket_t + type: enumeration + - enumerations: + DISABLED: 0 + ENABLED: 1 + member: CurrentEventMonState + parent: HS_HkPacket_t + type: enumeration + - enumerations: + DISABLED: 0 + ENABLED: 1 + member: CurrentAlivenessState + parent: HS_HkPacket_t + type: enumeration + - enumerations: + DISABLED: 0 + ENABLED: 1 + member: CurrentCPUHogState + parent: HS_HkPacket_t + type: enumeration + perfids: + HS_APPMAIN_PERF_ID: + id: 49 + HS_IDLETASK_PERF_ID: + id: 50 + short_name: hs + telemetry: + HS_HK_TLM_MID: + msgID: 2680 + struct: HS_HkPacket_t + io_lib: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + ipc_lib: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + lc: + app_name: LC + commands: + LC_CMD_MID: + commands: + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + ResetAPStats: + cc: 5 + struct: LC_ResetAPStats_t + ResetWPStats: + cc: 6 + struct: LC_ResetWPStats_t + SetAPPermOff: + cc: 4 + struct: LC_SetAPPermOff_t + SetAPState: + cc: 3 + struct: LC_SetAPState_t + SetLCState: + cc: 2 + struct: LC_SetLCState_t + msgID: 6787 + LC_SAMPLE_AP_MID: + commands: + SampleAP: + cc: 0 + struct: LC_SampleAP_t + msgID: 6788 + LC_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6789 + config: + LC_ADT_FILENAME: + name: LC_ADT_FILENAME + value: /cf/apps/lc_def_adt.tbl + LC_APP_NAME: + name: LC_APP_NAME + value: LC + LC_FLOAT_TOLERANCE: + name: LC_FLOAT_TOLERANCE + value: -1e-25 + LC_MAX_ACTIONPOINTS: + name: LC_MAX_ACTIONPOINTS + value: 176 + LC_MAX_ACTION_TEXT: + name: LC_MAX_ACTION_TEXT + value: 32 + LC_MAX_RPN_EQU_SIZE: + name: LC_MAX_RPN_EQU_SIZE + value: 20 + LC_MAX_VALID_ADT_RTSID: + name: LC_MAX_VALID_ADT_RTSID + value: 65520 + LC_MAX_WATCHPOINTS: + name: LC_MAX_WATCHPOINTS + value: 176 + LC_MISSION_REV: + name: LC_MISSION_REV + value: 0 + LC_PIPE_DEPTH: + name: LC_PIPE_DEPTH + value: 12 + LC_RTS_REQ_CC: + name: LC_RTS_REQ_CC + value: 4 + LC_RTS_REQ_MI: + name: LC_RTS_REQ_MI + value: 6313 + LC_STATE_POWER_ON_RESET: + name: LC_STATE_POWER_ON_RESET + value: LC_STATE_DISABLED + LC_STATE_WHEN_CDS_RESTORED: + name: LC_STATE_WHEN_CDS_RESTORED + value: LC_STATE_FROM_CDS + LC_WDT_FILENAME: + name: LC_WDT_FILENAME + value: /cf/apps/lc_def_wdt.tbl + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/lc/wh_design.yaml + events: + LC_ACTION_ERROR_ERR_EID: + id: 62 + LC_ADTVAL_ERR_EID: + id: 65 + LC_ADTVAL_INF_EID: + id: 66 + LC_ADTVAL_RPNERR_EID: + id: 64 + LC_ADT_GETADDR_ERR_EID: + id: 20 + LC_ADT_LOAD_ERR_EID: + id: 16 + LC_ADT_REGISTER_ERR_EID: + id: 9 + LC_APOFF_APNUM_ERR_EID: + id: 34 + LC_APOFF_CURR_ERR_EID: + id: 35 + LC_APOFF_INF_EID: + id: 36 + LC_APP_CDS_REGISTER_ERR_EID: + id: 14 + LC_APP_NO_SAVE_START_ERR_EID: + id: 48 + LC_APSAMPLE_APNUM_ERR_EID: + id: 25 + LC_APSAMPLE_CURR_ERR_EID: + id: 57 + LC_APSAMPLE_LEN_ERR_EID: + id: 42 + LC_APSTATE_APNUM_ERR_EID: + id: 32 + LC_APSTATE_CURR_ERR_EID: + id: 31 + LC_APSTATE_INF_EID: + id: 33 + LC_APSTATE_NEW_ERR_EID: + id: 30 + LC_APSTATS_APNUM_ERR_EID: + id: 37 + LC_APSTATS_INF_EID: + id: 38 + LC_AP_FAILTOPASS_INF_EID: + id: 61 + LC_AP_PASSIVE_FAIL_INF_EID: + id: 60 + LC_AP_PASSTOFAIL_INF_EID: + id: 58 + LC_ART_CDS_REGISTER_ERR_EID: + id: 13 + LC_ART_GETADDR_ERR_EID: + id: 18 + LC_ART_NO_SAVE_ERR_EID: + id: 47 + LC_ART_REGISTER_ERR_EID: + id: 11 + LC_CC_ERR_EID: + id: 24 + LC_CDS_DISABLED_INF_EID: + id: 23 + LC_CDS_RESTORED_INF_EID: + id: 21 + LC_CDS_UPDATED_INF_EID: + id: 22 + LC_CFCALL_ERR_EID: + id: 67 + LC_CR_PIPE_ERR_EID: + id: 3 + LC_HKREQ_LEN_ERR_EID: + id: 41 + LC_INIT_INF_EID: + id: 2 + LC_INVALID_RPN_ERR_EID: + id: 63 + LC_LCSTATE_ERR_EID: + id: 29 + LC_LCSTATE_INF_EID: + id: 28 + LC_LEN_ERR_EID: + id: 43 + LC_MID_INF_EID: + id: 49 + LC_NOOP_INF_EID: + id: 26 + LC_PASSIVE_FAIL_DBG_EID: + id: 59 + LC_RESET_DBG_EID: + id: 27 + LC_SUB_GND_CMD_ERR_EID: + id: 5 + LC_SUB_HK_REQ_ERR_EID: + id: 4 + LC_SUB_SAMPLE_CMD_ERR_EID: + id: 6 + LC_SUB_WP_ERR_EID: + id: 45 + LC_TASK_EXIT_EID: + id: 1 + LC_UNSUB_WP_ERR_EID: + id: 44 + LC_WDTVAL_ERR_EID: + id: 55 + LC_WDTVAL_FPERR_EID: + id: 54 + LC_WDTVAL_INF_EID: + id: 56 + LC_WDT_GETADDR_ERR_EID: + id: 19 + LC_WDT_LOAD_ERR_EID: + id: 15 + LC_WDT_REGISTER_ERR_EID: + id: 7 + LC_WDT_REREGISTER_ERR_EID: + id: 8 + LC_WPSTATS_INF_EID: + id: 40 + LC_WPSTATS_WPNUM_ERR_EID: + id: 39 + LC_WP_DATATYPE_ERR_EID: + id: 50 + LC_WP_NAN_ERR_EID: + id: 52 + LC_WP_OFFSET_ERR_EID: + id: 53 + LC_WP_OPERID_ERR_EID: + id: 51 + LC_WRT_CDS_REGISTER_ERR_EID: + id: 12 + LC_WRT_GETADDR_ERR_EID: + id: 17 + LC_WRT_NO_SAVE_ERR_EID: + id: 46 + LC_WRT_REGISTER_ERR_EID: + id: 10 + long_name: Limits Checker + module_type: CFE_APP + msg_def_overrides: + - enumerations: + ACTIVE: 1 + DISABLED: 3 + FROM_CDS: 4 + PASSIVE: 2 + member: NewLCState + parent: LC_SetLCState_t + type: enumeration + - enumerations: + ACTIVE: 1 + DISABLED: 3 + PASSIVE: 2 + PERMOFF: 4 + member: NewAPState + parent: LC_SetAPState_t + type: enumeration + - enumerations: + ACTIVE: 1 + DISABLED: 3 + FROM_CDS: 4 + PASSIVE: 2 + member: CurrentLCState + parent: LC_HkPacket_t + type: enumeration + perfids: + LC_APPMAIN_PERF_ID: + id: 51 + LC_WDT_SEARCH_PERF_ID: + id: 52 + short_name: lc + telemetry: + LC_HK_TLM_MID: + msgID: 2690 + struct: LC_HkPacket_t + ld: + app_name: LD + commands: + LD_CMD_MID: + commands: + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + msgID: 6993 + LD_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6994 + LD_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6995 + config: + LD_CMD_PIPE_DEPTH: + name: LD_CMD_PIPE_DEPTH + value: 4 + LD_CMD_PIPE_NAME: + name: LD_CMD_PIPE_NAME + value: LD_CMD_PIPE + LD_CONFIG_TABLE_FILENAME: + name: LD_CONFIG_TABLE_FILENAME + value: /cf/apps/ld_config.tbl + LD_DATA_PIPE_DEPTH: + name: LD_DATA_PIPE_DEPTH + value: 4 + LD_DATA_PIPE_NAME: + name: LD_DATA_PIPE_NAME + value: LD_DATA_PIPE + LD_MISSION_REV: + name: LD_MISSION_REV + value: 0 + LD_SB_TIMEOUT: + name: LD_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + LD_SCH_PIPE_DEPTH: + name: LD_SCH_PIPE_DEPTH + value: 15 + LD_SCH_PIPE_NAME: + name: LD_SCH_PIPE_NAME + value: LD_SCH_PIPE + LD_SCH_PIPE_PEND_TIME: + name: LD_SCH_PIPE_PEND_TIME + value: 2000 + LD_SEND_HK_MID_MAX_MSG_COUNT: + name: LD_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + LD_STARTUP_TIMEOUT_MSEC: + name: LD_STARTUP_TIMEOUT_MSEC + value: 1000 + LD_WAKEUP_MID_MAX_MSG_COUNT: + name: LD_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/ld/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + LD_CC_ERR_EID: + id: 9 + LD_CFGTBL_GETADDR_ERR_EID: + id: 6 + LD_CFGTBL_LOAD_ERR_EI: + id: 12 + LD_CFGTBL_MANAGE_ERR_EI: + id: 5 + LD_CFGTBL_REG_ERR_EID: + id: 11 + LD_CMD_NOOP_EID: + id: 2 + LD_FLIGHT_DETECTED_EID: + id: 16 + LD_FREEFALL_DETECTED_EID: + id: 13 + LD_GROUNDCONTACT_DETECTED_EID: + id: 14 + LD_INIT_INF_EID: + id: 1 + LD_LAND_DETECTED_EID: + id: 15 + LD_MSGID_ERR_EID: + id: 8 + LD_MSGLEN_ERR_EID: + id: 10 + LD_PIPE_INIT_ERR_EID: + id: 4 + LD_RCVMSG_ERR_EID: + id: 7 + LD_SUBSCRIBE_ERR_EID: + id: 3 + long_name: Landing Determination + module_type: CFE_APP + perfids: + LD_MAIN_TASK_PERF_ID: + id: null + short_name: ld + telemetry: + LD_DIAG_TLM_MID: + msgID: 2895 + struct: LD_Diag_t + LD_HK_TLM_MID: + msgID: 2896 + struct: LD_HkTlm_t + lgc: + app_name: LGC + commands: + LGC_CMD_MID: + commands: + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + msgID: 6999 + LGC_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 7000 + LGC_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 7001 + config: + LGC_CMD_PIPE_DEPTH: + name: LGC_CMD_PIPE_DEPTH + value: 4 + LGC_CMD_PIPE_NAME: + name: LGC_CMD_PIPE_NAME + value: LGC_CMD_PIPE + LGC_CONFIG_TABLE_FILENAME: + name: LGC_CONFIG_TABLE_FILENAME + value: /cf/apps/lgc_config.tbl + LGC_DATA_PIPE_DEPTH: + name: LGC_DATA_PIPE_DEPTH + value: 4 + LGC_DATA_PIPE_NAME: + name: LGC_DATA_PIPE_NAME + value: LGC_DATA_PIPE + LGC_MAX_GEAR_OUTPUTS: + name: LGC_MAX_GEAR_OUTPUTS + value: 1 + LGC_MISSION_REV: + name: LGC_MISSION_REV + value: 0 + LGC_SB_TIMEOUT: + name: LGC_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + LGC_SCH_PIPE_DEPTH: + name: LGC_SCH_PIPE_DEPTH + value: 2 + LGC_SCH_PIPE_NAME: + name: LGC_SCH_PIPE_NAME + value: LGC_SCH_PIPE + LGC_SCH_PIPE_PEND_TIME: + name: LGC_SCH_PIPE_PEND_TIME + value: 2000 + LGC_SEND_HK_MID_MAX_MSG_COUNT: + name: LGC_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + LGC_STARTUP_TIMEOUT_MSEC: + name: LGC_STARTUP_TIMEOUT_MSEC + value: 1000 + LGC_WAKEUP_MID_MAX_MSG_COUNT: + name: LGC_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/lgc/wh_design.yaml + events: + LGC_CC_ERR_EID: + id: 8 + LGC_CFGTBL_GETADDR_ERR_EID: + id: 5 + LGC_CFGTBL_LOAD_ERR_EID: + id: 11 + LGC_CFGTBL_REG_ERR_EID: + id: 10 + LGC_CMD_NOOP_EID: + id: 2 + LGC_DEVICE_INIT_ERR_EID: + id: 14 + LGC_EXTEND_INF_EID: + id: 16 + LGC_INIT_INF_EID: + id: 1 + LGC_MSGID_ERR_EID: + id: 7 + LGC_MSGLEN_ERR_EID: + id: 9 + LGC_PIPE_INIT_ERR_EID: + id: 4 + LGC_PWM_CFGTBL_MAX_LT_MIN_ERR_EID: + id: 13 + LGC_PWM_CFGTBL_MIN_LT_DISARMED_ERR_EID: + id: 12 + LGC_RCVMSG_ERR_EID: + id: 6 + LGC_RETRACT_INF_EID: + id: 15 + LGC_SUBSCRIBE_ERR_EID: + id: 3 + long_name: Landing Gear Control + module_type: CFE_APP + perfids: + LGC_MAIN_TASK_PERF_ID: + id: null + short_name: lgc + telemetry: + LGC_HK_TLM_MID: + msgID: 2902 + struct: LGC_HkTlm_t + mac: + app_name: MAC + commands: + MAC_CMD_MID: + commands: + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + msgID: 7005 + MAC_RUN_CONTROLLER_MID: + commands: + RunController: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 7006 + MAC_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 7007 + config: + MAC_CMD_PIPE_DEPTH: + name: MAC_CMD_PIPE_DEPTH + value: 15 + MAC_CMD_PIPE_NAME: + name: MAC_CMD_PIPE_NAME + value: MAC_CMD_PIPE + MAC_CONFIG_TABLE_FILENAME: + name: MAC_CONFIG_TABLE_FILENAME + value: /cf/apps/mac_param.tbl + MAC_DATA_PIPE_DEPTH: + name: MAC_DATA_PIPE_DEPTH + value: 4 + MAC_DATA_PIPE_NAME: + name: MAC_DATA_PIPE_NAME + value: MAC_DATA_PIPE + MAC_MISSION_REV: + name: MAC_MISSION_REV + value: 0 + MAC_SB_TIMEOUT: + name: MAC_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + MAC_SCH_PIPE_DEPTH: + name: MAC_SCH_PIPE_DEPTH + value: 15 + MAC_SCH_PIPE_NAME: + name: MAC_SCH_PIPE_NAME + value: MAC_SCH_PIPE + MAC_SCH_PIPE_PEND_TIME: + name: MAC_SCH_PIPE_PEND_TIME + value: 2000 + MAC_SEND_HK_MID_MAX_MSG_COUNT: + name: MAC_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + MAC_STARTUP_TIMEOUT_MSEC: + name: MAC_STARTUP_TIMEOUT_MSEC + value: 1000 + MAC_WAKEUP_MID_MAX_MSG_COUNT: + name: MAC_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/mac/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + MAC_CMD_INF_EID: + id: 3 + MAC_CONFIG_TABLE_ERR_EID: + id: 5 + MAC_INF_EID: + id: 1 + MAC_INIT_ERR_EID: + id: 4 + MAC_INIT_INF_EID: + id: 2 + MAC_MSGID_ERR_EID: + id: 7 + MAC_MSGLEN_ERR_EID: + id: 8 + MAC_PIPE_ERR_EID: + id: 6 + MAC_TBL_VALIDATE_ERR_EID: + id: 9 + long_name: Multicopter Attitude Controller + module_type: CFE_APP + perfids: + MAC_MAIN_TASK_PERF_ID: + id: null + short_name: mac + telemetry: + MAC_HK_TLM_MID: + msgID: 2908 + struct: MAC_HkTlm_t + mbp_lib: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + md: + app_name: MD + commands: + MD_CMD_MID: + commands: + Jam: + cc: 4 + struct: MD_CmdJam_t + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + SetSignature: + cc: 5 + struct: MD_CmdSetSignature_t + Start: + cc: 2 + struct: MD_CmdStartStop_t + Stop: + cc: 3 + struct: MD_CmdStartStop_t + msgID: 6796 + MD_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6797 + MD_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6798 + config: + MD_DWELL_TABLE_SIZE: + name: MD_DWELL_TABLE_SIZE + value: 25 + MD_ENFORCE_DWORD_ALIGN: + name: MD_ENFORCE_DWORD_ALIGN + value: 1 + MD_MISSION_REV: + name: MD_MISSION_REV + value: 0 + MD_NUM_DWELL_TABLES: + name: MD_NUM_DWELL_TABLES + value: 4 + MD_PIPE_DEPTH: + name: MD_PIPE_DEPTH + value: 50 + MD_PIPE_NAME: + name: MD_PIPE_NAME + value: MD_CMD_PIPE + MD_SIGNATURE_FIELD_LENGTH: + name: MD_SIGNATURE_FIELD_LENGTH + value: 32 + MD_SIGNATURE_OPTION: + name: MD_SIGNATURE_OPTION + value: 1 + MD_TBL_FILENAME_FORMAT: + name: MD_TBL_FILENAME_FORMAT + value: /cf/apps/md_dw\%02d.tbl + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/md/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + MD_CANT_RESOLVE_JAM_ADDR_ERR_EID: + id: 35 + MD_CC_NOT_IN_LOOP_ERR_EID: + id: 17 + MD_CC_NOT_IN_TBL_ERR_EID: + id: 16 + MD_CMD_LEN_ERR_EID: + id: 21 + MD_DWELL_TBL_INF_EID: + id: 52 + MD_DWELL_TBL_TOO_LARGE_CRIT_EID: + id: 5 + MD_EMPTY_TBLMASK_ERR_EID: + id: 14 + MD_INIT_INF_EID: + id: 1 + MD_INVALID_ENTRY_ARG_ERR_EID: + id: 33 + MD_INVALID_JAM_ADDR_ERR_EID: + id: 36 + MD_INVALID_JAM_TABLE_ERR_EID: + id: 32 + MD_INVALID_LEN_ARG_ERR_EID: + id: 34 + MD_INVALID_SIGNATURE_LENGTH_ERR_EID: + id: 49 + MD_INVALID_SIGNATURE_TABLE_ERR_EID: + id: 47 + MD_JAM_ADDR_NOT_16BIT_ERR_EID: + id: 38 + MD_JAM_ADDR_NOT_32BIT_ERR_EID: + id: 37 + MD_JAM_DWELL_INF_EID: + id: 30 + MD_JAM_NULL_DWELL_INF_EID: + id: 31 + MD_MID_ERR_EID: + id: 15 + MD_MSG_LEN_ERR_EID: + id: 22 + MD_NOOP_INF_EID: + id: 10 + MD_NO_TBL_COPY_ERR_EID: + id: 39 + MD_PIPE_ERR_EID: + id: 2 + MD_RANGE_ERR_EID: + id: 42 + MD_RECOVERED_TBL_NOT_VALID_ERR_EID: + id: 4 + MD_RECOVERED_TBL_VALID_INF_EID: + id: 3 + MD_RESET_CNTRS_DBG_EID: + id: 11 + MD_RESOLVE_ERR_EID: + id: 41 + MD_SET_SIGNATURE_INF_EID: + id: 46 + MD_START_DWELL_INF_EID: + id: 12 + MD_STOP_DWELL_INF_EID: + id: 13 + MD_TBL_ALIGN_ERR_EID: + id: 45 + MD_TBL_ENA_FLAG_EID: + id: 44 + MD_TBL_HAS_LEN_ERR_EID: + id: 43 + MD_TBL_INIT_INF_EI: + id: 7 + MD_TBL_REGISTER_CRIT_EID: + id: 6 + MD_TBL_SIG_LEN_ERR_EID: + id: 50 + MD_TBL_STATUS_ERR_EID 20: + id: 20 + MD_ZERO_RATE_CMD_INF_EID: + id: 51 + MD_ZERO_RATE_TBL_INF_EID: + id: 40 + long_name: Memory Dwell + module_type: CFE_APP + msg_def_overrides: + - member: Signature + parent: MD_CmdSetSignature_t + type: string + perfids: + MD_APPMAIN_PERF_ID: + id: 53 + short_name: md + telemetry: + MD_DWELL_PKT1_MID: + msgID: 2694 + MD_DWELL_PKT2_MID: + msgID: 2695 + MD_DWELL_PKT3_MID: + msgID: 2696 + MD_DWELL_PKT4_MID: + msgID: 2697 + MD_DWELL_PKT_MID_BASE: + msgID: 2694 + struct: MD_DwellPkt_t + MD_HK_TLM_MID: + msgID: 2699 + struct: MD_HkTlm_t + mm: + app_name: MM + commands: + MM_CMD_MID: + commands: + DisableEEPROMWrite: + cc: 12 + struct: MM_EepromWriteDisCmd_t + DumpInEvent: + cc: 7 + struct: MM_DumpInEventCmd_t + DumpMemToFile: + cc: 6 + struct: MM_DumpMemToFileCmd_t + EnableEEPROMWrite: + cc: 11 + struct: MM_EepromWriteEnaCmd_t + FillMem: + cc: 8 + struct: MM_FillMemCmd_t + LoadMemFromFile: + cc: 5 + struct: MM_LoadMemFromFileCmd_t + LoadMemWID: + cc: 4 + struct: MM_LoadMemWIDCmd_t + LookupSymbol: + cc: 9 + struct: MM_LookupSymCmd_t + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Peek: + cc: 2 + struct: MM_PeekCmd_t + Poke: + cc: 3 + struct: MM_PokeCmd_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + SymTblToFile: + cc: 10 + struct: MM_SymTblToFileCmd_t + msgID: 6800 + MM_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6801 + config: + MM_CFE_HDR_DESCRIPTION: + name: MM_CFE_HDR_DESCRIPTION + value: Memory Manager dump file + MM_CFE_HDR_SUBTYPE: + name: MM_CFE_HDR_SUBTYPE + value: 1296913236 + MM_DUMP_FILE_CRC_TYPE: + name: MM_DUMP_FILE_CRC_TYPE + value: CFE_ES_DEFAULT_CRC + MM_LOAD_FILE_CRC_TYPE: + name: MM_LOAD_FILE_CRC_TYPE + value: CFE_ES_DEFAULT_CRC + MM_LOAD_WID_CRC_TYPE: + name: MM_LOAD_WID_CRC_TYPE + value: CFE_ES_DEFAULT_CRC + MM_MAX_DUMP_DATA_SEG: + name: MM_MAX_DUMP_DATA_SEG + value: 200 + MM_MAX_DUMP_FILE_DATA_EEPROM: + name: MM_MAX_DUMP_FILE_DATA_EEPROM + value: (128*1024) + MM_MAX_DUMP_FILE_DATA_MEM16: + name: MM_MAX_DUMP_FILE_DATA_MEM16 + value: (1024*1024) + MM_MAX_DUMP_FILE_DATA_MEM32: + name: MM_MAX_DUMP_FILE_DATA_MEM32 + value: (1024*1024) + MM_MAX_DUMP_FILE_DATA_MEM8: + name: MM_MAX_DUMP_FILE_DATA_MEM8 + value: (1024*1024) + MM_MAX_DUMP_FILE_DATA_RAM: + name: MM_MAX_DUMP_FILE_DATA_RAM + value: (1024*1024) + MM_MAX_DUMP_FILE_DATA_SYMTBL: + name: MM_MAX_DUMP_FILE_DATA_SYMTBL + value: (128*1024) + MM_MAX_FILL_DATA_EEPROM: + name: MM_MAX_FILL_DATA_EEPROM + value: (128*1024) + MM_MAX_FILL_DATA_MEM16: + name: MM_MAX_FILL_DATA_MEM16 + value: (1024*1024) + MM_MAX_FILL_DATA_MEM32: + name: MM_MAX_FILL_DATA_MEM32 + value: (1024*1024) + MM_MAX_FILL_DATA_MEM8: + name: MM_MAX_FILL_DATA_MEM8 + value: (1024*1024) + MM_MAX_FILL_DATA_RAM: + name: MM_MAX_FILL_DATA_RAM + value: (1024*1024) + MM_MAX_FILL_DATA_SEG: + name: MM_MAX_FILL_DATA_SEG + value: 200 + MM_MAX_LOAD_DATA_SEG: + name: MM_MAX_LOAD_DATA_SEG + value: 200 + MM_MAX_LOAD_FILE_DATA_EEPROM: + name: MM_MAX_LOAD_FILE_DATA_EEPROM + value: (128*1024) + MM_MAX_LOAD_FILE_DATA_MEM16: + name: MM_MAX_LOAD_FILE_DATA_MEM16 + value: (1024*1024) + MM_MAX_LOAD_FILE_DATA_MEM32: + name: MM_MAX_LOAD_FILE_DATA_MEM32 + value: (1024*1024) + MM_MAX_LOAD_FILE_DATA_MEM8: + name: MM_MAX_LOAD_FILE_DATA_MEM8 + value: (1024*1024) + MM_MAX_LOAD_FILE_DATA_RAM: + name: MM_MAX_LOAD_FILE_DATA_RAM + value: (1024*1024) + MM_MAX_UNINTERRUPTABLE_DATA: + name: MM_MAX_UNINTERRUPTABLE_DATA + value: 200 + MM_MISSION_REV: + name: MM_MISSION_REV + value: 0 + MM_OPT_CODE_MEM16_MEMTYPE: + name: MM_OPT_CODE_MEM16_MEMTYPE + value: true + MM_OPT_CODE_MEM32_MEMTYPE: + name: MM_OPT_CODE_MEM32_MEMTYPE + value: true + MM_OPT_CODE_MEM8_MEMTYPE: + name: MM_OPT_CODE_MEM8_MEMTYPE + value: true + MM_PROCESSOR_CYCL: + name: MM_PROCESSOR_CYCL + value: 0 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/mm/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + MM_ALIGN16_ERR_EID: + id: 24 + MM_ALIGN32_ERR_EID: + id: 23 + MM_CC1_ERR_EID: + id: 17 + MM_CFE_FS_READHDR_ERR_EID: + id: 42 + MM_CFE_FS_WRITEHDR_ERR_EID: + id: 43 + MM_CFS_COMPUTECRCFROMFILE_ERR_EID: + id: 38 + MM_CMD_FNAME_ERR_EI: + id: 39 + MM_DATA_SIZE_BITS_ERR_EID: + id: 22 + MM_DATA_SIZE_BYTES_ERR_EID: + id: 21 + MM_DMP_MEM_FILE_INF_EID: + id: 13 + MM_DUMP_INEVENT_INF_EID: + id: 14 + MM_EEPROM_WRITE_DIS_ERR_EID: + id: 54 + MM_EEPROM_WRITE_DIS_INF_EID: + id: 53 + MM_EEPROM_WRITE_ENA_ERR_EID: + id: 52 + MM_EEPROM_WRITE_ENA_INF_EID: + id: 51 + MM_FILE_LOAD_PARAMS_ERR_EI: + id: 41 + MM_FILL_INF_EID: + id: 6 + MM_HKREQ_LEN_ERR_EID: + id: 44 + MM_INIT_INF_EID: + id: 1 + MM_LD_FILE_SIZE_ERR_EID: + id: 40 + MM_LD_MEM_FILE_INF_EID: + id: 5 + MM_LEN_ERR_EID: + id: 18 + MM_LOAD_FILE_CRC_ERR_EID: + id: 26 + MM_LOAD_WID_CRC_ERR_EID: + id: 27 + MM_LOAD_WID_INF_EID: + id: 4 + MM_MEMTYPE_ERR_EID: + id: 19 + MM_MID_ERR_EID: + id: 16 + MM_NOOP_INF_EID: + id: 2 + MM_OS_CLOSE_ERR_EID: + id: 33 + MM_OS_CREAT_ERR_EID: + id: 31 + MM_OS_EEPROMWRITE16_ERR_EID: + id: 29 + MM_OS_EEPROMWRITE32_ERR_EID: + id: 30 + MM_OS_EEPROMWRITE8_ERR_EID: + id: 28 + MM_OS_MEMVALIDATE_ERR_EID: + id: 25 + MM_OS_OPEN_ERR_EID: + id: 32 + MM_OS_READ_ERR_EID: + id: 34 + MM_OS_READ_EXP_ERR_EID: + id: 35 + MM_OS_STAT_ERR_EID: + id: 37 + MM_OS_WRITE_EXP_ERR_EID: + id: 36 + MM_OS_ZERO_READ_ERR_EID: + id: 55 + MM_PEEK_BYTE_INF_EID: + id: 7 + MM_PEEK_DWORD_INF_EID: + id: 9 + MM_PEEK_WORD_INF_EID: + id: 8 + MM_PIPE_ERR_EID: + id: 15 + MM_POKE_BYTE_INF_EID: + id: 10 + MM_POKE_DWORD_INF_EID: + id: 12 + MM_POKE_WORD_INF_EID: + id: 11 + MM_PSP_COPY_ERR_EID: + id: 58 + MM_PSP_READ_ERR_EID: + id: 56 + MM_PSP_SET_ERR_EID: + id: 59 + MM_PSP_WRITE_ERR_EID: + id: 57 + MM_RESET_DBG_EID: + id: 3 + MM_SYMFILENAME_NUL_ERR_EID: + id: 48 + MM_SYMNAME_ERR_EID: + id: 20 + MM_SYMNAME_NUL_ERR_EID: + id: 46 + MM_SYMTBL_TO_FILE_FAIL_ERR_EID: + id: 49 + MM_SYMTBL_TO_FILE_INF_EID: + id: 47 + MM_SYMTBL_TO_FILE_INVALID_ERR_EID: + id: 50 + MM_SYM_LOOKUP_INF_EID: + id: 45 + long_name: Memory Manager + module_type: CFE_APP + msg_def_overrides: + - enumerations: + EEPROM: 2 + MEM16: 4 + MEM32: 5 + MEM8: 3 + NOMEMTYPE: 0 + RAM: 1 + member: MemType + parent: MM_LoadDumpFileHeader_t + type: enumeration + - member: SymName + parent: CFS_SymAddr_t + type: string + - enumerations: + EEPROM: 2 + MEM16: 4 + MEM32: 5 + MEM8: 3 + NOMEMTYPE: 0 + RAM: 1 + member: MemType + parent: MM_PeekCmd_t + type: enumeration + - enumerations: + EEPROM: 2 + MEM16: 4 + MEM32: 5 + MEM8: 3 + NOMEMTYPE: 0 + RAM: 1 + member: MemType + parent: MM_PokeCmd_t + type: enumeration + - enumerations: + EEPROM: 2 + MEM16: 4 + MEM32: 5 + MEM8: 3 + NOMEMTYPE: 0 + RAM: 1 + member: MemType + parent: MM_DumpInEventCmd_t + type: enumeration + - member: FileName + parent: MM_LoadMemFromFileCmd_t + type: string + - enumerations: + EEPROM: 2 + MEM16: 4 + MEM32: 5 + MEM8: 3 + NOMEMTYPE: 0 + RAM: 1 + member: MemType + parent: MM_DumpMemToFileCmd_t + type: enumeration + - member: FileName + parent: MM_DumpMemToFileCmd_t + type: string + - enumerations: + EEPROM: 2 + MEM16: 4 + MEM32: 5 + MEM8: 3 + NOMEMTYPE: 0 + RAM: 1 + member: MemType + parent: MM_FillMemCmd_t + type: enumeration + - member: SymName + parent: MM_LookupSymCmd_t + type: string + - member: FileName + parent: MM_SymTblToFileCmd_t + type: string + - enumerations: + DUMP_INEVENT: 6 + DUMP_TO_FILE: 5 + EEPROMWRITE_DIS: 11 + EEPROMWRITE_ENA: 10 + FILL: 7 + LOAD_FROM_FILE: 3 + LOAD_WID: 4 + NOACTION: 0 + NOOP: 12 + PEEK: 1 + POKE: 2 + RESET: 13 + SYMTBL_SAVE: 9 + SYM_LOOKUP: 8 + member: LastAction + parent: MM_HkPacket_t + type: enumeration + - enumerations: + EEPROM: 2 + MEM16: 4 + MEM32: 5 + MEM8: 3 + NOMEMTYPE: 0 + RAM: 1 + member: MemType + parent: MM_HkPacket_t + type: enumeration + - member: FileName + parent: MM_HkPacket_t + type: string + perfids: + MM_APPMAIN_PERF_ID: + id: 54 + MM_EEPROM_FILELOAD_PERF_ID: + id: 55 + MM_EEPROM_FILL_PERF_ID: + id: 56 + MM_EEPROM_POKE_PERF_ID: + id: 57 + MM_SEGBREAK_PERF_ID: + id: 58 + short_name: mm + telemetry: + MM_HK_TLM_MID: + msgID: 2703 + struct: MM_HkPacket_t + mpc: + app_name: MPC + commands: + MPC_CMD_MID: + commands: + Noop: + cc: 0 + struct: MPC_NoArgCmd_t + Reset: + cc: 1 + struct: MPC_NoArgCmd_t + SendDiag: + cc: 5 + struct: MPC_NoArgCmd_t + SetHoldDZ: + cc: 4 + struct: MPC_SetDzCmd_t + SetStickExpo: + cc: 6 + struct: MPC_SetStickExpoCmd_t + SetTKORamp: + cc: 7 + struct: MPC_SetTkoRampCmd_t + SetXYPid: + cc: 2 + struct: MPC_SetPidCmd_t + SetZPid: + cc: 3 + struct: MPC_SetPidCmd_t + msgID: 7013 + MPC_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: MPC_NoArgCmd_t + msgID: 7015 + MPC_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: MPC_NoArgCmd_t + msgID: 7014 + config: + DIRECTION_CHANGE_TRIGGER_TIME_US: + name: DIRECTION_CHANGE_TRIGGER_TIME_US + value: 100000 + MPC_CMD_PIPE_DEPTH: + name: MPC_CMD_PIPE_DEPTH + value: 4 + MPC_CMD_PIPE_NAME: + name: MPC_CMD_PIPE_NAME + value: MPC_CMD_PIPE + MPC_CONFIG_TABLE_FILENAME: + name: MPC_CONFIG_TABLE_FILENAME + value: /cf/apps/mpc_config.tbl + MPC_MISSION_REV: + name: MPC_MISSION_REV + value: 0 + MPC_SB_TIMEOUT: + name: MPC_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + MPC_SCH_PIPE_DEPTH: + name: MPC_SCH_PIPE_DEPTH + value: 15 + MPC_SCH_PIPE_NAME: + name: MPC_SCH_PIPE_NAME + value: MPC_SCH_PIPE + MPC_SCH_PIPE_PEND_TIME: + name: MPC_SCH_PIPE_PEND_TIME + value: 2000 + MPC_SEND_HK_MID_MAX_MSG_COUNT: + name: MPC_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + MPC_STARTUP_TIMEOUT_MSEC: + name: MPC_STARTUP_TIMEOUT_MSEC + value: 1000 + MPC_WAKEUP_MID_MAX_MSG_COUNT: + name: MPC_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/mpc/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + MPC_CC_ERR_EID: + id: 9 + MPC_CFGTBL_GETADDR_ERR_EID: + id: 6 + MPC_CFGTBL_LOAD_ERR_EID: + id: 12 + MPC_CFGTBL_MANAGE_ERR_EID: + id: 5 + MPC_CFGTBL_REG_ERR_EID: + id: 11 + MPC_CMD_NOOP_EID: + id: 2 + MPC_INIT_INF_EID: + id: 1 + MPC_INVLD_PARAM_ERR_EID: + id: 21 + MPC_MSGID_ERR_EID: + id: 8 + MPC_MSGLEN_ERR_EID: + id: 10 + MPC_PID_UPDATE_EID: + id: 14 + MPC_PIPE_INIT_ERR_EID: + id: 4 + MPC_POS_SP_NOT_FINITE_ERR_EID: + id: 20 + MPC_RCVMSG_ERR_EID: + id: 7 + MPC_SEND_DIAG_EID: + id: 15 + MPC_SET_DZ_EID: + id: 16 + MPC_SET_EXPO_EID: + id: 17 + MPC_SET_TKO_RAMP_EID: + id: 18 + MPC_SUBSCRIBE_ERR_EID: + id: 3 + MPC_UNKNOWN_USER_INTENTION_ERR_EID: + id: 19 + MPC_UNK_VEL_FRM_ERR_EID: + id: 13 + long_name: Multicopter Position Controller + module_type: CFE_APP + perfids: + MPC_MAIN_TASK_PERF_ID: + id: null + short_name: mpc + telemetry: + MPC_DIAG_TLM_MID: + msgID: 2915 + struct: MPC_DiagPacket_t + MPC_HK_TLM_MID: + msgID: 2916 + struct: MPC_HkTlm_t + mpu6050: + app_name: MPU6050 + commands: + MPU6050_CMD_MID: + commands: + Noop: + cc: 0 + struct: MPU6050_NoArgCmd_t + Reset: + cc: 1 + struct: MPU6050_NoArgCmd_t + SendDiag: + cc: 2 + struct: MPU6050_NoArgCmd_t + SetCalibration: + cc: 3 + struct: MPU6050_SetCalibrationCmd_t + msgID: 7020 + MPU6050_MEASURE_MID: + commands: + Measure: + cc: 0 + struct: MPU6050_NoArgCmd_t + msgID: 7021 + MPU6050_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: MPU6050_NoArgCmd_t + msgID: 7022 + config: + MPU6050_ACCEL_FILTER_CUTOFF_FREQ: + name: MPU6050_ACCEL_FILTER_CUTOFF_FREQ + value: 30 + MPU6050_ACCEL_INT_PUB_RATE: + name: MPU6050_ACCEL_INT_PUB_RATE + value: 1000000 / 400 + MPU6050_ACCEL_PX4_DEVICE_ID: + name: MPU6050_ACCEL_PX4_DEVICE_ID + value: 6789478 + MPU6050_ACCEL_SAMPLE_RATE: + name: MPU6050_ACCEL_SAMPLE_RATE + value: 200 + MPU6050_ACC_SCALE: + name: MPU6050_ACC_SCALE + value: 16 + MPU6050_CMD_PIPE_DEPTH: + name: MPU6050_CMD_PIPE_DEPTH + value: 4 + MPU6050_CMD_PIPE_NAME: + name: MPU6050_CMD_PIPE_NAME + value: MPU6050_CMD_PIPE + MPU6050_CONFIG_TABLE_FILENAME: + name: MPU6050_CONFIG_TABLE_FILENAME + value: /cf/apps/mpu6050_config.tbl + MPU6050_DATA_PIPE_DEPTH: + name: MPU6050_DATA_PIPE_DEPTH + value: 4 + MPU6050_DATA_PIPE_NAME: + name: MPU6050_DATA_PIPE_NAME + value: MPU6050_DATA_PIPE + MPU6050_DEVICE_ID: + name: MPU6050_DEVICE_ID + value: 104 + MPU6050_GYRO_FILTER_CUTOFF_FREQ: + name: MPU6050_GYRO_FILTER_CUTOFF_FREQ + value: 30 + MPU6050_GYRO_INT_PUB_RATE: + name: MPU6050_GYRO_INT_PUB_RATE + value: 1000000 / 400 + MPU6050_GYRO_PX4_DEVICE_ID: + name: MPU6050_GYRO_PX4_DEVICE_ID + value: 3467548 + MPU6050_GYRO_SAMPLE_RATE: + name: MPU6050_GYRO_SAMPLE_RATE + value: 200 + MPU6050_GYRO_SCALE: + name: MPU6050_GYRO_SCALE + value: 2000 + MPU6050_MISSION_REV: + name: MPU6050_MISSION_REV + value: 0 + MPU6050_ONE_G: + name: MPU6050_ONE_G + value: 9.80665 + MPU6050_PARAM_PIPE_DEPTH: + name: MPU6050_PARAM_PIPE_DEPTH + value: 4 + MPU6050_PARAM_PIPE_NAME: + name: MPU6050_PARAM_PIPE_NAME + value: MPU6050_PARAM_PIPE + MPU6050_RADIANS_PER_DEGREE: + name: MPU6050_RADIANS_PER_DEGREE + value: 0.0174532 + MPU6050_ROOM_TEMP_OFFSET: + name: MPU6050_ROOM_TEMP_OFFSET + value: 0 + MPU6050_SB_TIMEOUT: + name: MPU6050_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + MPU6050_SCH_PIPE_DEPTH: + name: MPU6050_SCH_PIPE_DEPTH + value: 2 + MPU6050_SCH_PIPE_NAME: + name: MPU6050_SCH_PIPE_NAME + value: MPU6050_SCH_PIPE + MPU6050_SCH_PIPE_PEND_TIME: + name: MPU6050_SCH_PIPE_PEND_TIME + value: 2000 + MPU6050_SEND_HK_MID_MAX_MSG_COUNT: + name: MPU6050_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + MPU6050_STARTUP_TIMEOUT_MSEC: + name: MPU6050_STARTUP_TIMEOUT_MSEC + value: 1000 + MPU6050_TEMP_SENS: + name: MPU6050_TEMP_SENS + value: 340 + MPU6050_WAKEUP_MID_MAX_MSG_COUNT: + name: MPU6050_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/mpu6050/wh_design.yaml + events: + MPU6050_CALIBRATE_ERR_EID: + id: 18 + MPU6050_CALIBRATE_INF_EID: + id: 17 + MPU6050_CC_ERR_EID: + id: 9 + MPU6050_CFGTBL_GETADDR_ERR_EID: + id: 6 + MPU6050_CFGTBL_LOAD_ERR_EID: + id: 12 + MPU6050_CFGTBL_MANAGE_ERR_EID: + id: 5 + MPU6050_CFGTBL_REG_ERR_EID: + id: 11 + MPU6050_CMD_NOOP_EID: + id: 2 + MPU6050_INIT_ERR_EID: + id: 14 + MPU6050_INIT_INF_EID: + id: 1 + MPU6050_MSGID_ERR_EID: + id: 8 + MPU6050_MSGLEN_ERR_EID: + id: 10 + MPU6050_PIPE_INIT_ERR_EID: + id: 4 + MPU6050_RCVMSG_ERR_EI: + id: 7 + MPU6050_READ_ERR_EID: + id: 15 + MPU6050_SUBSCRIBE_ERR_EID: + id: 3 + MPU6050_UNINIT_ERR_EID: + id: 13 + MPU6050_VALIDATE_ERR_EID: + id: 16 + long_name: null + module_type: CFE_APP + perfids: + MPU6050_MAIN_TASK_PERF_ID: + id: null + MPU6050_RECEIVE_PERF_ID: + id: null + MPU6050_SEND_PERF_ID: + id: null + short_name: mpu6050 + telemetry: + MPU6050_DIAG_TLM_MID: + msgID: 2922 + struct: MPU6050_DiagPacket_t + MPU6050_HK_TLM_MID: + msgID: 2923 + struct: MPU6050_HkTlm_t + mpu9250: + app_name: MPU9250 + commands: + MPU9250_CMD_MID: + commands: + Noop: + cc: 0 + struct: MPU9250_NoArgCmd_t + Reset: + cc: 1 + struct: MPU9250_NoArgCmd_t + SendDiag: + cc: 2 + struct: MPU9250_NoArgCmd_t + SetCalibration: + cc: 3 + struct: MPU9250_SetCalibrationCmd_t + msgID: 7027 + MPU9250_MEASURE_MID: + commands: + Measure: + cc: 0 + struct: MPU9250_NoArgCmd_t + msgID: 7028 + MPU9250_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: MPU9250_NoArgCmd_t + msgID: 7029 + config: + MPU9250_ACCEL_FILTER_CUTOFF_FREQ: + name: MPU9250_ACCEL_FILTER_CUTOFF_FREQ + value: 30 + MPU9250_ACCEL_INT_PUB_RATE: + name: MPU9250_ACCEL_INT_PUB_RATE + value: 1000000 / 400 + MPU9250_ACCEL_PX4_DEVICE_ID: + name: MPU9250_ACCEL_PX4_DEVICE_ID + value: 6789478 + MPU9250_ACCEL_SAMPLE_RATE: + name: MPU9250_ACCEL_SAMPLE_RATE + value: 200 + MPU9250_ACC_SCALE: + name: MPU9250_ACC_SCALE + value: 16 + MPU9250_AK8963_ID: + name: MPU9250_AK8963_ID + value: 72 + MPU9250_CMD_PIPE_DEPTH: + name: MPU9250_CMD_PIPE_DEPTH + value: 4 + MPU9250_CMD_PIPE_NAME: + name: MPU9250_CMD_PIPE_NAME + value: MPU9250_CMD_PIPE + MPU9250_CONFIG_TABLE_FILENAME: + name: MPU9250_CONFIG_TABLE_FILENAME + value: /cf/apps/mpu9250_config.tbl + MPU9250_DATA_PIPE_DEPTH: + name: MPU9250_DATA_PIPE_DEPTH + value: 4 + MPU9250_DATA_PIPE_NAME: + name: MPU9250_DATA_PIPE_NAME + value: MPU9250_DATA_PIPE + MPU9250_DEVICE_ID: + name: MPU9250_DEVICE_ID + value: 113 + MPU9250_GYRO_FILTER_CUTOFF_FREQ: + name: MPU9250_GYRO_FILTER_CUTOFF_FREQ + value: 30 + MPU9250_GYRO_INT_PUB_RATE: + name: MPU9250_GYRO_INT_PUB_RATE + value: 1000000 / 400 + MPU9250_GYRO_PX4_DEVICE_ID: + name: MPU9250_GYRO_PX4_DEVICE_ID + value: 3467548 + MPU9250_GYRO_SAMPLE_RATE: + name: MPU9250_GYRO_SAMPLE_RATE + value: 200 + MPU9250_GYRO_SCALE: + name: MPU9250_GYRO_SCALE + value: 2000 + MPU9250_MISSION_REV: + name: MPU9250_MISSION_REV + value: 0 + MPU9250_NEVER_AUTOPUBLISH_US: + name: MPU9250_NEVER_AUTOPUBLISH_US + value: 0 + MPU9250_ONE_G: + name: MPU9250_ONE_G + value: 9.80665 + MPU9250_PARAM_PIPE_DEPTH: + name: MPU9250_PARAM_PIPE_DEPTH + value: 4 + MPU9250_PARAM_PIPE_NAME: + name: MPU9250_PARAM_PIPE_NAME + value: MPU9250_PARAM_PIPE + MPU9250_RADIANS_PER_DEGREE: + name: MPU9250_RADIANS_PER_DEGREE + value: 0.0174532 + MPU9250_ROOM_TEMP_OFFSET: + name: MPU9250_ROOM_TEMP_OFFSET + value: 0 + MPU9250_SB_TIMEOUT: + name: MPU9250_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + MPU9250_SCH_PIPE_DEPTH: + name: MPU9250_SCH_PIPE_DEPTH + value: 2 + MPU9250_SCH_PIPE_NAME: + name: MPU9250_SCH_PIPE_NAME + value: MPU9250_SCH_PIPE + MPU9250_SCH_PIPE_PEND_TIME: + name: MPU9250_SCH_PIPE_PEND_TIME + value: 2000 + MPU9250_SEND_HK_MID_MAX_MSG_COUNT: + name: MPU9250_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + MPU9250_STARTUP_TIMEOUT_MSEC: + name: MPU9250_STARTUP_TIMEOUT_MSEC + value: 1000 + MPU9250_TEMP_SENS: + name: MPU9250_TEMP_SENS + value: 361 + MPU9250_WAKEUP_MID_MAX_MSG_COUNT: + name: MPU9250_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/mpu9250/wh_design.yaml + events: + MPU9250_CALIBRATE_ERR_EID: + id: 18 + MPU9250_CALIBRATE_INF_EID: + id: 17 + MPU9250_CC_ERR_EID: + id: 9 + MPU9250_CFGTBL_GETADDR_ERR_EID: + id: 6 + MPU9250_CFGTBL_LOAD_ERR_EID: + id: 12 + MPU9250_CFGTBL_MANAGE_ERR_EID: + id: 5 + MPU9250_CFGTBL_REG_ERR_EID: + id: 11 + MPU9250_CMD_NOOP_EID: + id: 2 + MPU9250_INIT_ERR_EID: + id: 14 + MPU9250_INIT_INF_EID: + id: 1 + MPU9250_MSGID_ERR_EID: + id: 8 + MPU9250_MSGLEN_ERR_EID: + id: 10 + MPU9250_PIPE_INIT_ERR_EID: + id: 4 + MPU9250_RCVMSG_ERR_EID: + id: 7 + MPU9250_READ_ERR_EID: + id: 15 + MPU9250_SUBSCRIBE_ERR_EID: + id: 3 + MPU9250_UNINIT_ERR_EID: + id: 13 + MPU9250_VALIDATE_ERR_EID: + id: 16 + long_name: null + module_type: CFE_APP + perfids: + MPU9250_MAIN_TASK_PERF_ID: + id: null + short_name: mpu9250 + telemetry: + MPU9250_DIAG_TLM_MID: + msgID: 2929 + struct: MPU9250_DiagPacket_t + MPU9250_HK_TLM_MID: + msgID: 2930 + struct: MPU9250_HkTlm_t + ms5607: + app_name: MS5607 + commands: + MS5607_CMD_MID: + commands: + Noop: + cc: 0 + struct: MS5607_NoArgCmd_t + Reset: + cc: 1 + struct: MS5607_NoArgCmd_t + msgID: 7034 + MS5607_MEASURE_MID: + commands: + Measure: + cc: 0 + struct: MS5611_NoArgCmd_t + msgID: 7035 + MS5607_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: MS5611_NoArgCmd_t + msgID: 7036 + config: + MS5607_CMD_PIPE_DEPTH: + name: MS5607_CMD_PIPE_DEPTH + value: 4 + MS5607_CMD_PIPE_NAME: + name: MS5607_CMD_PIPE_NAME + value: MS5607_CMD_PIPE + MS5607_CONFIG_TABLE_FILENAME: + name: MS5607_CONFIG_TABLE_FILENAME + value: /cf/apps/ms5607_config.tbl + MS5607_DATA_PIPE_DEPTH: + name: MS5607_DATA_PIPE_DEPTH + value: 4 + MS5607_DATA_PIPE_NAME: + name: MS5607_DATA_PIPE_NAME + value: MS5607_DATA_PIPE + MS5607_DEVICE_PATH: + name: MS5607_DEVICE_PATH + value: /dev/i2c-1 + MS5607_MEASURE_MID_MAX_MSG_COUNT: + name: MS5607_MEASURE_MID_MAX_MSG_COUNT + value: 1 + MS5607_MISSION_REV: + name: MS5607_MISSION_REV + value: 0 + MS5607_PRESS_TEMP_MEAS_RATIO: + name: MS5607_PRESS_TEMP_MEAS_RATIO + value: 3 + MS5607_SB_TIMEOUT: + name: MS5607_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + MS5607_SCH_PIPE_DEPTH: + name: MS5607_SCH_PIPE_DEPTH + value: 2 + MS5607_SCH_PIPE_NAME: + name: MS5607_SCH_PIPE_NAME + value: MS5607_SCH_PIPE + MS5607_SCH_PIPE_PEND_TIME: + name: MS5607_SCH_PIPE_PEND_TIME + value: 2000 + MS5607_SEND_HK_MID_MAX_MSG_COUNT: + name: MS5607_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + MS5607_STARTUP_TIMEOUT_MSEC: + name: MS5607_STARTUP_TIMEOUT_MSEC + value: 1000 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/ms5607/wh_design.yaml + events: + MS5607_CC_ERR_EID: + id: 10 + MS5607_CFGTBL_GETADDR_ERR_EID: + id: 7 + MS5607_CFGTBL_LOAD_ERR_EID: + id: 14 + MS5607_CFGTBL_MANAGE_ERR_EID: + id: 5 + MS5607_CFGTBL_REG_ERR_EID: + id: 6 + MS5607_CFGTBL_VALIDATION_ERR_EID: + id: 17 + MS5607_CMD_ERR_EID: + id: 12 + MS5607_CMD_NOOP_EID: + id: 2 + MS5607_INIT_ERR_EID: + id: 15 + MS5607_INIT_INF_EID: + id: 1 + MS5607_MSGID_ERR_EID: + id: 9 + MS5607_MSGLEN_ERR_EID: + id: 11 + MS5607_PIPE_INIT_ERR_EID: + id: 4 + MS5607_RCVMSG_ERR_EID: + id: 8 + MS5607_READ_ERR_EID: + id: 16 + MS5607_SUBSCRIBE_ERR_EID: + id: 3 + MS5607_UNINIT_ERR_EID: + id: 13 + long_name: null + module_type: CFE_APP + perfids: + MS5607_MAIN_TASK_PERF_ID: + id: null + MS5607_RECEIVE_PERF_ID: + id: null + MS5607_SEND_PERF_ID: + id: null + short_name: ms5607 + telemetry: + MS5607_DIAG_TLM_MID: + msgID: 2936 + struct: MS5607_DiagPacket_t + MS5607_HK_TLM_MID: + msgID: 2937 + struct: MS5607_HkTlm_t + ms5611: + app_name: MS5611 + commands: + MS5611_CMD_MID: + commands: + Noop: + cc: 0 + struct: MS5611_NoArgCmd_t + Reset: + cc: 1 + struct: MS5611_NoArgCmd_t + msgID: 7041 + MS5611_MEASURE_MID: + commands: + Measure: + cc: 0 + struct: MS5611_NoArgCmd_t + msgID: 7042 + MS5611_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: MS5611_NoArgCmd_t + msgID: 7043 + config: + MS5611_CMD_PIPE_DEPTH: + name: MS5611_CMD_PIPE_DEPTH + value: 4 + MS5611_CMD_PIPE_NAME: + name: MS5611_CMD_PIPE_NAME + value: MS5611_CMD_PIPE + MS5611_CONFIG_TABLE_FILENAME: + name: MS5611_CONFIG_TABLE_FILENAME + value: /cf/apps/ms5611_config.tbl + MS5611_DATA_PIPE_DEPTH: + name: MS5611_DATA_PIPE_DEPTH + value: 4 + MS5611_DATA_PIPE_NAME: + name: MS5611_DATA_PIPE_NAME + value: MS5611_DATA_PIPE + MS5611_MEASURE_MID_MAX_MSG_COUNT: + name: MS5611_MEASURE_MID_MAX_MSG_COUNT + value: 1 + MS5611_MISSION_REV: + name: MS5611_MISSION_REV + value: 0 + MS5611_PRESS_TEMP_MEAS_RATIO: + name: MS5611_PRESS_TEMP_MEAS_RATIO + value: 3 + MS5611_SB_TIMEOUT: + name: MS5611_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + MS5611_SCH_PIPE_DEPTH: + name: MS5611_SCH_PIPE_DEPTH + value: 2 + MS5611_SCH_PIPE_NAME: + name: MS5611_SCH_PIPE_NAME + value: MS5611_SCH_PIPE + MS5611_SCH_PIPE_PEND_TIME: + name: MS5611_SCH_PIPE_PEND_TIME + value: 2000 + MS5611_SEND_HK_MID_MAX_MSG_COUNT: + name: MS5611_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + MS5611_STARTUP_TIMEOUT_MSEC: + name: MS5611_STARTUP_TIMEOUT_MSEC + value: 1000 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/ms5611/wh_design.yaml + events: + MS5611_CC_ERR_EID: + id: 10 + MS5611_CFGTBL_GETADDR_ERR_EID: + id: 7 + MS5611_CFGTBL_LOAD_ERR_EID: + id: 13 + MS5611_CFGTBL_MANAGE_ERR_EID: + id: 5 + MS5611_CFGTBL_REG_ERR_EID: + id: 6 + MS5611_CFGTBL_VALIDATION_ERR_EID: + id: 16 + MS5611_CMD_NOOP_EID: + id: 2 + MS5611_INIT_ERR_EID: + id: 14 + MS5611_INIT_INF_EID: + id: 1 + MS5611_MSGID_ERR_EID: + id: 9 + MS5611_MSGLEN_ERR_EID: + id: 11 + MS5611_PIPE_INIT_ERR_EID: + id: 4 + MS5611_RCVMSG_ERR_EID: + id: 8 + MS5611_READ_ERR_EID: + id: 15 + MS5611_SUBSCRIBE_ERR_EID: + id: 3 + MS5611_UNINIT_ERR_EID: + id: 12 + long_name: null + module_type: CFE_APP + perfids: + MS5611_MAIN_TASK_PERF_ID: + id: null + short_name: ms5611 + telemetry: + MS5611_DIAG_TLM_MID: + msgID: 2943 + struct: MS5611_DiagPacket_t + MS5611_HK_TLM_MID: + msgID: 2944 + struct: MS5611_HkTlm_t + nav: + app_name: NAV + commands: + NAV_CMD_MID: + commands: + Noop: + cc: 0 + struct: NAV_NoArgCmd_t + Reset: + cc: 1 + struct: NAV_NoArgCmd_t + msgID: 7047 + NAV_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: NAV_NoArgCmd_t + msgID: 7048 + NAV_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: NAV_NoArgCmd_t + msgID: 7049 + config: + NAV_CMD_PIPE_DEPTH: + name: NAV_CMD_PIPE_DEPTH + value: 4 + NAV_CMD_PIPE_NAME: + name: NAV_CMD_PIPE_NAME + value: NAV_CMD_PIPE + NAV_CONFIG_TABLE_FILENAME: + name: NAV_CONFIG_TABLE_FILENAME + value: /cf/apps/nav_config.tbl + NAV_DATA_PIPE_DEPTH: + name: NAV_DATA_PIPE_DEPTH + value: 4 + NAV_DATA_PIPE_NAME: + name: NAV_DATA_PIPE_NAME + value: NAV_DATA_PIPE + NAV_MISSION_REV: + name: NAV_MISSION_REV + value: 0 + NAV_SB_TIMEOUT: + name: NAV_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + NAV_SCH_PIPE_DEPTH: + name: NAV_SCH_PIPE_DEPTH + value: 15 + NAV_SCH_PIPE_NAME: + name: NAV_SCH_PIPE_NAME + value: NAV_SCH_PIPE + NAV_SCH_PIPE_PEND_TIME: + name: NAV_SCH_PIPE_PEND_TIME + value: 2000 + NAV_SEND_HK_MID_MAX_MSG_COUNT: + name: NAV_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + NAV_STARTUP_TIMEOUT_MSEC: + name: NAV_STARTUP_TIMEOUT_MSEC + value: 1000 + NAV_WAKEUP_MID_MAX_MSG_COUNT: + name: NAV_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/nav/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + NAV_ACTION_ST_EID: + id: 15 + NAV_CC_ERR_EID: + id: 9 + NAV_CFGTBL_GETADDR_ERR_EID: + id: 6 + NAV_CFGTBL_LOAD_ERR_EID: + id: 12 + NAV_CFGTBL_MANAGE_ERR_EID: + id: 5 + NAV_CFGTBL_REG_ERR_EID: + id: 11 + NAV_CMD_NOOP_EID: + id: 2 + NAV_HIGH_ALT_EID: + id: 14 + NAV_INIT_INF_EID: + id: 1 + NAV_MSGID_ERR_EID: + id: 8 + NAV_MSGLEN_ERR_EID: + id: 10 + NAV_MSN_FAILED_ERR_EID: + id: 13 + NAV_PIPE_INIT_ERR_EID: + id: 4 + NAV_RCVMSG_ERR_EID: + id: 7 + NAV_RTL_CLIMB_ST_EID: + id: 16 + NAV_RTL_DESCEND_ST_EID: + id: 18 + NAV_RTL_LAND_EN_EID: + id: 22 + NAV_RTL_LAND_ST_EID: + id: 21 + NAV_RTL_LND_SFGA_EID: + id: 23 + NAV_RTL_LOITER_EN_EID: + id: 20 + NAV_RTL_LOITER_ST_EID: + id: 19 + NAV_RTL_RETURN_ST_EID: + id: 17 + NAV_SUBSCRIBE_ERR_EID: + id: 3 + NAV_SUBSEQ_TAKEOFF_EID: + id: 24 + long_name: Navigation + module_type: CFE_APP + perfids: + NAV_MAIN_TASK_PERF_ID: + id: null + short_name: nav + telemetry: + NAV_HK_TLM_MID: + msgID: 2950 + struct: NAV_HkTlm_t + pe: + app_name: PE + commands: + PE_CMD_MID: + commands: + DisableBaro: + cc: 7 + struct: PE_NoArgCmd_t + DisableDistanceSensor: + cc: 3 + struct: PE_NoArgCmd_t + DisableFlow: + cc: 11 + struct: PE_NoArgCmd_t + DisableGPS: + cc: 5 + struct: PE_NoArgCmd_t + DisableLanding: + cc: 9 + struct: PE_NoArgCmd_t + EnableBaro: + cc: 6 + struct: PE_NoArgCmd_t + EnableDistanceSensor: + cc: 2 + struct: PE_NoArgCmd_t + EnableFlow: + cc: 10 + struct: PE_NoArgCmd_t + EnableGPS: + cc: 4 + struct: PE_NoArgCmd_t + EnableLanding: + cc: 8 + struct: PE_NoArgCmd_t + Noop: + cc: 0 + struct: PE_NoArgCmd_t + Reset: + cc: 1 + struct: PE_NoArgCmd_t + SendDiag: + cc: 12 + struct: PE_NoArgCmd_t + msgID: 7053 + PE_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: PE_NoArgCmd_t + msgID: 7054 + PE_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: PE_NoArgCmd_t + msgID: 7055 + config: + BARO_TIMEOUT: + name: BARO_TIMEOUT + value: 100000 + DIST_BETA_MAX: + name: DIST_BETA_MAX + value: 700 + DIST_SENSOR_TYPE: + name: DIST_SENSOR_TYPE + value: 3 + DIST_TIMEOUT: + name: DIST_TIMEOUT + value: 150000 + FLOW_GYRO_HP_CUTOFF: + name: FLOW_GYRO_HP_CUTOFF + value: 0.001 + FLOW_TIMEOUT: + name: FLOW_TIMEOUT + value: 1000000 + GPS_TIMEOUT: + name: GPS_TIMEOUT + value: 1000000 + LAND_TIMEOUT: + name: LAND_TIMEOUT + value: 1000000 + PE_CMD_PIPE_DEPTH: + name: PE_CMD_PIPE_DEPTH + value: 4 + PE_CMD_PIPE_NAME: + name: PE_CMD_PIPE_NAME + value: PE_CMD_PIPE + PE_CONFIG_TABLE_FILENAME: + name: PE_CONFIG_TABLE_FILENAME + value: /cf/apps/pe_config.tbl + PE_MAX_EVENT_FILTERS: + name: PE_MAX_EVENT_FILTERS + value: 64 + PE_MISSION_REV: + name: PE_MISSION_REV + value: 0 + PE_ONE_G: + name: PE_ONE_G + value: 9.81 + PE_SB_TIMEOUT: + name: PE_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + PE_SCH_PIPE_DEPTH: + name: PE_SCH_PIPE_DEPTH + value: 20 + PE_SCH_PIPE_NAME: + name: PE_SCH_PIPE_NAME + value: PE_SCH_PIPE + PE_SCH_PIPE_PEND_TIME: + name: PE_SCH_PIPE_PEND_TIME + value: 2000 + PE_SEND_HK_MID_MAX_MSG_COUNT: + name: PE_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + PE_STARTUP_TIMEOUT_MSEC: + name: PE_STARTUP_TIMEOUT_MSEC + value: 1000 + PE_WAKEUP_MID_MAX_MSG_COUNT: + name: PE_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + REQ_BARO_INIT_COUNT: + name: REQ_BARO_INIT_COUNT + value: 2000 + REQ_DIST_INIT_COUNT: + name: REQ_DIST_INIT_COUNT + value: 50 + REQ_FLOW_INIT_COUNT: + name: REQ_FLOW_INIT_COUNT + value: 10 + REQ_GPS_INIT_COUNT: + name: REQ_GPS_INIT_COUNT + value: 50 + REQ_LAND_INIT_COUNT: + name: REQ_LAND_INIT_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/pe/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + PE_BARO_FAULT_ERR_EID: + id: 16 + PE_BARO_OK_INF_EID: + id: 17 + PE_BARO_TIMEOUT_ERR_EID: + id: 18 + PE_CC_ERR_EID: + id: 9 + PE_CFGTBL_GETADDR_ERR_EID: + id: 6 + PE_CFGTBL_LOAD_ERR_EID: + id: 12 + PE_CFGTBL_MANAGE_ERR_EID: + id: 5 + PE_CFGTBL_REG_ERR_EID: + id: 11 + PE_CMD_NOOP_EID: + id: 2 + PE_DISABLE_BARO_ERR_EID: + id: 42 + PE_DISABLE_BARO_INF_EID: + id: 41 + PE_DISABLE_DIST_ERR_EID: + id: 34 + PE_DISABLE_DIST_INF_EID: + id: 33 + PE_DISABLE_FLOW_ERR_EID: + id: 50 + PE_DISABLE_FLOW_INF_EID: + id: 49 + PE_DISABLE_GPS_ERR_EID: + id: 38 + PE_DISABLE_GPS_INF_EID: + id: 37 + PE_DISABLE_LAND_ERR_EID: + id: 46 + PE_DISABLE_LAND_INF_EID: + id: 45 + PE_DIST_FAULT_ERR_EID: + id: 25 + PE_DIST_OK_INF_EID: + id: 26 + PE_DIST_TIMEOUT_ERR_EID: + id: 27 + PE_ESTIMATOR_ERR_EID: + id: 15 + PE_FLOW_FAULT_ERR_EID: + id: 51 + PE_FLOW_OK_INF_EID: + id: 52 + PE_FLOW_TIMEOUT_ERR_EID: + id: 53 + PE_FUSE_BARO_ERR_EID: + id: 40 + PE_FUSE_BARO_INF_EID: + id: 39 + PE_FUSE_DIST_ERR_EID: + id: 32 + PE_FUSE_DIST_INF_EID: + id: 31 + PE_FUSE_FLOW_ERR_EID: + id: 48 + PE_FUSE_FLOW_INF_EID: + id: 47 + PE_FUSE_GPS_ERR_EID: + id: 36 + PE_FUSE_GPS_INF_EID: + id: 35 + PE_FUSE_LAND_ERR_EID: + id: 44 + PE_FUSE_LAND_INF_EID: + id: 43 + PE_GLOBAL_ESTIMATOR_INF_EID: + id: 14 + PE_GLOBAL_POS_MSG_ERR_EID: + id: 30 + PE_GPS_FAULT_ERR_EID: + id: 20 + PE_GPS_OK_INF_EID: + id: 21 + PE_GPS_TIMEOUT_ERR_EID: + id: 19 + PE_INIT_INF_EID: + id: 1 + PE_LAND_FAULT_ERR_EID: + id: 22 + PE_LAND_OK_INF_EID: + id: 23 + PE_LAND_TIMEOUT_ERR_EID: + id: 24 + PE_LOCAL_ESTIMATOR_INF_EID: + id: 13 + PE_LOCAL_POS_MSG_ERR_EID: + id: 29 + PE_MSGID_ERR_EID: + id: 8 + PE_MSGLEN_ERR_EID: + id: 10 + PE_MUTEX_ERR_EID: + id: 28 + PE_PIPE_INIT_ERR_EID: + id: 4 + PE_RCVMSG_ERR_EID: + id: 7 + PE_SEND_DIAG_INF_EID: + id: 55 + PE_SUBSCRIBE_ERR_EID: + id: 3 + PE_TBL_VALIDATE_ERR_EID: + id: 54 + long_name: Position Estimator + module_type: CFE_APP + perfids: + PE_INVERSE_MAT_PERF_ID: + id: null + PE_MAIN_TASK_PERF_ID: + id: null + PE_SENSOR_BARO_PERF_ID: + id: null + PE_SENSOR_DIST_PERF_ID: + id: null + PE_SENSOR_FLOW_PERF_ID: + id: null + PE_SENSOR_GPS_PERF_ID: + id: null + PE_SENSOR_LAND_PERF_ID: + id: null + PE_UPDATE_TASK_PERF_ID: + id: null + short_name: pe + telemetry: + PE_DIAG_TLM_MID: + msgID: 2960 + struct: PE_DiagTlm_t + PE_HK_TLM_MID: + msgID: 2956 + struct: PE_HkTlm_t + pq_lib: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + prm: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/cf/apps/PRM.so + prmlib: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + px4lib: + app_name: PX4LIB + commands: null + config: null + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/px4lib/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + long_name: PX4 Library + module_type: CFE_LIB + perfids: null + short_name: px4lib + telemetry: + FLOW_FRAME_MID: + msgID: null + struct: PX4_OpticalFlowFrameMsg_t + PX4_ACTUATOR_ARMED_MID: + msgID: 2722 + struct: PX4_ActuatorArmedMsg_t + PX4_ACTUATOR_CONTROLS_0_MID: + msgID: 2723 + struct: PX4_ActuatorControlsMsg_t + PX4_ACTUATOR_CONTROLS_1_MID: + msgID: 2724 + struct: PX4_ActuatorControlsMsg_t + PX4_ACTUATOR_CONTROLS_2_MID: + msgID: 2725 + struct: PX4_ActuatorControlsMsg_t + PX4_ACTUATOR_CONTROLS_3_MID: + msgID: 2726 + struct: PX4_ActuatorControlsMsg_t + PX4_ACTUATOR_DIRECT_MID: + msgID: 2727 + struct: PX4_ActuatorDirectMsg_t + PX4_ACTUATOR_OUTPUTS_MID: + msgID: 2728 + struct: PX4_ActuatorOutputsMsg_t + PX4_ADC_REPORT_MID: + msgID: 2729 + struct: PX4_ActuatorOutputsMsg_t + PX4_AIRSPEED_MID: + msgID: 2730 + struct: PX4_AirspeedMsg_t + PX4_ATT_POS_MOCAP_MID: + msgID: 2731 + struct: PX4_AttPosMoCapMsg_t + PX4_BATTERY_STATUS_MID: + msgID: 2732 + struct: PX4_BatteryStatusMsg_t + PX4_CAMERA_TRIGGER_MID: + msgID: 2733 + struct: PX4_CameraTriggerMsg_t + PX4_COMMANDER_STATE_MID: + msgID: 2734 + struct: PX4_CommanderStateMsg_t + PX4_CONTROL_STATE_MID: + msgID: 2735 + struct: PX4_ControlStateMsg_t + PX4_CPULOAD_MID: + msgID: 2736 + struct: PX4_CpuLoadMsg_t + PX4_DEBUG_KEY_VALUE_MID: + msgID: 2737 + struct: PX4_DebugKeyValueMsg_t + PX4_DIFFERENTIAL_PRESSURE_MID: + msgID: 2738 + struct: PX4_DifferentialPressureMsg_t + PX4_DISTANCE_SENSOR_MID: + msgID: 2739 + struct: PX4_DistanceSensorMsg_t + PX4_EKF2_INNOVATIONS_MID: + msgID: 2743 + struct: PX4_Ekf2InnovationsMsg_t + PX4_EKF2_REPLAY_MID: + msgID: 2744 + struct: PX4_Ekf2ReplayMsg_t + PX4_ESC_REPORT_MID: + msgID: 2745 + struct: PX4_EscReport_t + PX4_ESC_STATUS_MID: + msgID: 2746 + struct: PX4_EscReportMsg_t + PX4_ESTIMATOR_STATUS_MID: + msgID: 2747 + struct: PX4_EstimatorStatusMsg_t + PX4_FENCE_MID: + msgID: 2748 + struct: PX4_FenceMsg_t + PX4_FENCE_VERTEX_MID: + msgID: 2749 + struct: PX4_FenceVertex_t + PX4_FILTERED_BOTTOM_FLOW_MID: + msgID: 2750 + struct: PX4_FilteredBottomFlowMsg_t + PX4_FOLLOW_TARGET_MID: + msgID: 2751 + struct: PX4_FollowTargetMsg_t + PX4_FW_POS_CTRL_STATUS_MID: + msgID: 2740 + struct: PX4_FwPosCtrlStatusMsg_t + PX4_FW_VIRTUAL_ATTITUDE_SETPOINT_MID: + msgID: 2741 + struct: PX4_FwVirtualAttitudeSetpointMsg_t + PX4_FW_VIRTUAL_RATES_SETPOINT_MID: + msgID: 2742 + struct: PX4_FwVirtualRatesSetpointMsg_t + PX4_GEOFENCE_RESULT_MID: + msgID: 2752 + struct: PX4_GeofenceResultMsg_t + PX4_GPS_DUMP_MID: + msgID: 2753 + struct: PX4_GpsDumpMsg_t + PX4_GPS_INJECT_DATA_MID: + msgID: 2754 + struct: PX4_GpsInjectDataMsg_t + PX4_HIL_SENSOR_MID: + msgID: 2755 + struct: PX4_HilSensorMsg_t + PX4_HOME_POSITION_MID: + msgID: 2756 + struct: PX4_HomePositionMsg_t + PX4_INPUT_RC_MID: + msgID: 2757 + struct: PX4_InputRcMsg_t + PX4_LED_CONTROL_MID: + msgID: 2758 + struct: PX4_LedControlMsg_t + PX4_LOG_MESSAGE_MID: + msgID: 2759 + struct: PX4_LogMessageMsg_t + PX4_MANUAL_CONTROL_SETPOINT_MID: + msgID: 2760 + struct: PX4_ManualControlSetpointMsg_t + PX4_MAVLINK_LOG_MID: + msgID: 2761 + struct: PX4_MavlinkLogMsg_t + PX4_MC_ATT_CTRL_STATUS_MID: + msgID: 2762 + struct: PX4_McAttCtrlStatusMsg_t + PX4_MC_VIRTUAL_ATTITUDE_SETPOINT_MID: + msgID: 2763 + struct: PX4_McVirtualAttitudeSetpointMsg_t + PX4_MC_VIRTUAL_RATES_SETPOINT_MID: + msgID: 2764 + struct: PX4_McVirtualRatesSetpointMsg_t + PX4_MISSION_MID: + msgID: 2765 + struct: PX4_MissionMsg_t + PX4_MISSION_RESULT_MID: + msgID: 2766 + struct: PX4_MissionResultMsg_t + PX4_MULTIROTOR_MOTOR_LIMITS_MID: + msgID: 2767 + PX4_OFFBOARD_CONTROL_MODE_MID: + msgID: 2768 + struct: PX4_OffboardControlModeMsg_t + PX4_OPTICAL_FLOW_MID: + msgID: 2769 + struct: PX4_OpticalFlowMsg_t + PX4_OUTPUT_PWM_MID: + msgID: 2770 + struct: PX4_OutputPwmMsg_t + PX4_PARAMETER_UPDATE_MID: + msgID: 2771 + struct: PX4_ParameterUpdateMsg_t + PX4_POSITION_SETPOINT_MID: + msgID: 2772 + struct: PX4_PositionSetpoint_t + PX4_POSITION_SETPOINT_TRIPLET_MID: + msgID: 2773 + struct: PX4_PositionSetpointTripletMsg_t + PX4_PWM_INPUT_MID: + msgID: 2774 + struct: PX4_PwmInputMsg_t + PX4_QSHELL_REQ_MID: + msgID: 2775 + struct: PX4_QShellReqMsg_t + PX4_RC_CHANNELS_MID: + msgID: 2776 + struct: PX4_RcChannelsMsg_t + PX4_RC_PARAMETER_MAP_MID: + msgID: 2777 + struct: PX4_RcParameterMapMsg_t + PX4_SAFETY_MID: + msgID: 2778 + struct: PX4_SafetyMsg_t + PX4_SATELLITE_INFO_MID: + msgID: 2779 + struct: PX4_SatelliteInfoMsg_t + PX4_SENSOR_ACCEL_MID: + msgID: 2780 + struct: PX4_SensorAccelMsg_t + PX4_SENSOR_BARO_MID: + msgID: 2781 + struct: PX4_SensorBaroMsg_t + PX4_SENSOR_COMBINED_MID: + msgID: 2782 + struct: PX4_SensorCombinedMsg_t + PX4_SENSOR_CORRECTION_MID: + msgID: 2812 + struct: PX4_SensorCorrectionMsg_t + PX4_SENSOR_GYRO_MID: + msgID: 2783 + struct: PX4_SensorGyroMsg_t + PX4_SENSOR_MAG_MID: + msgID: 2784 + struct: PX4_SensorMagMsg_t + PX4_SERVORAIL_STATUS_MID: + msgID: 2785 + struct: PX4_ServorailStatusMsg_t + PX4_SUBSYSTEM_INFO_MID: + msgID: 2786 + struct: PX4_SubsystemInfoMsg_t + PX4_SYSTEM_POWER_MID: + msgID: 2787 + struct: PX4_SystemPowerMsg_t + PX4_TECS_STATUS_MID: + msgID: 2788 + struct: PX4_TecsStatusMsg_t + PX4_TELEMETRY_STATUS_MID: + msgID: 2789 + struct: PX4_TelemetryStatusMsg_t + PX4_TEST_MOTOR_MID: + msgID: 2790 + struct: PX4_TestMotorMsg_t + PX4_TIME_OFFSET_MID: + msgID: 2791 + struct: PX4_TimeOffsetMsg_t + PX4_TRANSPONDER_REPORT_MID: + msgID: 2792 + struct: PX4_TransponderReportMsg_t + PX4_UAVCAN_PARAMETER_REQUEST_MID: + msgID: 2793 + struct: PX4_UavCanParameterRequestMsg_t + PX4_UAVCAN_PARAMETER_VALUE_MID: + msgID: 2794 + struct: PX4_UavCanParameterValueMsg_t + PX4_VEHICLE_ATTITUDE_MID: + msgID: 2795 + struct: PX4_VehicleAttitudeMsg_t + PX4_VEHICLE_ATTITUDE_SETPOINT_MID: + msgID: 2796 + struct: PX4_VehicleAttitudeSetpointMsg_t + PX4_VEHICLE_COMMAND_ACK_MID: + msgID: 2797 + struct: PX4_VehicleCommandAckMsg_t + PX4_VEHICLE_COMMAND_MID: + msgID: 2798 + struct: PX4_VehicleCommandMsg_t + PX4_VEHICLE_CONTROL_MODE_MID: + msgID: 2799 + struct: PX4_VehicleControlModeMsg_t + PX4_VEHICLE_FORCE_SETPOINT_MID: + msgID: 2800 + struct: PX4_VehicleForceSetpointMsg_t + PX4_VEHICLE_GLOBAL_POSITION_MID: + msgID: 2801 + struct: PX4_VehicleGlobalPositionMsg_t + PX4_VEHICLE_GLOBAL_VELOCITY_SETPOINT_MID: + msgID: 2802 + struct: PX4_VehicleGlobalVelocitySetpointMsg_t + PX4_VEHICLE_GPS_POSITION_MID: + msgID: 2803 + struct: PX4_VehicleGpsPositionMsg_t + PX4_VEHICLE_LAND_DETECTED_MID: + msgID: 2804 + struct: PX4_VehicleLandDetectedMsg_t + PX4_VEHICLE_LOCAL_POSITION_MID: + msgID: 2805 + struct: PX4_VehicleLocalPositionMsg_t + PX4_VEHICLE_LOCAL_POSITION_SETPOINT_MID: + msgID: 2806 + struct: PX4_VehicleLocalPositionSetpointMsg_t + PX4_VEHICLE_RATES_SETPOINT_MID: + msgID: 2807 + struct: PX4_VehicleRatesSetpointMsg_t + PX4_VEHICLE_STATUS_MID: + msgID: 2808 + struct: PX4_VehicleStatusMsg_t + PX4_VISION_POSITION_ESTIMATE_MID: + msgID: 2809 + struct: PX4_VisionPositionEstimateMsg_t + PX4_VTOL_VEHICLE_STATUS_MID: + msgID: 2810 + struct: PX4_VtolVehicleStatusMsg_t + PX4_WIND_ESTIMATE_MID: + msgID: 2811 + struct: PX4_WindEstimateMsg_t + qae: + app_name: QAE + commands: + QAE_CMD_MID: + commands: + Noop: + cc: 0 + struct: QAE_NoArgCmd_t + Reset: + cc: 1 + struct: QAE_NoArgCmd_t + msgID: 7069 + QAE_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: QAE_NoArgCmd_t + msgID: 7070 + QAE_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: QAE_NoArgCmd_t + msgID: 7071 + config: + AE_CMD_PIPE_DEPTH: + name: AE_CMD_PIPE_DEPTH + value: 4 + AE_CMD_PIPE_NAME: + name: AE_CMD_PIPE_NAME + value: AE_CMD_PIPE + AE_CONFIG_TABLE_FILENAME: + name: AE_CONFIG_TABLE_FILENAME + value: /cf/apps/ae_config.tbl + AE_DATA_PIPE_DEPTH: + name: AE_DATA_PIPE_DEPTH + value: 4 + AE_DATA_PIPE_NAME: + name: AE_DATA_PIPE_NAME + value: AE_DATA_PIPE + AE_MISSION_REV: + name: AE_MISSION_REV + value: 0 + AE_PARAM_PIPE_DEPTH: + name: AE_PARAM_PIPE_DEPTH + value: 4 + AE_PARAM_PIPE_NAME: + name: AE_PARAM_PIPE_NAME + value: AE_PARAM_PIPE + AE_SB_TIMEOUT: + name: AE_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + AE_SCH_PIPE_DEPTH: + name: AE_SCH_PIPE_DEPTH + value: 2 + AE_SCH_PIPE_NAME: + name: AE_SCH_PIPE_NAME + value: AE_SCH_PIPE + AE_SCH_PIPE_PEND_TIME: + name: AE_SCH_PIPE_PEND_TIME + value: 2000 + AE_SEND_HK_MID_MAX_MSG_COUNT: + name: AE_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + AE_STARTUP_TIMEOUT_MSEC: + name: AE_STARTUP_TIMEOUT_MSEC + value: 1000 + AE_WAKEUP_MID_MAX_MSG_COUNT: + name: AE_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/qae/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + QAE_CC_ERR_EID: + id: 9 + QAE_CFGTBL_GETADDR_ERR_EID: + id: 6 + QAE_CFGTBL_LOAD_ERR_EID: + id: 12 + QAE_CFGTBL_MANAGE_ERR_EID: + id: 5 + QAE_CFGTBL_REG_ERR_EID: + id: 11 + QAE_CFGTBL_VALIDATION_ERR_EID: + id: 16 + QAE_CMD_NOOP_EID: + id: 2 + QAE_DEGENERATE_ACC_ERR_EID: + id: 13 + QAE_DEGENERATE_MAG_ERR_EID: + id: 14 + QAE_INIT_INF_EID: + id: 1 + QAE_MSGID_ERR_EID: + id: 8 + QAE_MSGLEN_ERR_EID: + id: 10 + QAE_PIPE_INIT_ERR_EID: + id: 4 + QAE_RCVMSG_ERR_EID: + id: 7 + QAE_SUBSCRIBE_ERR_EID: + id: 3 + QAE_UPDATE_EST_ERR_EID: + id: 15 + long_name: Attitude Estimator + module_type: CFE_APP + perfids: + QAE_MAIN_TASK_PERF_ID: + id: null + short_name: qae + telemetry: + QAE_HK_TLM_MID: + msgID: 2972 + struct: QAE_HkTlm_t + rcin: + app_name: RCIN + commands: + RCIN_CMD_MID: + commands: + Noop: + cc: 0 + struct: RCIN_NoArgCmd_t + Reset: + cc: 1 + struct: RCIN_NoArgCmd_t + msgID: 7075 + RCIN_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: RCIN_NoArgCmd_t + msgID: 7076 + RCIN_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: RCIN_NoArgCmd_t + msgID: 7077 + config: + RCIN_CMD_PIPE_DEPTH: + name: RCIN_CMD_PIPE_DEPTH + value: 4 + RCIN_CMD_PIPE_NAME: + name: RCIN_CMD_PIPE_NAME + value: RCIN_CMD_PIPE + RCIN_CONFIG_TABLE_FILENAME: + name: RCIN_CONFIG_TABLE_FILENAME + value: /cf/apps/rcin_config.tbl + RCIN_CUSTOM_JOYSTICK_PATH: + name: RCIN_CUSTOM_JOYSTICK_PATH + value: /dev/input/futaba-t8j-0 + RCIN_DATA_PIPE_DEPTH: + name: RCIN_DATA_PIPE_DEPTH + value: 4 + RCIN_DATA_PIPE_NAME: + name: RCIN_DATA_PIPE_NAME + value: RCIN_DATA_PIPE + RCIN_MAX_EVENT_FILTERS: + name: RCIN_MAX_EVENT_FILTERS + value: 32 + RCIN_MISSION_REV: + name: RCIN_MISSION_REV + value: 0 + RCIN_SB_TIMEOUT: + name: RCIN_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + RCIN_SCH_PIPE_DEPTH: + name: RCIN_SCH_PIPE_DEPTH + value: 2 + RCIN_SCH_PIPE_NAME: + name: RCIN_SCH_PIPE_NAME + value: RCIN_SCH_PIPE + RCIN_SCH_PIPE_PEND_TIME: + name: RCIN_SCH_PIPE_PEND_TIME + value: 2000 + RCIN_SEND_HK_MID_MAX_MSG_COUNT: + name: RCIN_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + RCIN_STARTUP_TIMEOUT_MSEC: + name: RCIN_STARTUP_TIMEOUT_MSEC + value: 1000 + RCIN_WAKEUP_MID_MAX_MSG_COUNT: + name: RCIN_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/rcin/wh_design.yaml + events: + RCIN_CC_ERR_EID: + id: 9 + RCIN_CFGTBL_GETADDR_ERR_EID: + id: 6 + RCIN_CFGTBL_MANAGE_ERR_EID: + id: 5 + RCIN_CMD_NOOP_EID: + id: 2 + RCIN_INIT_ERR_EID: + id: 11 + RCIN_INIT_INF_EID: + id: 1 + RCIN_MSGID_ERR_EID: + id: 8 + RCIN_MSGLEN_ERR_EID: + id: 10 + RCIN_NOT_PUBLISHING_ERR_EID: + id: 13 + RCIN_PIPE_INIT_ERR_EID: + id: 4 + RCIN_PUBLISHING_INF_EID: + id: 12 + RCIN_RCVMSG_ERR_EID: + id: 7 + RCIN_SUBSCRIBE_ERR_EID: + id: 3 + long_name: Radio Control Input + module_type: CFE_APP + perfids: + RCIN_DEVICE_GET_PERF_ID: + id: null + RCIN_MAIN_TASK_PERF_ID: + id: null + short_name: rcin + telemetry: + RCIN_HK_TLM_MID: + msgID: 2978 + struct: RCIN_HkTlm_t + rgbled: + app_name: RGBLED + commands: + RGBLED_CMD_MID: + commands: + Noop: + cc: 0 + struct: RGBLED_NoArgCmd_t + Reset: + cc: 1 + struct: RGBLED_NoArgCmd_t + msgID: 7081 + RGBLED_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: RGBLED_NoArgCmd_t + msgID: 7082 + RGBLED_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: RGBLED_NoArgCmd_t + msgID: 7083 + config: + RGBLED_CMD_PIPE_DEPTH: + name: RGBLED_CMD_PIPE_DEPTH + value: 4 + RGBLED_CMD_PIPE_NAME: + name: RGBLED_CMD_PIPE_NAME + value: RGBLED_CMD_PIPE + RGBLED_CONFIG_TABLE_FILENAME: + name: RGBLED_CONFIG_TABLE_FILENAME + value: /cf/apps/rgbled_config.tbl + RGBLED_DATA_PIPE_DEPTH: + name: RGBLED_DATA_PIPE_DEPTH + value: 4 + RGBLED_DATA_PIPE_NAME: + name: RGBLED_DATA_PIPE_NAME + value: RGBLED_DATA_PIPE + RGBLED_MISSION_REV: + name: RGBLED_MISSION_REV + value: 0 + RGBLED_SB_TIMEOUT: + name: RGBLED_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + RGBLED_SCH_PIPE_DEPTH: + name: RGBLED_SCH_PIPE_DEPTH + value: 2 + RGBLED_SCH_PIPE_NAME: + name: RGBLED_SCH_PIPE_NAME + value: RGBLED_SCH_PIPE + RGBLED_SCH_PIPE_PEND_TIME: + name: RGBLED_SCH_PIPE_PEND_TIME + value: 2000 + RGBLED_SELFTEST_TASK_FLAGS: + name: RGBLED_SELFTEST_TASK_FLAGS + value: OS_ENABLE_CORE_0 + RGBLED_SEND_HK_MID_MAX_MSG_COUNT: + name: RGBLED_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + RGBLED_STARTUP_TIMEOUT_MSEC: + name: RGBLED_STARTUP_TIMEOUT_MSEC + value: 1000 + RGBLED_WAKEUP_MID_MAX_MSG_COUNT: + name: RGBLED_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/rgbled/wh_design.yaml + events: + RGBLED_CC_ERR_EID: + id: 7 + RGBLED_CMD_ERR_EID: + id: 9 + RGBLED_CMD_NOOP_EID: + id: 2 + RGBLED_INIT_ERR_EID: + id: 10 + RGBLED_INIT_INF_EID: + id: 1 + RGBLED_MSGID_ERR_EID: + id: 6 + RGBLED_MSGLEN_ERR_EID: + id: 8 + RGBLED_PIPE_INIT_ERR_EID: + id: 4 + RGBLED_RCVMSG_ERR_EID: + id: 5 + RGBLED_SUBSCRIBE_ERR_EID: + id: 3 + long_name: RGB LED Control + module_type: CFE_APP + perfids: + RGBLED_MAIN_TASK_PERF_ID: + id: null + RGBLED_RECEIVE_PERF_ID: + id: null + RGBLED_SEND_PERF_ID: + id: null + short_name: rgbled + telemetry: + RGBLED_HK_TLM_MID: + msgID: 2984 + struct: RGBLED_HkTlm_t + sbn: + app_name: SBN + commands: + SBN_CMD_MID: + commands: + Noop: + cc: 0 + struct: SBN_NoArgCmd_t + Reset: + cc: 1 + struct: SBN_NoArgCmd_t + SendHK: + cc: 10 + struct: SBN_NoArgCmd_t + Wakeup: + cc: 100 + struct: SBN_NoArgCmd_t + msgID: 7087 + SBN_WAKEUP_MID: + msgID: 7088 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/sbn/wh_design.yaml + events: + PQ_BACKUP_TABLE_ERR_EID: + id: 140 + PQ_BACKUP_TABLE_INF_EID: + id: 137 + PQ_CHANNEL_LOCK_MUTEX_ERR_EID: + id: 132 + PQ_CHANNEL_TEARDOWN_ERR_EID: + id: 131 + PQ_CHANNEL_UNLOCK_MUTEX_ERR_EID: + id: 133 + PQ_CMD_ADD_MSG_FLOW_ERR_EID: + id: 115 + PQ_CMD_REMOVE_MSG_FLOW_ERR_EID: + id: 116 + PQ_CONFIG_ADDR_ERR_EID: + id: 103 + PQ_CONFIG_MANAGE_ERR_EID: + id: 104 + PQ_CONFIG_PROCESS_CONFIG_TBL_ERR_EID: + id: 134 + PQ_CONFIG_TABLE_CCSDS_VER_INVALID_EID: + id: 126 + PQ_CONFIG_TABLE_ERR_EID: + id: 105 + PQ_CONFIG_TABLE_MSG_FLOW_MSG_LIMIT_ERR_EID: + id: 127 + PQ_CONFIG_TABLE_MSG_FLOW_PQ_ID_ERR_EID: + id: 128 + PQ_CONFIG_TABLE_NO_MSG_FLOW_INF_EID: + id: 129 + PQ_CONFIG_TABLE_NO_PQUEUES_ERR_EID: + id: 124 + PQ_CONFIG_TABLE_NULL_PTR_EID: + id: 120 + PQ_CONFIG_TABLE_PQUEUE_MSG_LIMIT_ERR_EID: + id: 123 + PQ_CONFIG_TABLE_PQUEUE_QTYPE_ERR_EID: + id: 122 + PQ_CONFIG_TABLE_PQUEUE_STATE_ERR_EID: + id: 121 + PQ_CONFIG_TABLE_SHDR_ABSENT_EID: + id: 125 + PQ_CR_POOL_ERR_EID: + id: 107 + PQ_INIT_APP_ERR_EID: + id: 101 + PQ_INIT_CONFIG_ERR_EID: + id: 102 + PQ_MF_MSG_ID_ERR_EID: + id: 139 + PQ_MSG_DROP_FROM_FLOW_DBG_EID: + id: 106 + PQ_MSG_FLOW_INFO_EID: + id: 108 + PQ_MSG_FLOW_INFO_ERR_EID: + id: 109 + PQ_MSG_FLOW_MISSING_TBL_ERR_EID: + id: 110 + PQ_NULL_POINTER_ERR_EID: + id: 141 + PQ_OSQUEUE_GET_ERROR_EID: + id: 136 + PQ_OSQUEUE_PUT_ERROR_EID: + id: 135 + PQ_OUT_CH_INFO_EID: + id: 113 + PQ_OUT_CH_INFO_ERR_EID: + id: 114 + PQ_PQUEUE_CREATE_ERR_EID: + id: 118 + PQ_PQUEUE_INFO_EID: + id: 111 + PQ_PQUEUE_INFO_ERR_EID: + id: 112 + PQ_PQUEUE_MISSING_TBL_ERR_EID: + id: 117 + PQ_PQUEUE_TEARDOWN_ERR_EID: + id: 119 + PQ_PUT_POOL_ERR_EID: + id: 130 + PQ_TLM_MSG_LEN_ERR_EID: + id: 138 + SBN_CMD_EID: + id: 7 + SBN_DEBUG_EID: + id: 11 + SBN_FILE_EID: + id: 4 + SBN_INIT_EID: + id: 2 + SBN_MSG_EID: + id: 3 + SBN_PEERTASK_EID: + id: 10 + SBN_PEER_EID: + id: 5 + SBN_PROTO_EID: + id: 6 + SBN_REMAP_EID: + id: 9 + SBN_SB_EID: + id: 1 + SBN_SUB_EID: + id: 8 + long_name: Software Bus Network + module_type: CFE_APP + short_name: sbn + telemetry: + SBN_MODULE_HK_TLM_MID: + msgID: 2996 + struct: PQ_HkTlm_t + SBN_TLM_MID: + msgID: 2990 + sbnd: + app_name: SBND + commands: + SBND_CMD_MID: + commands: + AddCommand: + cc: 2 + struct: SBND_AddCmd_t + Noop: + cc: 0 + struct: SBND_NoArgCmd_t + RemoveCommand: + cc: 3 + struct: SBND_RemoveCmd_t + Reset: + cc: 1 + struct: SBND_NoArgCmd_t + msgID: 7094 + SBND_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: SBND_NoArgCmd_t + msgID: 7095 + SBND_WAKEUP_MID: + commands: + Measure: + cc: 0 + struct: SBND_NoArgCmd_t + msgID: 7088 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/../private/apps/sbnd/wh_design.yaml + events: + SBND_CC_ERR_EID: + id: 9 + SBND_CFGTBL_GETADDR_ERR_EID: + id: 6 + SBND_CFGTBL_LOAD_ERR_EID: + id: 12 + SBND_CFGTBL_MANAGE_ERR_EID: + id: 5 + SBND_CFGTBL_REG_ERR_EID: + id: 11 + SBND_CMD_NOOP_EID: + id: 2 + SBND_DELETE_PIPE_ERR_EID: + id: 19 + SBND_INIT_INF_EID: + id: 1 + SBND_MID_NOT_FOUND_ERR_EID: + id: 17 + SBND_MSGID_ERR_EID: + id: 8 + SBND_MSGLEN_ERR_EID: + id: 10 + SBND_PIPE_INIT_ERR_EID: + id: 4 + SBND_RCVMSG_ERR_EID: + id: 7 + SBND_RECV_CUSTOM_ERR_EID: + id: 14 + SBND_SEND_CUSTOM_ERR_EID: + id: 13 + SBND_SUBSCRIBE_ERR_EID: + id: 3 + SBND_TABLE_FULL_ERR_EID: + id: 16 + SBND_TABLE_MODIFY_ERR_EID: + id: 15 + SBND_UNSUBSCRIBE_ERR_EID: + id: 18 + long_name: Software Bus Network Deterministic + perfids: + SBND_MAIN_TASK_PERF_ID: + id: 114 + short_name: sbnd + telemetry: + SBND_HK_TLM_MID: + msgID: 2997 + struct: SBND_HkTlm_t + sc: + app_name: SC + commands: + SC_1HZ_WAKEUP_MID: + commands: + 1HzWakeUp: + cc: 0 + struct: SC_NoArgsCmd_t + msgID: 6803 + SC_CMD_MID: + commands: + AppendAts: + cc: 11 + struct: SC_AppendAtsCmd_t + ContinueAtsOnFailure: + cc: 10 + struct: SC_SetContinueAtsOnFailureCmd_t + DisableRts: + cc: 6 + struct: SC_RtsCmd_t + DisableRtsGroup: + cc: 15 + struct: SC_RtsGrpCmd_t + EnableRts: + cc: 7 + struct: SC_RtsCmd_t + EnableRtsGroup: + cc: 16 + struct: SC_RtsGrpCmd_t + JumpAts: + cc: 9 + struct: SC_JumpAtsCmd_t + ManageTable: + cc: 12 + struct: SC_NoArgsCmd_t + Noop: + cc: 0 + struct: SC_NoArgsCmd_t + Reset: + cc: 1 + struct: SC_NoArgsCmd_t + StartAts: + cc: 2 + struct: SC_StartAtsCmd_t + StartRts: + cc: 4 + struct: SC_RtsCmd_t + StartRtsGroup: + cc: 13 + struct: SC_RtsGrpCmd_t + StopAts: + cc: 3 + struct: SC_NoArgsCmd_t + StopRts: + cc: 5 + struct: SC_RtsCmd_t + StopRtsGroup: + cc: 14 + struct: SC_RtsGrpCmd_t + SwitchAts: + cc: 8 + struct: SC_NoArgsCmd_t + msgID: 6804 + SC_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: SC_NoArgsCmd_t + msgID: 6805 + config: + SC_APPENDINFO_TABLE_NAME: + name: SC_APPENDINFO_TABLE_NAME + value: APPINF_TBL + SC_APPEND_BUFF_SIZE: + name: SC_APPEND_BUFF_SIZE + value: (SC_ATS_BUFF_SIZE / 2) + SC_APPEND_FILE_NAME: + name: SC_APPEND_FILE_NAME + value: /cf/apps/sc_append.tbl + SC_APPEND_TABLE_NAME: + name: SC_APPEND_TABLE_NAME + value: APPEND_TBL + SC_ATSINFO_TABLE_NAME: + name: SC_ATSINFO_TABLE_NAME + value: ATSINF_TBL + SC_ATS_BUFF_SIZE: + name: SC_ATS_BUFF_SIZE + value: 8000 + SC_ATS_CMD_STAT_TABLE_NAME: + name: SC_ATS_CMD_STAT_TABLE_NAME + value: ATSCMD_TBL + SC_ATS_CTRL_TABLE_NAME: + name: SC_ATS_CTRL_TABLE_NAME + value: ATPCTR_TBL + SC_ATS_FILE_NAME: + name: SC_ATS_FILE_NAME + value: /cf/apps/sc_ats + SC_ATS_TABLE_NAME: + name: SC_ATS_TABLE_NAME + value: ATS_TBL + SC_CONT_ON_FAILURE_START: + name: SC_CONT_ON_FAILURE_START + value: true + SC_ENABLE_GROUP_COMMANDS: + name: SC_ENABLE_GROUP_COMMANDS + value: true + SC_LAST_RTS_WITH_EVENTS: + name: SC_LAST_RTS_WITH_EVENTS + value: 20 + SC_MAX_ATS_CMDS: + name: SC_MAX_ATS_CMDS + value: 1000 + SC_MAX_CMDS_PER_SEC: + name: SC_MAX_CMDS_PER_SEC + value: 8 + SC_MISSION_REV: + name: SC_MISSION_REV + value: 0 + SC_NUMBER_OF_RTS: + name: SC_NUMBER_OF_RTS + value: 64 + SC_PACKET_MAX_SIZE: + name: SC_PACKET_MAX_SIZE + value: 250 + SC_PACKET_MIN_SIZE: + name: SC_PACKET_MIN_SIZE + value: 8 + SC_PIPE_DEPTH: + name: SC_PIPE_DEPTH + value: 12 + SC_RTP_CTRL_TABLE_NAME: + name: SC_RTP_CTRL_TABLE_NAME + value: RTPCTR_TBL + SC_RTSINFO_TABLE_NAME: + name: SC_RTSINFO_TABLE_NAME + value: RTSINF_TBL + SC_RTS_BUFF_SIZE: + name: SC_RTS_BUFF_SIZE + value: 150 + SC_RTS_FILE_NAME: + name: SC_RTS_FILE_NAME + value: /cf/apps/sc_rts + SC_RTS_TABLE_NAME: + name: SC_RTS_TABLE_NAME + value: RTS_TBL + SC_TIME_TO_USE: + name: SC_TIME_TO_USE + value: SC_USE_CFE_TIME + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/sc/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + SC_APPEND_CMD_ARG_ERR_EID: + id: 99 + SC_APPEND_CMD_FIT_ERR_EID: + id: 102 + SC_APPEND_CMD_INF_EID: + id: 98 + SC_APPEND_CMD_SRC_ERR_EID: + id: 101 + SC_APPEND_CMD_TGT_ERR_EID: + id: 100 + SC_APP_EXIT_ERR_EID: + id: 1 + SC_ATS_ABT_ERR_EID: + id: 45 + SC_ATS_CHKSUM_ERR_EID: + id: 44 + SC_ATS_COMPL_INF_EID: + id: 87 + SC_ATS_DIST_ERR_EID: + id: 46 + SC_ATS_ERR_SKP_DBG_EID: + id: 30 + SC_ATS_INLINE_SWTCH_INF_EID: + id: 37 + SC_ATS_INLINE_SWTCH_NOT_LDED_ERR_EID: + id: 38 + SC_ATS_MSMTCH_ERR_EID: + id: 47 + SC_ATS_SERVICE_SWITCH_IDLE_ERR_EID: + id: 36 + SC_ATS_SERVICE_SWTCH_INF_EID: + id: 34 + SC_ATS_SKP_ALL_ERR_EID: + id: 29 + SC_ATS_SKP_ERR_EID: + id: 48 + SC_CONT_CMD_DEB_EID: + id: 43 + SC_CONT_CMD_ERR_EID: + id: 42 + SC_DISABLE_RTS_DEB_EID: + id: 80 + SC_DISRTSGRP_CMD_ERR_EID: + id: 120 + SC_DISRTSGRP_CMD_INF_EID: + id: 119 + SC_DISRTS_CMD_ERR_EID: + id: 81 + SC_ENABLE_RTS_DEB_EID: + id: 82 + SC_ENARTSGRP_CMD_ERR_EID: + id: 122 + SC_ENARTSGRP_CMD_INF_EID: + id: 121 + SC_ENARTS_CMD_ERR_EID: + id: 83 + SC_GET_ADDRESS_APPEND_ERR_EID: + id: 92 + SC_GET_ADDRESS_APPEND_INFO_ERR_EID: + id: 91 + SC_GET_ADDRESS_ATS_CMD_STAT_ERR_EID: + id: 69 + SC_GET_ADDRESS_ATS_CTRL_BLCK_ERR_EID: + id: 68 + SC_GET_ADDRESS_ATS_ERR_EID: + id: 71 + SC_GET_ADDRESS_ATS_INFO_ERR_EID: + id: 67 + SC_GET_ADDRESS_RTS_CTRL_BLCK_ERR_EID: + id: 66 + SC_GET_ADDRESS_RTS_ERR_EID: + id: 70 + SC_GET_ADDRESS_RTS_INFO_ERR_EID: + id: 65 + SC_INIT_INF_EID: + id: 9 + SC_INIT_SB_CREATE_ERR_EID: + id: 3 + SC_INIT_SB_SUBSCRIBE_1HZ_ERR_EID: + id: 5 + SC_INIT_SB_SUBSCRIBE_CMD_ERR_EID: + id: 6 + SC_INIT_SB_SUBSCRIBE_HK_ERR_EID: + id: 4 + SC_INVLD_CMD_ERR_EID: + id: 64 + SC_JUMPATS_CMD_NOT_ACT_ERR_EID: + id: 41 + SC_JUMPATS_CMD_STOPPED_ERR_EID: + id: 39 + SC_JUMP_ATS_INF_EID: + id: 40 + SC_JUMP_ATS_SKIPPED_DBG_EID: + id: 88 + SC_LEN_ERR_EID: + id: 2 + SC_MID_ERR_EID: + id: 63 + SC_NOOP_INF_EID: + id: 52 + SC_REGISTER_APPEND_INFO_TABLE_ERR_EID: + id: 90 + SC_REGISTER_APPEND_TBL_ERR_EID: + id: 93 + SC_REGISTER_ATS_CMD_STATUS_TABLE_ERR_EID: + id: 20 + SC_REGISTER_ATS_CTRL_BLK_TABLE_ERR_EI: + id: 19 + SC_REGISTER_ATS_INFO_TABLE_ERR_EID: + id: 18 + SC_REGISTER_ATS_TBL_ERR_EID: + id: 11 + SC_REGISTER_RTS_CTRL_BLK_TABLE_ERR_EID: + id: 17 + SC_REGISTER_RTS_INFO_TABLE_ERR_EID: + id: 16 + SC_REGISTER_RTS_TBL_ERR_EID: + id: 10 + SC_RESET_DEB_EID: + id: 51 + SC_RTS_CHKSUM_ERR_EID: + id: 50 + SC_RTS_CMD_LNGTH_ERR_EID: + id: 85 + SC_RTS_COMPL_INF_EID: + id: 86 + SC_RTS_DIST_ERR_EID: + id: 49 + SC_RTS_INVLD_MID_ERR_EID: + id: 59 + SC_RTS_LEN_BUFFER_ERR_EID: + id: 61 + SC_RTS_LEN_ERR_EID: + id: 60 + SC_RTS_LEN_TOO_LONG_ERR_EID: + id: 62 + SC_RTS_LNGTH_ERR_EID: + id: 84 + SC_RTS_LOAD_COUNT_INFO_EID: + id: 21 + SC_RTS_START_INF_EID: + id: 73 + SC_SERVICE_SWITCH_ATS_CMD_LDED_ERR_EID: + id: 35 + SC_STARTATS_CMD_INF_EID: + id: 23 + SC_STARTATS_CMD_INVLD_ID_ERR_EID: + id: 26 + SC_STARTATS_CMD_NOT_IDLE_ERR_EID: + id: 25 + SC_STARTATS_CMD_NOT_LDED_ERR_EID: + id: 24 + SC_STARTRTSGRP_CMD_ERR_EID: + id: 116 + SC_STARTRTSGRP_CMD_INF_EID: + id: 115 + SC_STARTRTS_CMD_DBG_EID: + id: 72 + SC_STARTRTS_CMD_DISABLED_ERR_EID: + id: 76 + SC_STARTRTS_CMD_INVALID_ERR_EID: + id: 77 + SC_STARTRTS_CMD_INVLD_LEN_ERR_EID: + id: 74 + SC_STARTRTS_CMD_NOT_LDED_ERR_EID: + id: 75 + SC_STOPATS_CMD_INF_EID: + id: 27 + SC_STOPATS_NO_ATS_INF_EID: + id: 28 + SC_STOPRTSGRP_CMD_ERR_EID: + id: 118 + SC_STOPRTSGRP_CMD_INF_EID: + id: 117 + SC_STOPRTS_CMD_ERR_EID: + id: 79 + SC_STOPRTS_CMD_INF_EID: + id: 78 + SC_SWITCH_ATS_CMD_IDLE_ERR_EID: + id: 33 + SC_SWITCH_ATS_CMD_INF_EID: + id: 31 + SC_SWITCH_ATS_CMD_NOT_LDED_ERR_EID: + id: 32 + SC_TABLE_MANAGE_APPEND_ERR_EID: + id: 114 + SC_TABLE_MANAGE_ATS_ERR_EID: + id: 113 + SC_TABLE_MANAGE_ID_ERR_EID: + id: 111 + SC_TABLE_MANAGE_RTS_ERR_EID: + id: 112 + SC_UPDATE_APPEND_EID: + id: 97 + SC_VERIFY_ATS_BUF_ERR_EID: + id: 107 + SC_VERIFY_ATS_DUP_ERR_EID: + id: 109 + SC_VERIFY_ATS_EID: + id: 103 + SC_VERIFY_ATS_END_ERR_EID: + id: 105 + SC_VERIFY_ATS_MPT_ERR_EID: + id: 110 + SC_VERIFY_ATS_NUM_ERR_EID: + id: 104 + SC_VERIFY_ATS_PKT_ERR_EID: + id: 106 + long_name: Stored Command + module_type: CFE_APP + msg_def_overrides: + - enumerations: + ATS_A: 1 + ATS_B: 2 + NO_ATS: 0 + member: AtsNumber + parent: SC_HkTlm_t + type: enumeration + - enumerations: + EMPTY: 0 + EXECUTED: 3 + EXECUTING: 5 + FAILED_CHECKSUM: 6 + FAILED_DISTRIB: 7 + IDLE: 2 + LOADED: 1 + SKIPPED: 4 + STARTING: 8 + member: AtpState + parent: SC_HkTlm_t + type: enumeration + perfids: + SC_APPMAIN_PERF_ID: + id: 59 + short_name: sc + telemetry: + SC_HK_TLM_MID: + msgID: 2706 + struct: SC_HkTlm_t + sch: + app_name: SCH + code_templates: + msgids: + output: sch_msgids.h + template: fsw/platform_inc/sch_msgids.j2 + perfids: + output: sch_perfids.h + template: fsw/mission_inc/sch_perfids.j2 + platform_cfg: + output: sch_platform_cfg.h + template: fsw/platform_inc/sch_platform_cfg.j2 + commands: + SCH_CMD_MID: + commands: + Disable: + cc: 3 + struct: SCH_EntryCmd_t + DisableGroup: + cc: 5 + struct: SCH_GroupCmd_t + Enable: + cc: 2 + struct: SCH_EntryCmd_t + EnableGroup: + cc: 4 + struct: SCH_GroupCmd_t + EnableSync: + cc: 6 + struct: SCH_NoArgsCmd_t + Noop: + cc: 0 + struct: SCH_NoArgsCmd_t + Reset: + cc: 1 + struct: SCH_NoArgsCmd_t + SendDiag: + cc: 7 + struct: SCH_NoArgsCmd_t + msgID: 6809 + SCH_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6810 + config: + SCH_AD_CHILD_TASK_FLAGS: + name: SCH_AD_CHILD_TASK_FLAGS + value: OS_ENABLE_CORE_0 + SCH_AD_CHILD_TASK_PRIORITY: + name: SCH_AD_CHILD_TASK_PRIORITY + value: 10 + SCH_AD_PIPE_DEPTH: + name: SCH_AD_PIPE_DEPTH + value: 3 + SCH_DEADLINES_PER_SLOT: + name: SCH_DEADLINES_PER_SLOT + value: 5 + SCH_ENTRIES_PER_SLOT: + name: SCH_ENTRIES_PER_SLOT + value: 5 + SCH_LIB_DIS_CTR: + name: SCH_LIB_DIS_CTR + value: 0 + SCH_LIB_PRESENCE: + name: SCH_LIB_PRESENCE + value: 1 + SCH_MAX_LAG_COUNT: + name: SCH_MAX_LAG_COUNT + value: (SCH_TOTAL_SLOTS / 2) + SCH_MAX_MESSAGES: + name: SCH_MAX_MESSAGES + value: 128 + SCH_MAX_MSG_WORDS: + name: SCH_MAX_MSG_WORDS + value: 64 + SCH_MAX_NOISY_MAJORF: + name: SCH_MAX_NOISY_MAJORF + value: 2 + SCH_MAX_SLOTS_PER_WAKEUP: + name: SCH_MAX_SLOTS_PER_WAKEUP + value: 5 + SCH_MDT_MAX_MSG_ID: + name: SCH_MDT_MAX_MSG_ID + value: CFE_SB_HIGHEST_VALID_MSGID + SCH_MDT_MIN_MSG_ID: + name: SCH_MDT_MIN_MSG_ID + value: 0 + SCH_MESSAGE_FILENAME: + name: SCH_MESSAGE_FILENAME + value: /cf/apps/sch_def_msgtbl.tbl + SCH_MICROS_PER_MAJOR_FRAME: + name: SCH_MICROS_PER_MAJOR_FRAME + value: 1000000 + SCH_MISSION_REV: + name: SCH_MISSION_REV + value: 0 + SCH_PIPE_DEPTH: + name: SCH_PIPE_DEPTH + value: 12 + SCH_SCHEDULE_FILENAME: + name: SCH_SCHEDULE_FILENAME + value: /cf/apps/sch_def_schtbl.tbl + SCH_STARTUP_PERIOD: + name: SCH_STARTUP_PERIOD + value: (5*SCH_MICROS_PER_MAJOR_FRAME) + SCH_STARTUP_SYNC_TIMEOUT: + name: SCH_STARTUP_SYNC_TIMEOUT + value: 50000 + SCH_SYNC_SLOT_DRIFT_WINDOW: + name: SCH_SYNC_SLOT_DRIFT_WINDOW + value: 5000 + SCH_TOTAL_SLOTS: + name: SCH_TOTAL_SLOTS + value: 100 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/sch/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + SCH_ACQ_PTR_ERR_EID: + id: 11 + SCH_AD_CHILD_TASK_CREATE_ERR_EID: + id: 66 + SCH_AD_RCVD_UNEXPECTED_MSG_ERR_EID: + id: 67 + SCH_APP_EXIT_EID: + id: 2 + SCH_CC_ERR_EID: + id: 58 + SCH_CMD_LEN_ERR_EID: + id: 60 + SCH_CORRUPTION_EID: + id: 19 + SCH_CR_PIPE_ERR_EID: + id: 3 + SCH_DEADLINE_REG_ERR_EID: + id: 61 + SCH_DISABLE_CMD_ARG_ERR_EID: + id: 52 + SCH_DISABLE_CMD_EID: + id: 43 + SCH_DISABLE_CMD_ENTRY_ERR_EID: + id: 53 + SCH_DIS_GRP_CMD_EID: + id: 45 + SCH_DIS_GRP_CMD_ERR_EID: + id: 56 + SCH_DIS_GRP_NOT_FOUND_ERR_EID: + id: 57 + SCH_ENABLE_CMD_ARG_ERR_EI: + id: 50 + SCH_ENABLE_CMD_EID: + id: 42 + SCH_ENABLE_CMD_ENTRY_ERR_EID: + id: 51 + SCH_ENA_GRP_CMD_EID: + id: 44 + SCH_ENA_GRP_CMD_ERR_EID: + id: 54 + SCH_ENA_GRP_NOT_FOUND_ERR_EID: + id: 55 + SCH_ENA_SYNC_CMD_EID: + id: 46 + SCH_INITSTATS_INF_EID: + id: 1 + SCH_MAJOR_FRAME_SUB_ERR_EID: + id: 14 + SCH_MDT_LOAD_ERR_EID: + id: 10 + SCH_MDT_REG_ERR_EID: + id: 8 + SCH_MD_ERR_EID: + id: 59 + SCH_MESSAGE_TABLE_EID: + id: 33 + SCH_MESSAGE_TBL_ERR_EID: + id: 32 + SCH_MINOR_FRAME_TIMER_ACC_WARN_EID: + id: 13 + SCH_MINOR_FRAME_TIMER_CREATE_ERR_EID: + id: 12 + SCH_MULTI_SLOTS_EID: + id: 18 + SCH_MUTEX_CREATE_ERR_EID: + id: 65 + SCH_NOISY_MAJOR_FRAME_ERR_EID: + id: 21 + SCH_NOOP_CMD_EID: + id: 40 + SCH_PACKET_SEND_EID: + id: 20 + SCH_RESET_CMD_EID: + id: 41 + SCH_SAME_SLOT_EID: + id: 16 + SCH_SCHEDULE_TABLE_EID: + id: 31 + SCH_SCHEDULE_TBL_ERR_EID: + id: 30 + SCH_SDT_LOAD_ERR_EID: + id: 9 + SCH_SDT_REG_ERR_EID: + id: 7 + SCH_SEM_CREATE_ERR_EID: + id: 15 + SCH_SEND_DIAG_CMD_EID: + id: 47 + SCH_SKIPPED_SLOTS_EID: + id: 17 + SCH_SLOT_DEADLINE_FULL_ERR_EID: + id: 62 + SCH_SUB_ACTIVITY_DONE_REQ_ERR_EID: + id: 63 + SCH_SUB_GND_CMD_ERR_EID: + id: 5 + SCH_SUB_HK_REQ_ERR_EID: + id: 4 + SCH_UNEXPECTED_ACT_DONE_ERR_EID: + id: 64 + ide: + plugin: ide/SchPlugin.jar + view: + - dbPath: tables + viewClass: com.windhoverlabs.ide.module.sch.SchTableEditor + long_name: Scheduler + module_type: CFE_APP + msg_def_overrides: + - enumerations: + FULLY_SYNCED: 7 + MAJOR: 4 + MAJOR_AND_MINOR: 5 + MAJOR_AND_PENDING: 6 + MINOR: 1 + MINOR_AND_PENDING: 3 + NONE: 0 + PENDING: 2 + member: SyncToMET + parent: SCH_HkPacket_t + type: enumeration + - enumerations: + CFE_TIME: 1 + MINOR_FRAME_TIMER: 2 + NONE: 0 + member: MajorFrameSource + parent: SCH_HkPacket_t + type: enumeration + perfids: + SCH_APPMAIN_PERF_ID: + id: 60 + short_name: sch + tables: + _MSG_DEFS: + default: sch_def_msgtbl.tbl + output: sch_def_msgtbl.c + template: fsw/tables/sch_def_msgtbl.j2 + title: Message Definitions + _SCHED_DEF: + default: sch_def_schtbl.tbl + output: sch_def_schtbl.c + template: fsw/tables/sch_def_schtbl.j2 + title: Schedule Definitions + telemetry: + SCH_ACTIVITY_DONE_MID: + msgID: 2710 + struct: SCH_ActivityDoneMsg_t + SCH_DIAG_TLM_MID: + msgID: 2711 + struct: SCH_DiagPacket_t + SCH_HK_TLM_MID: + msgID: 2712 + struct: SCH_HkPacket_t + sed: + app_name: SED + commands: + SED_CMD_MID: + commands: + ArmWatchdogTest: + cc: 6 + struct: SED_NoArgCmd_t + DisableWatchdog: + cc: 5 + struct: SED_NoArgCmd_t + EnableWatchdog: + cc: 4 + struct: SED_NoArgCmd_t + EngageWatchdogTest: + cc: 7 + struct: SED_NoArgCmd_t + Noop: + cc: 0 + struct: SED_NoArgCmd_t + PlayTone: + cc: 8 + struct: SED_PlayToneCmd_t + Reset: + cc: 1 + struct: SED_NoArgCmd_t + SendDiag: + cc: 2 + struct: SED_NoArgCmd_t + SetCalibration: + cc: 3 + struct: SED_SetCalibrationCmd_t + msgID: 7027 + SED_MEASURE_MID: + commands: + Measure: + cc: 0 + struct: SED_NoArgCmd_t + msgID: 7028 + SED_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: SED_NoArgCmd_t + msgID: 7029 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/../private/apps/sed/wh_design.yaml + events: + SED_CALIBRATE_ERR_EID: + id: 18 + SED_CALIBRATE_INF_EID: + id: 17 + SED_CC_ERR_EID: + id: 9 + SED_CFGTBL_GETADDR_ERR_EID: + id: 6 + SED_CFGTBL_LOAD_ERR_EID: + id: 12 + SED_CFGTBL_MANAGE_ERR_EID: + id: 5 + SED_CFGTBL_REG_ERR_EID: + id: 11 + SED_CMD_NOOP_EID: + id: 2 + SED_DEVICE_ERR_EID: + id: 19 + SED_EVENT_DROPPED_INF_EID: + id: 20 + SED_INIT_ERR_EID: + id: 14 + SED_INIT_INF_EID: + id: 1 + SED_MSGID_ERR_EID: + id: 8 + SED_MSGLEN_ERR_EID: + id: 10 + SED_PIPE_INIT_ERR_EID: + id: 4 + SED_RCVMSG_ERR_EID: + id: 7 + SED_READ_ERR_EID: + id: 15 + SED_SUBSCRIBE_ERR_EID: + id: 3 + SED_UNINIT_ERR_EID: + id: 13 + SED_VALIDATE_ERR_EID: + id: 16 + long_name: Sensor Effector Domain + perfids: + SED_MAIN_TASK_PERF_ID: + id: 111 + short_name: sed + telemetry: + SED_DIAG_TLM_MID: + msgID: 2929 + struct: SED_DiagPacket_t + SED_HK_TLM_MID: + msgID: 2930 + struct: SED_HkTlm_t + sedlib: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + sens: + app_name: SENS + commands: + SENS_CMD_MID: + commands: + Noop: + cc: 0 + struct: SENS_NoArgCmd_t + Reset: + cc: 1 + struct: SENS_NoArgCmd_t + msgID: 7097 + SENS_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: SENS_NoArgCmd_t + msgID: 7098 + SENS_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: SENS_NoArgCmd_t + msgID: 7099 + config: + SENS_CMD_PIPE_DEPTH: + name: SENS_CMD_PIPE_DEPTH + value: 4 + SENS_CMD_PIPE_NAME: + name: SENS_CMD_PIPE_NAME + value: SENS_CMD_PIPE + SENS_CONFIG_TABLE_FILENAME: + name: SENS_CONFIG_TABLE_FILENAME + value: /cf/apps/sens_config.tbl + SENS_DATA_PIPE_DEPTH: + name: SENS_DATA_PIPE_DEPTH + value: 4 + SENS_DATA_PIPE_NAME: + name: SENS_DATA_PIPE_NAME + value: SENS_DATA_PIPE + SENS_MAX_ACC_TIME_DELTA: + name: SENS_MAX_ACC_TIME_DELTA + value: 25 + SENS_MAX_BARO_TIME_DELTA: + name: SENS_MAX_BARO_TIME_DELTA + value: 100 + SENS_MAX_GYRO_TIME_DELTA: + name: SENS_MAX_GYRO_TIME_DELTA + value: 25 + SENS_MAX_MAG_TIME_DELTA: + name: SENS_MAX_MAG_TIME_DELTA + value: 25 + SENS_MISSION_REV: + name: SENS_MISSION_REV + value: 0 + SENS_SB_TIMEOUT: + name: SENS_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + SENS_SCH_PIPE_DEPTH: + name: SENS_SCH_PIPE_DEPTH + value: 10 + SENS_SCH_PIPE_NAME: + name: SENS_SCH_PIPE_NAME + value: SENS_SCH_PIPE + SENS_SCH_PIPE_PEND_TIME: + name: SENS_SCH_PIPE_PEND_TIME + value: 2000 + SENS_SEND_HK_MID_MAX_MSG_COUNT: + name: SENS_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + SENS_STARTUP_TIMEOUT_MSEC: + name: SENS_STARTUP_TIMEOUT_MSEC + value: 1000 + SENS_WAKEUP_MID_MAX_MSG_COUNT: + name: SENS_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/sens/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + ENS_CFGTBL_LOAD_ERR_EID: + id: 12 + SENS_CC_ERR_EID: + id: 9 + SENS_CFGTBL_GETADDR_ERR_EID: + id: 6 + SENS_CFGTBL_MANAGE_ERR_EID: + id: 5 + SENS_CFGTBL_REG_ERR_EID: + id: 11 + SENS_CMD_NOOP_EID: + id: 2 + SENS_INIT_INF_EID: + id: 1 + SENS_MSGID_ERR_EID: + id: 8 + SENS_MSGLEN_ERR_EID: + id: 10 + SENS_PIPE_INIT_ERR_EID: + id: 4 + SENS_RCVMSG_ERR_EID: + id: 7 + SENS_SUBSCRIBE_ERR_EID: + id: 3 + long_name: Sensor Application + module_type: CFE_APP + perfids: + SENS_MAIN_TASK_PERF_ID: + id: null + short_name: sens + telemetry: + SENS_HK_TLM_MID: + msgID: 3000 + struct: SENS_HkTlm_t + sim: + app_name: SIM + commands: + SIM_CMD_MID: + commands: + Noop: + cc: 0 + struct: SIM_NoArgCmd_t + Reset: + cc: 1 + struct: SIM_NoArgCmd_t + msgID: 7103 + SIM_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: SIM_NoArgCmd_t + msgID: 7104 + SIM_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: SIM_NoArgCmd_t + msgID: 7105 + config: + SIMLIB_MUTEX_SEM_NAME: + name: SIMLIB_MUTEX_SEM_NAME + value: SIMLIB_MUTEX + SIM_CMD_PIPE_DEPTH: + name: SIM_CMD_PIPE_DEPTH + value: 4 + SIM_CMD_PIPE_NAME: + name: SIM_CMD_PIPE_NAME + value: SIM_CMD_PIPE + SIM_CONFIG_TABLE_FILENAME: + name: SIM_CONFIG_TABLE_FILENAME + value: /cf/apps/sim_config.tbl + SIM_DATA_PIPE_DEPTH: + name: SIM_DATA_PIPE_DEPTH + value: 4 + SIM_DATA_PIPE_NAME: + name: SIM_DATA_PIPE_NAME + value: SIM_DATA_PIPE + SIM_LISTENER_TASK_FLAGS: + name: SIM_LISTENER_TASK_FLAGS + value: OS_ENABLE_CORE_0 + SIM_LISTENER_TASK_NAME: + name: SIM_LISTENER_TASK_NAME + value: SIM_LISTENER + SIM_LISTENER_TASK_PRIORITY: + name: SIM_LISTENER_TASK_PRIORITY + value: 50 + SIM_LISTENER_TASK_STACK_SIZE: + name: SIM_LISTENER_TASK_STACK_SIZE + value: 16378 + SIM_MAX_MESSAGE_SIZE: + name: SIM_MAX_MESSAGE_SIZE + value: 1500 + SIM_MISSION_REV: + name: SIM_MISSION_REV + value: 0 + SIM_MUTEX_NAME: + name: SIM_MUTEX_NAME + value: SIM_MUTEX + SIM_PORT: + name: SIM_PORT + value: 14560 + SIM_SB_TIMEOUT: + name: SIM_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + SIM_SCH_PIPE_DEPTH: + name: SIM_SCH_PIPE_DEPTH + value: 2 + SIM_SCH_PIPE_NAME: + name: SIM_SCH_PIPE_NAME + value: SIM_SCH_PIPE + SIM_SCH_PIPE_PEND_TIME: + name: SIM_SCH_PIPE_PEND_TIME + value: 2000 + SIM_SEND_HK_MID_MAX_MSG_COUNT: + name: SIM_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + SIM_STARTUP_TIMEOUT_MSEC: + name: SIM_STARTUP_TIMEOUT_MSEC + value: 1000 + SIM_WAKEUP_MID_MAX_MSG_COUNT: + name: SIM_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/sim/wh_design.yaml + events: + SIM_CC_ERR_EID: + id: 9 + SIM_CFGTBL_GETADDR_ERR_EID: + id: 6 + SIM_CFGTBL_LOAD_ERR_EID: + id: 12 + SIM_CFGTBL_MANAGE_ERR_EID: + id: 5 + SIM_CFGTBL_REG_ERR_EID: + id: 11 + SIM_CMD_NOOP_EID: + id: 2 + SIM_INIT_INF_EID: + id: 1 + SIM_MSGID_ERR_EID: + id: 8 + SIM_MSGLEN_ERR_EID: + id: 10 + SIM_PIPE_INIT_ERR_EID: + id: 4 + SIM_RCVMSG_ERR_EID: + id: 7 + SIM_SUBSCRIBE_ERR_EID: + id: 3 + long_name: Simulation Application + module_type: CFE_APP + perfids: + SIM_MAIN_TASK_PERF_ID: + id: null + short_name: sim + telemetry: + SIM_HK_TLM_MID: + msgID: 3006 + struct: SIM_HkTlm_t + sonar: + app_name: SONAR + commands: + SONAR_CMD_MID: + commands: + Noop: + cc: 0 + struct: SONAR_NoArgCmd_t + Reset: + cc: 1 + struct: SONAR_NoArgCmd_t + msgID: 7110 + SONAR_MEASURE_MID: + commands: + Measure: + cc: 0 + struct: SONAR_NoArgCmd_t + msgID: 7111 + SONAR_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: SONAR_NoArgCmd_t + msgID: 7112 + config: + SONAR_CMD_PIPE_DEPTH: + name: SONAR_CMD_PIPE_DEPTH + value: 4 + SONAR_CMD_PIPE_NAME: + name: SONAR_CMD_PIPE_NAME + value: SONAR_CMD_PIPE + SONAR_CONFIG_TABLE_FILENAME: + name: SONAR_CONFIG_TABLE_FILENAME + value: /cf/apps/sonar_config.tbl + SONAR_DATA_PIPE_DEPTH: + name: SONAR_DATA_PIPE_DEPTH + value: 4 + SONAR_DATA_PIPE_NAME: + name: SONAR_DATA_PIPE_NAME + value: SONAR_DATA_PIPE + SONAR_MAX_DISTANCE: + name: SONAR_MAX_DISTANCE + value: 8.5 + SONAR_MEASURE_MID_MAX_MSG_COUNT: + name: SONAR_MEASURE_MID_MAX_MSG_COUNT + value: 1 + SONAR_MIN_DISTANCE: + name: SONAR_MIN_DISTANCE + value: 0.5 + SONAR_MISSION_REV: + name: SONAR_MISSION_REV + value: 0 + SONAR_SB_TIMEOUT: + name: SONAR_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + SONAR_SCH_PIPE_DEPTH: + name: SONAR_SCH_PIPE_DEPTH + value: 2 + SONAR_SCH_PIPE_NAME: + name: SONAR_SCH_PIPE_NAME + value: SONAR_SCH_PIPE + SONAR_SCH_PIPE_PEND_TIME: + name: SONAR_SCH_PIPE_PEND_TIME + value: 2000 + SONAR_SEND_HK_MID_MAX_MSG_COUNT: + name: SONAR_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + SONAR_SENS_VARIANCE: + name: SONAR_SENS_VARIANCE + value: 1 + SONAR_STARTUP_TIMEOUT_MSEC: + name: SONAR_STARTUP_TIMEOUT_MSEC + value: 1000 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/sonar/wh_design.yaml + events: + SONAR_CC_ERR_EID: + id: 9 + SONAR_CFGTBL_GETADDR_ERR_EID: + id: 6 + SONAR_CFGTBL_LOAD_ERR_EID: + id: 12 + SONAR_CFGTBL_MANAGE_ERR_EID: + id: 5 + SONAR_CFGTBL_REG_ERR_EID: + id: 11 + SONAR_CMD_NOOP_EID: + id: 2 + SONAR_CUSTOM_INIT_ERR_EID: + id: 13 + SONAR_INIT_ERR_EID: + id: 14 + SONAR_INIT_INF_EID: + id: 1 + SONAR_MEASURE_ERR_EID: + id: 16 + SONAR_MSGID_ERR_EID: + id: 8 + SONAR_MSGLEN_ERR_EID: + id: 10 + SONAR_PIPE_INIT_ERR_EID: + id: 4 + SONAR_RCVMSG_ERR_EID: + id: 7 + SONAR_SUBSCRIBE_ERR_EID: + id: 3 + SONAR_UNINIT_ERR_EID: + id: 15 + long_name: Sonar Driver + module_type: CFE_APP + perfids: + SONAR_MAIN_TASK_PERF_ID: + id: null + short_name: sonar + telemetry: + SONAR_HK_TLM_MID: + msgID: 3013 + struct: SONAR_HkTlm_t + SONAR_OUT_DATA_MID: + msgID: 3012 + to: + app_name: TO + commands: + TO_CMD_MID: + commands: + AddMessageFlow: + cc: 2 + struct: TO_AddMessageFlowCmd_t + Noop: + cc: 0 + struct: TO_NoArgCmd_t + QueryMessageFlow: + cc: 4 + struct: TO_QueryMessageFlowCmd_t + QueryOutputChannel: + cc: 6 + struct: TO_QueryOutputChannelCmd_t + QueryPriorityQueue: + cc: 5 + struct: TO_QueryPriorityQueueCmd_t + RemoveMessageFlow: + cc: 3 + struct: TO_RemoveMessageFlowCmd_t + Reset: + cc: 1 + struct: TO_NoArgCmd_t + SendDiag: + cc: 7 + struct: TO_SendDiagCmd_t + msgID: 6815 + TO_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: TO_NoArgCmd_t + msgID: 6816 + TO_SEND_TLM_MID: + commands: + SendTelemetry: + cc: 0 + struct: TO_NoArgCmd_t + msgID: 6817 + config: + TO_CMD_PIPE_DEPTH: + name: TO_CMD_PIPE_DEPTH + value: 4 + TO_CMD_PIPE_NAME: + name: TO_CMD_PIPE_NAME + value: TO_CMD_PIPE + TO_CUSTOM_CHILD_TASK_FLAGS: + name: TO_CUSTOM_CHILD_TASK_FLAGS + value: OS_ENABLE_CORE_0 + TO_CUSTOM_TASK_STACK_SIZE: + name: TO_CUSTOM_TASK_STACK_SIZE + value: 131072 + TO_DATA_PIPE_DEPTH: + name: TO_DATA_PIPE_DEPTH + value: CFE_SB_MAX_PIPE_DEPTH + TO_DATA_PIPE_NAME: + name: TO_DATA_PIPE_NAME + value: TO_DATA_PIPE + TO_GROUND_BINARY_CONFIG_TABLENAME: + name: TO_GROUND_BINARY_CONFIG_TABLENAME + value: GRND_BIN_CFG + TO_GROUND_BINARY_CONFIG_TABLE_FILENAME: + name: TO_GROUND_BINARY_CONFIG_TABLE_FILENAME + value: /cf/apps/to_grnd_bin.tbl + TO_GROUND_BINARY_DUMP_TABLENAME: + name: TO_GROUND_BINARY_DUMP_TABLENAME + value: GRND_BIN_DMP + TO_GROUND_PROTOBUF_CONFIG_TABLENAME: + name: TO_GROUND_PROTOBUF_CONFIG_TABLENAME + value: GRND_PB_CFG + TO_GROUND_PROTOBUF_CONFIG_TABLE_FILENAME: + name: TO_GROUND_PROTOBUF_CONFIG_TABLE_FILENAME + value: /cf/apps/to_grnd_pb.tbl + TO_GROUND_PROTOBUF_DUMP_TABLENAME: + name: TO_GROUND_PROTOBUF_DUMP_TABLENAME + value: GRND_PB_DMP + TO_MAX_BLOCK_SIZE: + name: TO_MAX_BLOCK_SIZE + value: TO_MEM_BLOCK_SIZE_07 + TO_MEM_BLOCK_SIZE_07 + TO_MAX_CHANNELS: + name: TO_MAX_CHANNELS + value: 5 + TO_MAX_MEMPOOL_BLK_SIZES: + name: TO_MAX_MEMPOOL_BLK_SIZES + value: 8 + TO_MAX_MESSAGE_FLOWS: + name: TO_MAX_MESSAGE_FLOWS + value: 200 + TO_MAX_MSGS_OUT_PER_FRAME: + name: TO_MAX_MSGS_OUT_PER_FRAME + value: 100 + TO_MAX_PRIORITY_QUEUES: + name: TO_MAX_PRIORITY_QUEUES + value: 10 + TO_MAX_PROTOBUF_ENC_LEN: + name: TO_MAX_PROTOBUF_ENC_LEN + value: 5000 + TO_MEM_BLOCK_SIZE_01: + name: TO_MEM_BLOCK_SIZE_01 + value: 32 + TO_MEM_BLOCK_SIZE_02: + name: TO_MEM_BLOCK_SIZE_02 + value: 64 + TO_MEM_BLOCK_SIZE_03: + name: TO_MEM_BLOCK_SIZE_03 + value: 128 + TO_MEM_BLOCK_SIZE_04: + name: TO_MEM_BLOCK_SIZE_04 + value: 256 + TO_MEM_BLOCK_SIZE_05: + name: TO_MEM_BLOCK_SIZE_05 + value: 512 + TO_MEM_BLOCK_SIZE_06: + name: TO_MEM_BLOCK_SIZE_06 + value: 2048 + TO_MEM_BLOCK_SIZE_07: + name: TO_MEM_BLOCK_SIZE_07 + value: 8192 + TO_MISSION_REV: + name: TO_MISSION_REV + value: 0 + TO_NUM_BYTES_IN_MEM_POOL: + name: TO_NUM_BYTES_IN_MEM_POOL + value: TO_MAX_CHANNELS * TO_OUTPUT_QUEUE_DEPTH * TO_MAX_BLOCK_SIZE + TO_OUTPUT_QUEUE_DEPTH: + name: TO_OUTPUT_QUEUE_DEPTH + value: 10 + TO_SCH_PIPE_DEPTH: + name: TO_SCH_PIPE_DEPTH + value: 2 + TO_SCH_PIPE_NAME: + name: TO_SCH_PIPE_NAME + value: TO_SCH_PIPE + TO_SCH_PIPE_PEND_TIME: + name: TO_SCH_PIPE_PEND_TIME + value: 2000 + TO_SEND_HK_MID_MAX_MSG_COUNT: + name: TO_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + TO_STARTUP_TIMEOUT_MSEC: + name: TO_STARTUP_TIMEOUT_MSEC + value: 1000 + TO_WAKEUP_MID_MAX_MSG_COUNT: + name: TO_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/to/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + TO_CDS_ERR_EID: + id: 9 + TO_CDS_INF_EID: + id: 4 + TO_CMD_ADD_MSG_FLOW_EID: + id: 25 + TO_CMD_ERR_EID: + id: 10 + TO_CMD_INF_EID: + id: 5 + TO_CMD_NOOP_EID: + id: 23 + TO_CMD_REMOVE_MSG_FLOW_EID: + id: 26 + TO_CMD_RESET_EID: + id: 24 + TO_CMD_SEND_DIAG_EID: + id: 27 + TO_CONFIG_TABLE_ERR_EID: + id: 8 + TO_CONFIG_TABLE_INF_EID: + id: 3 + TO_CR_POOL_ERR_EID: + id: 17 + TO_ERR_EID: + id: 6 + TO_GET_POOL_ERR_EID: + id: 18 + TO_INF_EID: + id: 1 + TO_INIT_ERR_EID: + id: 7 + TO_INIT_INF_EID: + id: 2 + TO_MSGID_ERR_EID: + id: 12 + TO_MSGLEN_ERR_EID: + id: 13 + TO_MSG_DROP_FROM_FLOW_DBG_EID: + id: 16 + TO_MSG_FLOW_INFO_EID: + id: 20 + TO_MSG_UNSUB_DBG_EID: + id: 15 + TO_MSG_WRITE_ERR_EID: + id: 14 + TO_NO_ENCODE_FUNC_EID: + id: 28 + TO_OUT_CH_INFO_EID: + id: 22 + TO_PIPE_ERR_EID: + id: 11 + TO_PQUEUE_INFO_EID: + id: 21 + TO_TLM_LISTEN_ERR_EID: + id: 19 + long_name: Telemetry Output + module_type: CFE_APP + msg_def_overrides: + - enumerations: + CLOSED: 1 + OPEN: 2 + UNKNOWN: 0 + member: State + parent: TO_ChannelDiagTlm_t + type: enumeration + - member: ConfigTableName + parent: TO_ChannelDiagTlm_t + type: string + - member: ConfigTableFileName + parent: TO_ChannelDiagTlm_t + type: string + - member: DumpTableName + parent: TO_ChannelDiagTlm_t + type: string + - member: ChannelName + parent: TO_ChannelDiagTlm_t + type: string + - member: ConfigTableName + parent: TO_ChannelDiagTlm_t + type: string + - member: ConfigTableFileName + parent: TO_ChannelDiagTlm_t + type: string + - enumerations: + CLOSED: 1 + OPEN: 2 + UNKNOWN: 0 + member: State + parent: TO_PriorityDiagTlm_t + type: enumeration + - enumerations: + FIFO: 0 + SINGLE: 1 + member: QType + parent: TO_PriorityDiagTlm_t + type: enumeration + perfids: + TO_MAIN_TASK_PERF_ID: + id: null + TO_SOCKET_SEND_PERF_ID: + id: null + short_name: to + telemetry: + TO_DATA_TYPE_MID: + msgID: 2715 + TO_DIAG_MSG_FLOW_MID: + msgID: 2716 + struct: TO_MsgFlowListPkt_t + TO_DIAG_TLM_MID: + msgID: 2717 + struct: TO_ChannelDiagTlm_t + TO_HK_TLM_MID: + msgID: 2718 + struct: TO_HkTlm_t + ulr: + app_name: ULR + commands: + ULR_CMD_MID: + commands: + Noop: + cc: 0 + struct: ULR_NoArgCmd_t + Reset: + cc: 1 + struct: ULR_NoArgCmd_t + msgID: 7115 + ULR_MEASURE_MID: + commands: + Measure: + cc: 0 + struct: ULR_NoArgCmd_t + msgID: 7116 + ULR_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: ULR_NoArgCmd_t + msgID: 7117 + config: + ULR_CMD_PIPE_DEPTH: + name: ULR_CMD_PIPE_DEPTH + value: 4 + ULR_CMD_PIPE_NAME: + name: ULR_CMD_PIPE_NAME + value: ULR_CMD_PIPE + ULR_CONFIG_TABLE_FILENAME: + name: ULR_CONFIG_TABLE_FILENAME + value: /cf/apps/ulr_config.tbl + ULR_CUSTOM_PORT_PATH: + name: ULR_CUSTOM_PORT_PATH + value: /dev/ttyS6 + ULR_DATA_PIPE_DEPTH: + name: ULR_DATA_PIPE_DEPTH + value: 4 + ULR_DATA_PIPE_NAME: + name: ULR_DATA_PIPE_NAME + value: ULR_DATA_PIPE + ULR_LISTENER_TASK_FLAGS: + name: ULR_LISTENER_TASK_FLAGS + value: OS_ENABLE_CORE_0 + ULR_LISTENER_TASK_NAME: + name: ULR_LISTENER_TASK_NAME + value: ULR_LISTENER + ULR_LISTENER_TASK_PRIORITY: + name: ULR_LISTENER_TASK_PRIORITY + value: 64 + ULR_LISTENER_TASK_STACK_SIZE: + name: ULR_LISTENER_TASK_STACK_SIZE + value: 16000 + ULR_MEASURE_MID_MAX_MSG_COUNT: + name: ULR_MEASURE_MID_MAX_MSG_COUNT + value: 1 + ULR_MISSION_REV: + name: ULR_MISSION_REV + value: 0 + ULR_MUTEX_NAME: + name: ULR_MUTEX_NAME + value: ULR_MUTEX + ULR_SB_TIMEOUT: + name: ULR_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + ULR_SCH_PIPE_DEPTH: + name: ULR_SCH_PIPE_DEPTH + value: 2 + ULR_SCH_PIPE_NAME: + name: ULR_SCH_PIPE_NAME + value: ULR_SCH_PIPE + ULR_SCH_PIPE_PEND_TIME: + name: ULR_SCH_PIPE_PEND_TIME + value: 2000 + ULR_SEND_HK_MID_MAX_MSG_COUNT: + name: ULR_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + ULR_SENS_VARIANCE: + name: ULR_SENS_VARIANCE + value: 0.045f * 0.045f + ULR_STARTUP_TIMEOUT_MSEC: + name: ULR_STARTUP_TIMEOUT_MSEC + value: 1000 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/ulr/wh_design.yaml + events: + ULR_CC_ERR_EID: + id: 7 + ULR_CMD_NOOP_EID: + id: 2 + ULR_CUSTOM_INIT_ERR_EID: + id: 9 + ULR_INIT_INF_EID: + id: 1 + ULR_INVALID_CHECKSUM: + id: 12 + ULR_INVALID_PARSER_STATE: + id: 13 + ULR_LISTENER_CREATE_CHDTASK_ERR_EID: + id: 14 + ULR_MSGID_ERR_EID: + id: 6 + ULR_MSGLEN_ERR_EID: + id: 8 + ULR_PIPE_INIT_ERR_EID: + id: 4 + ULR_RCVMSG_ERR_EID: + id: 5 + ULR_SUBSCRIBE_ERR_EID: + id: 3 + ULR_UNEXPECTED_DATA_BEFORE_HEADER: + id: 11 + ULR_UNEXPECTED_DATA_BEFORE_VERSION_ID: + id: 10 + long_name: uLanding Radar Driver + module_type: CFE_APP + perfids: + ULR_MAIN_TASK_PERF_ID: + id: null + short_name: ulr + telemetry: + ULR_HK_TLM_MID: + msgID: 3018 + struct: ULR_HkTlm_t + vc: + app_name: VC + commands: + VC_CMD_MID: + commands: + Noop: + cc: 0 + struct: VC_NoArgCmd_t + Reset: + cc: 1 + struct: VC_NoArgCmd_t + StartStreaming: + cc: 2 + struct: VC_StartStreamCmd_t + StopStreaming: + cc: 3 + struct: VC_NoArgCmd_t + msgID: 7122 + VC_PROCESS_CMDS_MID: + commands: + ProcessCommands: + cc: 0 + struct: VC_NoArgCmd_t + msgID: 7123 + VC_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: VC_NoArgCmd_t + msgID: 7124 + config: + VC_ADDRESS_LENGTH: + name: VC_ADDRESS_LENGTH + value: INET_ADDRSTRLEN + VC_BUFFER_FILL_TIMEOUT_SEC: + name: VC_BUFFER_FILL_TIMEOUT_SEC + value: 2 + VC_BUFFER_FILL_TIMEOUT_USEC: + name: VC_BUFFER_FILL_TIMEOUT_USEC + value: 0 + VC_BUFFER_TIMEOUTS_ALLOWED: + name: VC_BUFFER_TIMEOUTS_ALLOWED + value: 2 + VC_CMD_PIPE_DEPTH: + name: VC_CMD_PIPE_DEPTH + value: 4 + VC_CMD_PIPE_NAME: + name: VC_CMD_PIPE_NAME + value: VC_CMD_PIPE + VC_CONFIG_TABLE_FILENAME: + name: VC_CONFIG_TABLE_FILENAME + value: /cf/apps/vc_config.tbl + VC_DATA_PIPE_DEPTH: + name: VC_DATA_PIPE_DEPTH + value: 4 + VC_DATA_PIPE_NAME: + name: VC_DATA_PIPE_NAME + value: VC_DATA_PIPE + VC_DESTINATION_IP: + name: VC_DESTINATION_IP + value: 127.0.0.1 + VC_DESTINATION_PORT: + name: VC_DESTINATION_PORT + value: 3001 + VC_DEVICE_PATH: + name: VC_DEVICE_PATH + value: /dev/video0 + VC_FRAMERATE: + name: VC_FRAMERATE + value: 30 + VC_FRAME_HEIGHT: + name: VC_FRAME_HEIGHT + value: 240 + VC_FRAME_WIDTH: + name: VC_FRAME_WIDTH + value: 320 + VC_MAX_BUFFER_SIZE: + name: VC_MAX_BUFFER_SIZE + value: 28800 + VC_MAX_DEVICES: + name: VC_MAX_DEVICES + value: 2 + VC_MAX_DEVICE_PATH: + name: VC_MAX_DEVICE_PATH + value: OS_MAX_LOCAL_PATH_LEN + VC_MAX_OUTPUT_CHANNELS: + name: VC_MAX_OUTPUT_CHANNELS + value: 5 + VC_MAX_PACKET_SIZE: + name: VC_MAX_PACKET_SIZE + value: 65527 + VC_MAX_RETRY_ATTEMPTS: + name: VC_MAX_RETRY_ATTEMPTS + value: 2 + VC_MAX_RETRY_SLEEP_USEC: + name: VC_MAX_RETRY_SLEEP_USEC + value: 10 + VC_MISSION_REV: + name: VC_MISSION_REV + value: 0 + VC_SB_TIMEOUT: + name: VC_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + VC_SCH_PIPE_DEPTH: + name: VC_SCH_PIPE_DEPTH + value: 2 + VC_SCH_PIPE_NAME: + name: VC_SCH_PIPE_NAME + value: VC_SCH_PIPE + VC_SCH_PIPE_PEND_TIME: + name: VC_SCH_PIPE_PEND_TIME + value: 2000 + VC_SCH_PIPE_SEND_HK_RESERVED: + name: VC_SCH_PIPE_SEND_HK_RESERVED + value: 1 + VC_SCH_PIPE_WAKEUP_RESERVED: + name: VC_SCH_PIPE_WAKEUP_RESERVED + value: 1 + VC_SOURCE_IP: + name: VC_SOURCE_IP + value: 0 + VC_SOURCE_PORT: + name: VC_SOURCE_PORT + value: 0 + VC_STARTUP_TIMEOUT_MSEC: + name: VC_STARTUP_TIMEOUT_MSEC + value: 1000 + VC_STREAMING_TASK_FLAGS: + name: VC_STREAMING_TASK_FLAGS + value: OS_ENABLE_CORE_0 + VC_STREAMING_TASK_NAME: + name: VC_STREAMING_TASK_NAME + value: VC_STREAM + VC_STREAMING_TASK_PRIORITY: + name: VC_STREAMING_TASK_PRIORITY + value: 91 + VC_V4L_BUFFER_REQUEST: + name: VC_V4L_BUFFER_REQUEST + value: 4 + VC_V4L_BUFFER_TYPE: + name: VC_V4L_BUFFER_TYPE + value: V4L2_BUF_TYPE_VIDEO_CAPTURE + VC_V4L_IO_METHOD: + name: VC_V4L_IO_METHOD + value: V4L2_MEMORY_USERPTR + VC_V4L_MEMORY_TYPE: + name: VC_V4L_MEMORY_TYPE + value: V4L2_MEMORY_USERPTR + VC_V4L_VIDEO_FIELD_ORDER: + name: VC_V4L_VIDEO_FIELD_ORDER + value: V4L2_FIELD_NONE + VC_V4L_VIDEO_FORMAT: + name: VC_V4L_VIDEO_FORMAT + value: V4L2_PIX_FMT_MJPEG + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/vc/wh_design.yaml + events: + VC_CHA_INF_EID: + id: 6 + VC_CMD_ERR_EID: + id: 9 + VC_CMD_INF_EID: + id: 4 + VC_DEV_INF_EID: + id: 5 + VC_INIT_ERR_EID: + id: 7 + VC_INIT_INF_EID: + id: 1 + VC_MSGID_ERR_EID: + id: 11 + VC_MSGLEN_ERR_EID: + id: 12 + VC_NOOP_INF_EID: + id: 2 + VC_PIPE_ERR_EID: + id: 10 + VC_RESET_INF_EID: + id: 3 + VC_UNINIT_ERR_EID: + id: 8 + long_name: Video Control + module_type: CFE_APP + perfids: + VC_DEVICE_GET_PERF_ID: + id: 107 + VC_MAIN_TASK_PERF_ID: + id: 108 + VC_SOCKET_SEND_PERF_ID: + id: 109 + short_name: vc + telemetry: + FLOW_FRAME_MID: + msgID: 3025 + VC_HK_TLM_MID: + msgID: 3024 + struct: VC_HkTlm_t + vm: + app_name: VM + commands: + VM_CMD_MID: + commands: + Acrobatic: + cc: 50 + struct: VM_NoArgCmd_t + AltCtl: + cc: 41 + struct: VM_NoArgCmd_t + Arm: + cc: 2 + struct: VM_NoArgCmd_t + AutoLand: + cc: 57 + struct: VM_NoArgCmd_t + AutoLoiter: + cc: 44 + struct: VM_NoArgCmd_t + AutoRtl: + cc: 45 + struct: VM_NoArgCmd_t + AutoTakeOff: + cc: 56 + struct: VM_NoArgCmd_t + Disarm: + cc: 3 + struct: VM_NoArgCmd_t + Manual: + cc: 40 + struct: VM_NoArgCmd_t + Noop: + cc: 0 + struct: VM_NoArgCmd_t + PosCtl: + cc: 42 + struct: VM_NoArgCmd_t + Rattitude: + cc: 55 + struct: VM_NoArgCmd_t + Reset: + cc: 1 + struct: VM_NoArgCmd_t + SendConfig: + cc: 58 + struct: VM_NoArgCmd_t + Stabilized: + cc: 54 + struct: VM_NoArgCmd_t + msgID: 7138 + VM_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: VM_NoArgCmd_t + msgID: 7139 + VM_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: VM_NoArgCmd_t + msgID: 7140 + config: + VM_BATTERY_VOLTAGE_CHECK_DELAY: + name: VM_BATTERY_VOLTAGE_CHECK_DELAY + value: 6000000 + VM_CMD_PIPE_DEPTH: + name: VM_CMD_PIPE_DEPTH + value: 4 + VM_CMD_PIPE_NAME: + name: VM_CMD_PIPE_NAME + value: VM_CMD_PIPE + VM_CONFIG_TABLE_FILENAME: + name: VM_CONFIG_TABLE_FILENAME + value: /cf/apps/vm_config.tbl + VM_DATA_PIPE_DEPTH: + name: VM_DATA_PIPE_DEPTH + value: 18 + VM_DATA_PIPE_NAME: + name: VM_DATA_PIPE_NAME + value: VM_DATA_PIPE + VM_MINIMUM_VALID_BATTERY_VOLTAGE: + name: VM_MINIMUM_VALID_BATTERY_VOLTAGE + value: 2 + VM_MISSION_REV: + name: VM_MISSION_REV + value: 0 + VM_PARAM_PIPE_DEPTH: + name: VM_PARAM_PIPE_DEPTH + value: 4 + VM_PARAM_PIPE_NAME: + name: VM_PARAM_PIPE_NAME + value: VM_PARAM_PIPE + VM_SCH_PIPE_DEPTH: + name: VM_SCH_PIPE_DEPTH + value: 30 + VM_SCH_PIPE_NAME: + name: VM_SCH_PIPE_NAME + value: VM_SCH_PIPE + VM_SCH_PIPE_PEND_TIME: + name: VM_SCH_PIPE_PEND_TIME + value: 2000 + VM_SEND_HK_MID_MAX_MSG_COUNT: + name: VM_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + VM_STARTUP_TIMEOUT_MSEC: + name: VM_STARTUP_TIMEOUT_MSEC + value: 1000 + VM_WAKEUP_MID_MAX_MSG_COUNT: + name: VM_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/vm/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + VM_ARMING_ENTERED_ARMED_ERROR_STATE_INFO_EID: + id: 19 + VM_ARMING_ENTERED_ARMED_STATE_INFO_EID: + id: 17 + VM_ARMING_ENTERED_STANDBY_ERROR_STATE_INFO_EID: + id: 18 + VM_ARMING_ENTERED_STANDBY_STATE_INFO_EID: + id: 16 + VM_ARMING_ILLEGAL_TRANSITION_ERR_EID: + id: 14 + VM_CC_ERR_EID: + id: 10 + VM_CFGTBL_GETADDR_ERR_EID: + id: 7 + VM_CFGTBL_LOAD_ERR_EID: + id: 13 + VM_CFGTBL_MANAGE_ERR_EID: + id: 6 + VM_CFGTBL_REG_ERR_EID: + id: 12 + VM_CMD_NOOP_EID: + id: 2 + VM_CONFIG_CHANGE_EID: + id: 58 + VM_CONFIG_PARAMETER_OUT_OF_BOUNDS_EID: + id: 59 + VM_CRITICAL_BAT_INFO_EID: + id: 36 + VM_DANGER_BAT_LEVEL_INFO_EID: + id: 37 + VM_HOMESET_ERROR_EID: + id: 62 + VM_HOMESET_INFO_EID: + id: 31 + VM_INIT_INF_EID: + id: 1 + VM_INVALID_CONFIG_TABLE_ERR_EID: + id: 61 + VM_IN_UNKNOWN_STATE_ERR_EID: + id: 30 + VM_LND_INIT_INFO_EID: + id: 32 + VM_LOW_BAT_INFO_EID: + id: 35 + VM_MSGID_ERR_EID: + id: 9 + VM_MSGLEN_ERR_EID: + id: 11 + VM_NAVSM_ENTERED_MANUAL_INFO_EID: + id: 20 + VM_NAVSN_ENTERED_ACRO_INFO_EID: + id: 25 + VM_NAVSN_ENTERED_ALTCTL_INFO_EID: + id: 21 + VM_NAVSN_ENTERED_AUTOLOITER_INFO_EID: + id: 23 + VM_NAVSN_ENTERED_AUTO_LAND_INFO_EID: + id: 29 + VM_NAVSN_ENTERED_AUTO_TAKEOFF_INFO_EID: + id: 28 + VM_NAVSN_ENTERED_POSCTL_INFO_EID: + id: 22 + VM_NAVSN_ENTERED_RATTITUDE_INFO_EID: + id: 27 + VM_NAVSN_ENTERED_RTL_INFO_EID: + id: 24 + VM_NAVSN_ENTERED_STABILIZE_INFO_EID: + id: 26 + VM_NAV_ILLEGAL_TRANSITION_ERR_EID: + id: 15 + VM_NOPE_ERR_EID: + id: 57 + VM_PARAM_INIT_ERR_EID: + id: 60 + VM_PARAM_UPDATE_ERR_EID: + id: 5 + VM_PIPE_INIT_ERR_EID: + id: 4 + VM_PRE_ARM_BAT_CHECK_INFO_EID: + id: 50 + VM_PRE_ARM_SAFETY_CHECK_INFO_EID: + id: 51 + VM_PRE_ARM_SENSORS_CHECK_INFO_EID: + id: 52 + VM_RCVMSG_ERR_EID: + id: 8 + VM_RC_ARM_INFO_EID: + id: 43 + VM_RC_DISARM_INFO_EID: + id: 42 + VM_RC_KIL_SWTCH_INFO_EID: + id: 44 + VM_RC_LTR_INFO_EID: + id: 45 + VM_RC_MAN_INFO_EID: + id: 48 + VM_RC_POSCTL_INFO_EID: + id: 47 + VM_RC_RTL_INFO_EID: + id: 46 + VM_RC_SIGN_LOST_INFO_EID: + id: 39 + VM_RC_SIGN_REGAINED_INFO_EID: + id: 38 + VM_RC_STK_ARM_REJ_INFO_EID: + id: 41 + VM_RC_STK_DISARM_REJ_INFO_EID: + id: 40 + VM_RC_TAKE_OFF_INFO_EID: + id: 49 + VM_REQ_ACRO_ERR_EID: + id: 56 + VM_REQ_ALT_CTL_ERR_EID: + id: 55 + VM_REQ_POS_CTL_ERR_EID: + id: 54 + VM_SAFETY_DISARM_INFO_EID: + id: 33 + VM_SAFETY_INFO_EID: + id: 34 + VM_SEN_NOT_READY_INFO_EID: + id: 53 + VM_SUBSCRIBE_ERR_EID: + id: 3 + long_name: Vehicle Manager + module_type: CFE_APP + perfids: + VM_MAIN_TASK_PERF_ID: + id: null + short_name: vm + telemetry: + VM_CONFIG_TLM_MID: + msgID: 3040 + struct: VM_ConfigTlm_t + VM_HK_TLM_MID: + msgID: 3041 + struct: VM_HkTlm_t + zusup: + app_name: ZUSUP + commands: + ZUSUP_CMD_MID: + commands: + Noop: + cc: 0 + struct: ZUSUP_NoArgCmd_t + Reset: + cc: 1 + struct: ZUSUP_NoArgCmd_t + SetCriticalHigh: + cc: 5 + struct: ZUSUP_SetThesholdCmd_t + SetCriticalLow: + cc: 3 + struct: ZUSUP_SetThesholdCmd_t + SetShutdownOnCritHigh: + cc: 7 + struct: ZUSUP_SetShutdownOnCritCmd_t + SetShutdownOnCritLow: + cc: 6 + struct: ZUSUP_SetShutdownOnCritCmd_t + SetWarningHigh: + cc: 4 + struct: ZUSUP_SetThesholdCmd_t + SetWarningLow: + cc: 2 + struct: ZUSUP_SetThesholdCmd_t + msgID: 7142 + ZUSUP_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: ZUSUP_NoArgCmd_t + msgID: 7143 + ZUSUP_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: ZUSUP_NoArgCmd_t + msgID: 7144 + config: + ZUSUP_CMD_PIPE_DEPTH: + name: ZUSUP_CMD_PIPE_DEPTH + value: 4 + ZUSUP_CMD_PIPE_NAME: + name: ZUSUP_CMD_PIPE_NAME + value: ZUSUP_CMD_PIPE + ZUSUP_CONFIG_TABLE_FILENAME: + name: ZUSUP_CONFIG_TABLE_FILENAME + value: /cf/apps/zusup_config.tbl + ZUSUP_MISSION_REV: + name: ZUSUP_MISSION_REV + value: 0 + ZUSUP_SB_TIMEOUT: + name: ZUSUP_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + ZUSUP_SCH_PIPE_DEPTH: + name: ZUSUP_SCH_PIPE_DEPTH + value: 2 + ZUSUP_SCH_PIPE_NAME: + name: ZUSUP_SCH_PIPE_NAME + value: ZUSUP_SCH_PIPE + ZUSUP_SCH_PIPE_PEND_TIME: + name: ZUSUP_SCH_PIPE_PEND_TIME + value: 2000 + ZUSUP_SEND_HK_MID_MAX_MSG_COUNT: + name: ZUSUP_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + ZUSUP_STARTUP_TIMEOUT_MSEC: + name: ZUSUP_STARTUP_TIMEOUT_MSEC + value: 1000 + ZUSUP_WAKEUP_MID_MAX_MSG_COUNT: + name: ZUSUP_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/../private/apps/zusup/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/cpd/target/target/exe/airliner.elf + events: + ZUSUP_CDS_ERR_EID: + id: 9 + ZUSUP_CDS_INF_EID: + id: 4 + ZUSUP_CMD_ERR_EID: + id: 10 + ZUSUP_CMD_INF_EID: + id: 5 + ZUSUP_CONFIG_TABLE_ERR_EID: + id: 8 + ZUSUP_CONFIG_TABLE_INF_EID: + id: 3 + ZUSUP_ERR_EID: + id: 6 + ZUSUP_INF_EID: + id: 1 + ZUSUP_INIT_ERR_EID: + id: 7 + ZUSUP_INIT_INF_EID: + id: 2 + ZUSUP_MSGID_ERR_EID: + id: 12 + ZUSUP_MSGLEN_ERR_EID: + id: 13 + ZUSUP_PIPE_ERR_EID: + id: 11 + ZUSUP_TEMP_HIGH_CRIT_EID: + id: 18 + ZUSUP_TEMP_HIGH_ERR_EID: + id: 17 + ZUSUP_TEMP_LOW_CRIT_EID: + id: 15 + ZUSUP_TEMP_LOW_ERR_EID: + id: 14 + ZUSUP_TEMP_NOMINAL_INFO_EID: + id: 16 + long_name: Zynq Ultrascale Supervisor + perfids: + ZUSUP_MAIN_TASK_PERF_ID: + id: 113 + short_name: zusup + telemetry: + ZUSUP_DIAG_TLM_MID: + msgID: 3050 + struct: ZUSUP_DiagTlm_t + ZUSUP_HK_TLM_MID: + msgID: 3049 + struct: ZUSUP_HkTlm_t + xtce_config: + global: + CommandMetaData: + BaseContainer: + container_ref: cfs/cfs-cmd + size: 64 + TelemetryMetaData: + BaseContainer: + container_ref: cfs + size: 96 + ppd: + config_base: /home/lgomez/squeaky-weasel/software/airliner/public + cpu_id: PPD + modules: + adsbr: + app_name: ADSBR + commands: + ADSBR_CMD_MID: + commands: + Noop: + cc: 0 + struct: ADSBR_NoArgCmd_t + Reset: + cc: 1 + struct: ADSBR_NoArgCmd_t + msgID: 4587 + ADSBR_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CF_NoArgsCmd_t + msgID: 6636 + ADSBR_WAKEUP_MID: + msgID: 6637 + ADSBR_WAKE_UP_CMD_MID: + commands: + WakeUp: + cc: 0 + struct: CF_NoArgsCmd_t + msgID: null + config: + ADSBR_CMD_PIPE_DEPTH: + name: ADSBR_CMD_PIPE_DEPTH + value: 4 + ADSBR_CMD_PIPE_NAME: + name: ADSBR_CMD_PIPE_NAME + value: ADSBR_CMD_PIPE + ADSBR_CONFIG_TABLE_FILENAME: + name: ADSBR_CONFIG_TABLE_FILENAME + value: /cf/apps/adsbr_config.tbl + ADSBR_CUSTOM_DEV_PATH: + name: ADSBR_CUSTOM_DEV_PATH + value: /tmp/ttyS0 + ADSBR_DATA_PIPE_DEPTH: + name: ADSBR_DATA_PIPE_DEPTH + value: 4 + ADSBR_DATA_PIPE_NAME: + name: ADSBR_DATA_PIPE_NAME + value: ADSBR_DATA_PIPE + ADSBR_MISSION_REV: + name: ADSBR_MISSION_REV + value: 0 + ADSBR_SB_TIMEOUT: + name: ADSBR_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + ADSBR_SCH_PIPE_DEPTH: + name: ADSBR_SCH_PIPE_DEPTH + value: 2 + ADSBR_SCH_PIPE_NAME: + name: ADSBR_SCH_PIPE_NAME + value: ADSBR_SCH_PIPE + ADSBR_SCH_PIPE_PEND_TIME: + name: ADSBR_SCH_PIPE_PEND_TIME + value: 2000 + ADSBR_SCH_PIPE_SEND_HK_RESERVED: + name: ADSBR_SCH_PIPE_SEND_HK_RESERVED + value: 1 + ADSBR_SCH_PIPE_WAKEUP_RESERVED: + name: ADSBR_SCH_PIPE_WAKEUP_RESERVED + value: 1 + ADSBR_STARTUP_TIMEOUT_MSEC: + name: ADSBR_STARTUP_TIMEOUT_MSEC + value: 1000 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/adsbr/wh_design.yaml + events: + ADSBR_CDS_ERR_EID: + id: 9 + ADSBR_CDS_INF_EID: + id: 4 + ADSBR_CMD_ERR_EID: + id: 10 + ADSBR_CMD_INF_EID: + id: 5 + ADSBR_CONFIG_TABLE_ERR_EID: + id: 8 + ADSBR_CONFIG_TABLE_INF_EID: + id: 3 + ADSBR_ERR_EID: + id: 6 + ADSBR_INF_EID: + id: 1 + ADSBR_INIT_ERR_EID: + id: 7 + ADSBR_INIT_INF_EID: + id: 2 + ADSBR_MSGID_ERR_EID: + id: 12 + ADSBR_MSGLEN_ERR_EID: + id: 13 + ADSBR_PIPE_ERR_EID: + id: 11 + long_name: ADSB Receiver + module_type: CFE_APP + perfids: + ADSBR_MAIN_TASK_PERF_ID: + id: 114 + short_name: adsbr + telemetry: + ADSBR_HK_TLM_MID: + msgID: 2543 + struct: ADSBR_HkTlm_t + bat: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/BAT.so + cf: + app_name: CF + commands: + CF_CMD_MID: + commands: + Abandon: + cc: 9 + struct: CF_CARSCmd_t + AutoSuspendEn: + cc: 26 + struct: CF_AutoSuspendEnCmd_t + Cancel: + cc: 8 + struct: CF_CARSCmd_t + DequeueNode: + cc: 20 + struct: CF_DequeueNodeCmd_t + DisableDequeue: + cc: 17 + struct: CF_EnDisDequeueCmd_t + DisableDirPolling: + cc: 19 + struct: CF_EnDisPollCmd_t + EnableDequeue: + cc: 16 + struct: CF_EnDisDequeueCmd_t + EnableDirPolling: + cc: 18 + struct: CF_EnDisPollCmd_t + Freeze: + cc: 4 + struct: CF_NoArgsCmd_t + GetMIBParameter: + cc: 11 + struct: CF_GetMibParam_t + GiveTake: + cc: 25 + struct: CF_GiveTakeCmd_t + Kickstart: + cc: 23 + struct: CF_KickstartCmd_t + Noop: + cc: 0 + struct: CF_NoArgsCmd_t + PlaybackDirectory: + cc: 3 + struct: CF_PlaybackDirCmd_t + PlaybackFile: + cc: 2 + struct: CF_PlaybackFileCmd_t + PurgeQueue: + cc: 21 + struct: CF_PurgeQueueCmd_t + QuickStat: + cc: 24 + struct: CF_QuickStatCmd_t + ResetCounters: + cc: 1 + struct: CF_ResetCtrsCmd_t + Resume: + cc: 7 + struct: CF_CARSCmd_t + SendConfigParameters: + cc: 14 + struct: CF_NoArgsCmd_t + SendTransaction: + cc: 12 + struct: CF_SendTransCmd_t + SetCyclesPerWakeup: + cc: 27 + struct: CF_CyclesPerWakeupCmd_t + SetMIBParameter: + cc: 10 + struct: CF_SetMibParam_t + SetPollParameter: + cc: 13 + struct: CF_SetPollParamCmd_t + Suspend: + cc: 6 + struct: CF_CARSCmd_t + Thaw: + cc: 5 + struct: CF_NoArgsCmd_t + WriteActiveTrans: + cc: 22 + struct: CF_WriteActiveTransCmd_t + WriteQueue: + cc: 15 + struct: CF_WriteQueueCmd_t + msgID: 6204 + CF_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CF_NoArgsCmd_t + msgID: 6205 + CF_SPACE_TO_GND_PDU_MID: + msgID: 2110 + CF_WAKE_UP_REQ_CMD_MID: + commands: + WakeUp: + cc: 0 + struct: CF_NoArgsCmd_t + msgID: 6207 + config: + CF_AUTOSUSPEND_MAX_TRANS: + name: CF_AUTOSUSPEND_MAX_TRANS + value: 1 + CF_CONFIG_TABLE_FILENAME: + name: CF_CONFIG_TABLE_FILENAME + value: /cf/cf_cfgtable.tbl + CF_CONFIG_TABLE_NAME: + name: CF_CONFIG_TABLE_NAME + value: ConfigTable + CF_DEFAULT_QUEUE_INFO_FILENAME: + name: CF_DEFAULT_QUEUE_INFO_FILENAME + value: /ram/cf_queue_info.dat + CF_ENGINE_TEMP_FILE_PREFIX: + name: CF_ENGINE_TEMP_FILE_PREFIX + value: /ram/cftmp + CF_INCOMING_PDU_BUF_SIZE: + name: CF_INCOMING_PDU_BUF_SIZE + value: 512 + CF_MAX_PLAYBACK_CHANNELS: + name: CF_MAX_PLAYBACK_CHANNELS + value: 2 + CF_MAX_POLLING_DIRS_PER_CHAN: + name: CF_MAX_POLLING_DIRS_PER_CHAN + value: 8 + CF_MAX_SIMULTANEOUS_TRANSACTIONS: + name: CF_MAX_SIMULTANEOUS_TRANSACTIONS + value: 100 + CF_MEMORY_POOL_BYTES: + name: CF_MEMORY_POOL_BYTES + value: 32768 + CF_MISSION_REV: + name: CF_MISSION_REV + value: 0 + CF_NUM_INPUT_CHANNELS: + name: CF_NUM_INPUT_CHANNELS + value: 1 + CF_OUTGOING_PDU_BUF_SIZE: + name: CF_OUTGOING_PDU_BUF_SIZE + value: 2048 + CF_PIPE_DEPTH: + name: CF_PIPE_DEPTH + value: 40 + CF_SEND_FIXED_SIZE_PKTS: + name: CF_SEND_FIXED_SIZE_PKTS + value: 0 + CF_STARTUP_SYNC_TIMEOUT: + name: CF_STARTUP_SYNC_TIMEOUT + value: 65000 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/cf/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/CF.so + events: + CF_CARS_CMD_EID: + id: 48 + CF_CARS_ERR1_EID: + id: 49 + CF_CC_ERR_EID: + id: 2 + CF_CFDP_ENGINE_DEB_EID: + id: 15 + CF_CFDP_ENGINE_ERR_EID: + id: 18 + CF_CFDP_ENGINE_INFO_EID: + id: 16 + CF_CFDP_ENGINE_WARN_EID: + id: 17 + CF_CFGTBL_GADR_ERR_EID: + id: 44 + CF_CFGTBL_LD_ERR_EID: + id: 42 + CF_CFGTBL_MNG_ERR_EID: + id: 43 + CF_CFGTBL_REG_ERR_EID: + id: 41 + CF_CMD_LEN_ERR_EID: + id: 4 + CF_CR_PIPE_ERR_EID: + id: 8 + CF_DEQ_NODE1_EID: + id: 68 + CF_DEQ_NODE2_EID: + id: 69 + CF_DEQ_NODE_ERR1_EID: + id: 62 + CF_DEQ_NODE_ERR2_EID: + id: 63 + CF_DEQ_NODE_ERR3_EID: + id: 64 + CF_DEQ_NODE_ERR4_EID: + id: 65 + CF_DIS_DQ_CMD_EID: + id: 88 + CF_DIS_POLL_CMD1_EID: + id: 94 + CF_DIS_POLL_CMD2_EID: + id: 95 + CF_DIS_POLL_ERR1_EID: + id: 96 + CF_DIS_POLL_ERR2_EID: + id: 97 + CF_DQ_CMD_ERR1_EID: + id: 87 + CF_DQ_CMD_ERR2_EID: + id: 89 + CF_ENA_DQ_CMD_EID: + id: 86 + CF_ENA_POLL_CMD1_EID: + id: 90 + CF_ENA_POLL_CMD2_EID: + id: 91 + CF_ENA_POLL_ERR1_EID: + id: 92 + CF_ENA_POLL_ERR2_EID: + id: 93 + CF_ENDIS_AUTO_SUS_CMD_EID: + id: 25 + CF_FILEWRITE_ERR_EID: + id: 54 + CF_FILE_CLOSE_ERR_EID: + id: 36 + CF_FILE_IO_ERR1_EID: + id: 7 + CF_FILE_IO_ERR2_EID: + id: 12 + CF_FILE_IO_ERR3_EID: + id: 19 + CF_FREEZE_CMD_EID: + id: 46 + CF_GET_MIB_CMD_EID: + id: 51 + CF_GIVETAKE_CMD_EID: + id: 158 + CF_GIVETAKE_ERR1_EID: + id: 130 + CF_GIVETAKE_ERR2_EID: + id: 131 + CF_GIVETAKE_ERR3_EID: + id: 132 + CF_GIVETAKE_ERR4_EID: + id: 133 + CF_HANDSHAKE_ERR1_EID: + id: 73 + CF_IND_ACK_TIM_EXP_EID: + id: 32 + CF_IND_FAU_UNEX_EID: + id: 75 + CF_IND_INA_TIM_EXP_EID: + id: 33 + CF_IND_NACK_TIM_EXP_EID: + id: 34 + CF_IND_UNEXP_TYPE_EID: + id: 35 + CF_IND_XACT_ABA_EID: + id: 29 + CF_IND_XACT_FAU_EID: + id: 28 + CF_IND_XACT_RES_EID: + id: 27 + CF_IND_XACT_SUS_EID: + id: 26 + CF_INIT_EID: + id: 1 + CF_INV_FILENAME_EID: + id: 157 + CF_IN_TRANS_FAILED_EID: + id: 22 + CF_IN_TRANS_OK_EID: + id: 20 + CF_IN_TRANS_START_EID: + id: 102 + CF_KICKSTART_CMD_EID: + id: 30 + CF_KICKSTART_ERR1_EID: + id: 56 + CF_LOGIC_NAME_ERR_EID: + id: 14 + CF_MACH_ALLOC_ERR_EID: + id: 37 + CF_MEM_ALLOC_ERR_EID: + id: 84 + CF_MEM_DEALLOC_ERR_EID: + id: 85 + CF_MID_ERR_EID: + id: 3 + CF_MV_UP_NODE_EID: + id: 24 + CF_NOOP_CMD_EID: + id: 5 + CF_NO_TERM_ERR_EID: + id: 120 + CF_OPEN_DIR_ERR_EID: + id: 98 + CF_OUT_SND_ERR1_EID: + id: 152 + CF_OUT_SND_ERR2_EID: + id: 153 + CF_OUT_SND_ERR3_EID: + id: 154 + CF_OUT_TRANS_FAILED_EID: + id: 23 + CF_OUT_TRANS_OK_EID: + id: 21 + CF_OUT_TRANS_START_EID: + id: 103 + CF_PB_DIR_ERR1_EID: + id: 135 + CF_PB_DIR_ERR2_EID: + id: 136 + CF_PB_DIR_ERR3_EID: + id: 137 + CF_PB_DIR_ERR4_EID: + id: 138 + CF_PB_DIR_ERR5_EID: + id: 139 + CF_PB_FILE_ERR1_EID: + id: 76 + CF_PB_FILE_ERR2_EID: + id: 77 + CF_PB_FILE_ERR3_EID: + id: 78 + CF_PB_FILE_ERR4_EID: + id: 79 + CF_PB_FILE_ERR5_EID: + id: 80 + CF_PB_FILE_ERR6_EID: + id: 81 + CF_PDU_RCV_ERR1_EID: + id: 70 + CF_PDU_RCV_ERR2_EID: + id: 71 + CF_PDU_RCV_ERR3_EID: + id: 72 + CF_PLAYBACK_DIR_EID: + id: 134 + CF_PLAYBACK_FILE_EID: + id: 38 + CF_PURGEQ1_EID: + id: 146 + CF_PURGEQ2_EID: + id: 147 + CF_PURGEQ_ERR1_EID: + id: 140 + CF_PURGEQ_ERR2_EID: + id: 141 + CF_PURGEQ_ERR3_EID: + id: 142 + CF_PURGEQ_ERR4_EID: + id: 143 + CF_PURGEQ_ERR5_EID: + id: 144 + CF_PURGEQ_ERR6_EID: + id: 145 + CF_PUT_REQ_ERR1_EID: + id: 39 + CF_PUT_REQ_ERR2_EID: + id: 40 + CF_QDIR_ACTIVEFILE_EID: + id: 155 + CF_QDIR_INV_NAME1_EID: + id: 82 + CF_QDIR_INV_NAME2_EID: + id: 83 + CF_QDIR_NOMEM1_EID: + id: 99 + CF_QDIR_NOMEM2_EID: + id: 100 + CF_QDIR_OPENFILE_EID: + id: 156 + CF_QDIR_PQFUL_EID: + id: 101 + CF_QUICK_CMD_EID: + id: 160 + CF_QUICK_ERR1_EID: + id: 159 + CF_RCV_MSG_ERR_EID: + id: 11 + CF_REMOVE_ERR1_EID: + id: 13 + CF_REMOVE_ERR2_EID: + id: 31 + CF_RESET_CMD_EID: + id: 6 + CF_SET_MIB_CMD_EID: + id: 50 + CF_SET_MIB_CMD_ERR1_EID: + id: 104 + CF_SET_MIB_CMD_ERR2_EID: + id: 105 + CF_SET_POLL_PARAM1_EID: + id: 128 + CF_SET_POLL_PARAM_ERR1_EID: + id: 121 + CF_SET_POLL_PARAM_ERR2_EID: + id: 122 + CF_SET_POLL_PARAM_ERR3_EID: + id: 123 + CF_SET_POLL_PARAM_ERR4_EID: + id: 124 + CF_SET_POLL_PARAM_ERR5_EID: + id: 125 + CF_SET_POLL_PARAM_ERR6_EID: + id: 126 + CF_SET_POLL_PARAM_ERR7_EID: + id: 127 + CF_SND_CFG_CMD_EID: + id: 129 + CF_SND_QUE_ERR1_EID: + id: 60 + CF_SND_Q_INFO_EID: + id: 53 + CF_SND_TRANS_CMD_EID: + id: 74 + CF_SND_TRANS_ERR_EID: + id: 61 + CF_SUB_CMD_ERR_EID: + id: 10 + CF_SUB_PDUS_ERR_EID: + id: 52 + CF_SUB_REQ_ERR_EID: + id: 9 + CF_SUB_WAKE_ERR_EID: + id: 55 + CF_TBL_LD_ATTEMPT_EID: + id: 151 + CF_TBL_VAL_ERR10_EID: + id: 115 + CF_TBL_VAL_ERR11_EID: + id: 116 + CF_TBL_VAL_ERR12_EID: + id: 117 + CF_TBL_VAL_ERR13_EID: + id: 118 + CF_TBL_VAL_ERR14_EID: + id: 119 + CF_TBL_VAL_ERR1_EID: + id: 106 + CF_TBL_VAL_ERR2_EID: + id: 107 + CF_TBL_VAL_ERR3_EID: + id: 108 + CF_TBL_VAL_ERR4_EID: + id: 109 + CF_TBL_VAL_ERR5_EID: + id: 110 + CF_TBL_VAL_ERR6_EID: + id: 111 + CF_TBL_VAL_ERR7_EID: + id: 112 + CF_TBL_VAL_ERR8_EID: + id: 113 + CF_TBL_VAL_ERR9_EID: + id: 114 + CF_THAW_CMD_EID: + id: 47 + CF_TRANS_SUSPEND_OVRFLW_EID: + id: 45 + CF_WRACT_ERR1_EID: + id: 148 + CF_WRACT_ERR2_EID: + id: 149 + CF_WRACT_TRANS_EID: + id: 150 + CF_WR_CMD_ERR1_EID: + id: 57 + CF_WR_CMD_ERR2_EID: + id: 58 + CF_WR_CMD_ERR3_EID: + id: 59 + CF_WR_CMD_ERR4_EID: + id: 66 + long_name: CFDP File Delivery + module_type: CFE_APP + msg_def_overrides: + - member: Param + parent: CF_SetMibParam_t + type: string + - member: Value + parent: CF_SetMibParam_t + type: string + - member: Param + parent: CF_GetMibParam_t + type: string + - enumerations: + ALL: 0 + CMD: 1 + DOWN: 4 + FAULT: 2 + UP: 3 + member: Value + parent: CF_ResetCtrsCmd_t + type: enumeration + - enumerations: + CLASS_1: 1 + CLASS_2: 2 + member: Class + parent: CF_PlaybackFileCmd_t + type: enumeration + - enumerations: + DELETE: 0 + KEEP: 1 + member: Preserve + parent: CF_PlaybackFileCmd_t + type: enumeration + - member: PeerEntityId + parent: CF_PlaybackFileCmd_t + type: string + - member: SrcFilename + parent: CF_PlaybackFileCmd_t + type: string + - member: DstFilename + parent: CF_PlaybackFileCmd_t + type: string + - enumerations: + CLASS_1: 1 + CLASS_2: 2 + member: Class + parent: CF_PlaybackDirCmd_t + type: enumeration + - enumerations: + DELETE: 0 + KEEP: 1 + member: Preserve + parent: CF_PlaybackDirCmd_t + type: enumeration + - member: PeerEntityId + parent: CF_PlaybackDirCmd_t + type: string + - member: SrcPath + parent: CF_PlaybackDirCmd_t + type: string + - member: DstPath + parent: CF_PlaybackDirCmd_t + type: string + - enumerations: + CLASS_1: 1 + CLASS_2: 2 + member: Class + parent: CF_SetPollParamCmd_t + type: enumeration + - enumerations: + DELETE: 0 + KEEP: 1 + member: Preserve + parent: CF_SetPollParamCmd_t + type: enumeration + - member: PeerEntityId + parent: CF_SetPollParamCmd_t + type: string + - member: SrcPath + parent: CF_SetPollParamCmd_t + type: string + - member: DstPath + parent: CF_SetPollParamCmd_t + type: string + - member: Trans + parent: CF_CARSCmd_t + type: string + - enumerations: + DOWN: 2 + UP: 1 + member: Type + parent: CF_WriteQueueCmd_t + type: enumeration + - enumerations: + ACTIVE: 1 + HISTORY: 2 + PENDING: 0 + member: Queue + parent: CF_WriteQueueCmd_t + type: enumeration + - member: Filename + parent: CF_WriteQueueCmd_t + type: string + - enumerations: + ALL: 0 + DOWN: 2 + UP: 1 + member: Type + parent: CF_WriteActiveTransCmd_t + type: enumeration + - member: Filename + parent: CF_WriteActiveTransCmd_t + type: string + - member: Trans + parent: CF_SendTransCmd_t + type: string + - member: Trans + parent: CF_DequeueNodeCmd_t + type: string + - enumerations: + DOWN: 2 + UP: 1 + member: Type + parent: CF_PurgeQueueCmd_t + type: enumeration + - enumerations: + ACTIVE: 1 + HISTORY: 2 + PENDING: 0 + member: Queue + parent: CF_PurgeQueueCmd_t + type: enumeration + - member: Trans + parent: CF_QuickStatCmd_t + type: string + - enumerations: + GIVE: 0 + TAKE: 1 + member: GiveOrTakeSemaphore + parent: CF_GiveTakeCmd_t + type: enumeration + - enumerations: + DISABLE: 0 + ENABLE: 1 + member: EnableDisable + parent: CF_AutoSuspendEnCmd_t + type: enumeration + - enumerations: + DISABLE: 0 + ENABLE: 1 + member: EnFlag + parent: AutoSuspend_Telemetry_t + type: enumeration + - member: FlightEngineEntityId + parent: Engine_Telemetry_t + type: string + - member: LastFileUplinked + parent: Uplink_Telemetry_t + type: string + - member: LastFailedTrans + parent: App_Telemetry_t + type: string + - enumerations: + DATA_COMPLETE: 2 + DATA_INCOMPLETE: 3 + DONT_CARE_0: 0 + DONT_CARE_1: 1 + member: DeliCode + parent: CF_EngTransStat_t + type: enumeration + - enumerations: + ABANDONED: 3 + CANCELLED: 2 + SUCCESSFUL: 1 + UNKNOWN: 0 + member: FinalStat + parent: CF_EngTransStat_t + type: enumeration + - enumerations: + CLASS_1_RECEIVER: 2 + CLASS_1_SENDER: 1 + CLASS_2_RECEIVER: 4 + CLASS_2_SENDER: 3 + member: Role + parent: CF_EngTransStat_t + type: enumeration + - enumerations: + FINISHED: 7 + S1: 1 + S2: 2 + S3: 3 + S4: 4 + S5: 5 + S6: 6 + UNINITIALIZED: 0 + member: State + parent: CF_EngTransStat_t + type: enumeration + - member: SrcFile + parent: CF_EngTransStat_t + type: string + - member: DstFile + parent: CF_EngTransStat_t + type: string + - member: TmpFile + parent: CF_EngTransStat_t + type: string + - enumerations: + ABANDON: 3 + ACTIVE: 9 + ALREADY_ACTIVE: 6 + CANCELLED: 2 + NO_META: 4 + PENDING: 5 + PUT_REQ_FAIL: 8 + PUT_REQ_ISSUED: 7 + SUCCESS: 1 + UNKNOWN: 0 + member: Status + parent: CF_AppTransStat_t + type: enumeration + - enumerations: + CANCEL_REQUEST_RECEIVED: 15 + FILESTORE_REJECTION: 4 + FILE_CHECKSUM_FAILURE: 5 + FILE_SIZE_ERROR: 6 + INACTIVITY_DETECTED: 8 + INVALID_FILE_STRUCTURE: 9 + INVALID_TRANSMISSION_MODE: 3 + KEEP_ALIVE_LIMIT_REACHED: 2 + NAK_LIMIT_REACHED: 7 + NO_ERROR: 0 + POSITIVE_ACK_LIMIT_REACHED: 1 + RESERVED_BY_CCSDS_10: 10 + RESERVED_BY_CCSDS_11: 11 + RESERVED_BY_CCSDS_12: 12 + RESERVED_BY_CCSDS_13: 13 + SUSPEND_REQUEST_RECEIVED: 14 + member: CondCode + parent: CF_AppTransStat_t + type: enumeration + - enumerations: + CLASS_1: 1 + CLASS_2: 2 + member: Class + parent: CF_AppTransStat_t + type: enumeration + - enumerations: + PLAYBACK_DIR_CMD: 2 + PLAYBACK_FILE_CMD: 1 + POLL_DIRECTORY: 3 + member: Source + parent: CF_AppTransStat_t + type: enumeration + - enumerations: + ALL: 0 + PLAYBACK: 2 + UPLINK: 1 + member: NodeType + parent: CF_AppTransStat_t + type: enumeration + - member: SrcEntityId + parent: CF_AppTransStat_t + type: string + - member: SrcFile + parent: CF_AppTransStat_t + type: string + - member: DstFile + parent: CF_AppTransStat_t + type: string + - enumerations: + ABANDON: 3 + ACTIVE: 9 + ALREADY_ACTIVE: 6 + CANCELLED: 2 + NO_META: 4 + PENDING: 5 + PUT_REQ_FAIL: 8 + PUT_REQ_ISSUED: 7 + SUCCESS: 1 + UNKNOWN: 0 + member: TransStatus + parent: CF_QueueInfoFileEntry_t + type: enumeration + - member: SrcEntityId + parent: CF_QueueInfoFileEntry_t + type: string + - member: SrcFile + parent: CF_QueueInfoFileEntry_t + type: string + - member: SaveIncompleteFiles + parent: CF_ConfigPacket_t + type: string + - member: PipeName + parent: CF_ConfigPacket_t + type: string + - member: TmpFilePrefix + parent: CF_ConfigPacket_t + type: string + - member: CfgTblName + parent: CF_ConfigPacket_t + type: string + - member: CfgTbleFilename + parent: CF_ConfigPacket_t + type: string + - member: DefQInfoFilename + parent: CF_ConfigPacket_t + type: string + perfids: + CF_CYCLE_ENG_PERF_ID: + id: 36 + CF_FCLOSE_PERF_ID: + id: 37 + CF_FILESIZE_PERF_ID: + id: 38 + CF_FOPEN_PERF_ID: + id: 39 + CF_FREAD_PERF_ID: + id: 40 + CF_FWRITE_PERF_ID: + id: 41 + CF_QDIRFILES_PERF_ID: + id: 42 + CF_REDLIGHT_PERF_ID: + id: 43 + short_name: cf + telemetry: + CF_CONFIG_TLM_MID: + msgID: 2104 + struct: CF_ConfigPacket_t + CF_HK_TLM_MID: + msgID: 2105 + struct: CF_HkPacket_t + CF_INCOMING_PDU_MID: + msgID: 6202 + CF_TRANS_TLM_MID: + msgID: 2107 + struct: CF_TransPacket_t + cfs_lib: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/CFS_LIB.so + ci: + app_name: CI + commands: + CI_CMD_MID: + commands: + AuthorizeCmd: + cc: 2 + struct: CI_CmdAuthData_t + DeauthorizeCmd: + cc: 3 + struct: CI_CmdAuthData_t + DeregisterCmd: + cc: 5 + struct: CI_CmdRegData_t + Noop: + cc: 0 + struct: CI_NoArgCmd_t + RegisterCmd: + cc: 4 + struct: CI_CmdRegData_t + Reset: + cc: 1 + struct: CI_NoArgCmd_t + UpdateCmd: + cc: 6 + struct: CI_CmdRegData_t + msgID: 6196 + CI_INGEST_COMMANDS_MID: + commands: + IngestCommands: + cc: 0 + struct: CI_NoArgCmd_t + msgID: 6629 + CI_PROCESS_TIMEOUTS_MID: + commands: + ProcessTimeouts: + cc: 0 + struct: CI_NoArgCmd_t + msgID: 6197 + CI_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CI_NoArgCmd_t + msgID: 6198 + CI_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: CI_NoArgCmd_t + msgID: 6199 + config: + CI_CHECKSUM_REQUIRED: + name: CI_CHECKSUM_REQUIRED + value: 0 + CI_CMD_MAX_TIMEOUT: + name: CI_CMD_MAX_TIMEOUT + value: 20 + CI_CMD_PIPE_DEPTH: + name: CI_CMD_PIPE_DEPTH + value: 4 + CI_CMD_PIPE_NAME: + name: CI_CMD_PIPE_NAME + value: CI_CMD_PIPE + CI_CONFIG_TABLE_FILENAME: + name: CI_CONFIG_TABLE_FILENAME + value: /cf/apps/ci_config.tbl + CI_DATA_PIPE_DEPTH: + name: CI_DATA_PIPE_DEPTH + value: 4 + CI_DATA_PIPE_NAME: + name: CI_DATA_PIPE_NAME + value: CI_DATA_PIPE + CI_INGEST_MODE: + name: CI_INGEST_MODE + value: CI_BHV_OPTIMISTIC + CI_MAX_ENC_LEN: + name: CI_MAX_ENC_LEN + value: 32768 + CI_MAX_RGST_CMDS: + name: CI_MAX_RGST_CMDS + value: 100 + CI_MISSION_REV: + name: CI_MISSION_REV + value: 0 + CI_SB_TIMEOUT: + name: CI_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + CI_SCH_PIPE_DEPTH: + name: CI_SCH_PIPE_DEPTH + value: 2 + CI_SCH_PIPE_NAME: + name: CI_SCH_PIPE_NAME + value: CI_SCH_PIPE + CI_SCH_PIPE_PEND_TIME: + name: CI_SCH_PIPE_PEND_TIME + value: 2000 + CI_SCH_PIPE_PROC_TIMEOUT_RESERVED: + name: CI_SCH_PIPE_PROC_TIMEOUT_RESERVED + value: 1 + CI_SCH_PIPE_SEND_HK_RESERVED: + name: CI_SCH_PIPE_SEND_HK_RESERVED + value: 1 + CI_SCH_PIPE_WAKEUP_RESERVED: + name: CI_SCH_PIPE_WAKEUP_RESERVED + value: 1 + CI_STARTUP_TIMEOUT_MSEC: + name: CI_STARTUP_TIMEOUT_MSEC + value: 5000 + CI_TIMEOUT_TABLE_FILENAME: + name: CI_TIMEOUT_TABLE_FILENAME + value: /cf/apps/ci_timeout.tbl + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/ci/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/CI.so + events: + CI_CMD_ALREADY_REGISTERED_EID: + id: 28 + CI_CMD_AUTHORIZED_EID: + id: 22 + CI_CMD_AUTH_INV_MODE_EID: + id: 20 + CI_CMD_AUTH_INV_STATE_EID: + id: 21 + CI_CMD_AUTH_NOT_REG_EID: + id: 19 + CI_CMD_AUTH_TIMEOUT_EID: + id: 18 + CI_CMD_DEAUTHORIZED_EID: + id: 26 + CI_CMD_DEAUTH_INV_MODE_EID: + id: 24 + CI_CMD_DEAUTH_INV_STATE_EID: + id: 25 + CI_CMD_DEAUTH_NOT_REG_EID: + id: 23 + CI_CMD_DEREGISTERED_EID: + id: 29 + CI_CMD_ERR_EID: + id: 8 + CI_CMD_INF_EID: + id: 3 + CI_CMD_INGEST_ERR_EID: + id: 13 + CI_CMD_INVALID_EID: + id: 16 + CI_CMD_NOT_REGISTERED_EID: + id: 30 + CI_CMD_REGISTERED_EID: + id: 27 + CI_CMD_REG_ERR_EID: + id: 31 + CI_CMD_UNAUTHORIZED_EID: + id: 17 + CI_CMD_UPDATE_REG_EID: + id: 33 + CI_CMD_UPDT_REG_INVLD_STATE_EI: + id: 32 + CI_CONFIG_TABLE_ERR_EID: + id: 6 + CI_CONFIG_TABLE_INF_EID: + id: 2 + CI_ENA_INF_EID: + id: 15 + CI_ERR_EID: + id: 4 + CI_INIT_ERR_EID: + id: 5 + CI_INIT_INF_EID: + id: 1 + CI_MSGID_ERR_EID: + id: 10 + CI_MSGLEN_ERR_EID: + id: 11 + CI_NO_DECODE_FUNC_EID: + id: 34 + CI_PIPE_ERR_EID: + id: 9 + CI_TIMEOUT_TABLE_ERR_EID: + id: 7 + long_name: Command Ingest + module_type: CFE_APP + perfids: + CF_APPMAIN_PERF_ID: + id: 33 + CI_MAIN_TASK_PERF_ID: + id: 34 + CI_SOCKET_RCV_PERF_ID: + id: 35 + short_name: ci + telemetry: + CI_HK_TLM_MID: + msgID: 2098 + struct: CI_HkTlm_t + core: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/airliner + modules: + cfe: + config: + CFE_CMD_APPID_BASE_CPU1: + name: CFE_CMD_APPID_BASE_CPU1 + value: 1 + CFE_CMD_APPID_BASE_CPU2: + name: CFE_CMD_APPID_BASE_CPU2 + value: 33 + CFE_CMD_APPID_BASE_CPU3: + name: CFE_CMD_APPID_BASE_CPU3 + value: 65 + CFE_CMD_MID_BASE_CPU1: + name: CFE_CMD_MID_BASE_CPU1 + value: 6144 + CFE_CMD_MID_BASE_CPU2: + name: CFE_CMD_MID_BASE_CPU2 + value: 6176 + CFE_CMD_MID_BASE_CPU3: + name: CFE_CMD_MID_BASE_CPU3 + value: 6208 + CFE_CMD_MID_BASE_GLOB: + name: CFE_CMD_MID_BASE_GLOB + value: 6240 + CFE_CORE_MAX_STARTUP_MSEC: + name: CFE_CORE_MAX_STARTUP_MSEC + value: 30000 + CFE_CPU_ID: + name: CFE_CPU_ID + value: 1 + CFE_CPU_NAME: + name: CFE_CPU_NAME + value: CPU1 + CFE_MISSION_REV: + name: CFE_MISSION_REV + value: 0 + CFE_SPACECRAFT_ID: + name: CFE_SPACECRAFT_ID + value: 66 + CFE_TLM_APPID_BASE_CPU1: + name: CFE_TLM_APPID_BASE_CPU1 + value: 0 + CFE_TLM_APPID_BASE_CPU2: + name: CFE_TLM_APPID_BASE_CPU2 + value: 32 + CFE_TLM_APPID_BASE_CPU3: + name: CFE_TLM_APPID_BASE_CPU3 + value: 64 + CFE_TLM_MID_BASE_CPU1: + name: CFE_TLM_MID_BASE_CPU1 + value: 2048 + CFE_TLM_MID_BASE_CPU2: + name: CFE_TLM_MID_BASE_CPU2 + value: 2080 + CFE_TLM_MID_BASE_CPU3: + name: CFE_TLM_MID_BASE_CPU3 + value: 2112 + CFE_TLM_MID_BASE_GLOB: + name: CFE_TLM_MID_BASE_GLOB + value: 2144 + MESSAGE_FORMAT_IS_CCSDS: + name: MESSAGE_FORMAT_IS_CCSDS + value: true + definition: /home/lgomez/squeaky-weasel/software/airliner/public/core/base/cfe/wh_design.yaml + long_name: Core Flight Executive + modules: + cfe_es: + app_name: CFE_ES + commands: + CFE_ES_CMD_MID: + commands: + AppReload: + cc: 7 + struct: CFE_ES_AppReloadCmd_t + ClearERLog: + cc: 12 + struct: CFE_SB_CmdHdr_t + ClearSysLog: + cc: 10 + struct: CFE_SB_CmdHdr_t + DeleteCDS: + cc: 21 + struct: CFE_ES_DeleteCDSCmd_t + DumpCDSReg: + cc: 23 + struct: CFE_ES_DumpCDSRegCmd_t + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + PerfSetFilterMask: + cc: 16 + struct: CFE_ES_PerfSetFilterMaskCmd_t + PerfSetTrigMask: + cc: 17 + struct: CFE_ES_PerfSetTrigMaskCmd_t + PerfStart: + cc: 14 + struct: CFE_ES_PerfStartCmd_t + PerfStop: + cc: 15 + struct: CFE_ES_PerfStopCmd_t + QueryAllApps: + cc: 9 + struct: CFE_ES_QueryAllCmd_t + QueryAllTasks: + cc: 24 + struct: CFE_ES_QueryAllTasksCmd_t + QueryOneApp: + cc: 8 + struct: CFE_ES_AppNameCmd_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + ResetPRCount: + cc: 19 + struct: CFE_SB_CmdHdr_t + Restart: + cc: 2 + struct: CFE_ES_RestartCmd_t + RestartApp: + cc: 6 + struct: CFE_ES_AppNameCmd_t + SetMaxPRCount: + cc: 20 + struct: CFE_ES_SetMaxPRCountCmd_t + SetSysLogMode: + cc: 18 + struct: CFE_ES_OverWriteSysLogCmd_t + ShellCmd: + cc: 3 + struct: CFE_ES_ShellCmd_t + StartApp: + cc: 4 + struct: CFE_ES_StartAppCmd_t + StopApp: + cc: 5 + struct: CFE_ES_AppNameCmd_t + TlmPoolStats: + cc: 22 + struct: CFE_ES_TlmPoolStatsCmd_t + WriteERLog: + cc: 13 + struct: CFE_ES_WriteERlogCmd_t + WriteSysLog: + cc: 11 + struct: CFE_ES_WriteSyslogCmd_t + msgID: 6148 + CFE_ES_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6149 + config: + CFE_ES_APP_KILL_TIMEOUT: + name: CFE_ES_APP_KILL_TIMEOUT + value: 5 + CFE_ES_APP_SCAN_RATE: + name: CFE_ES_APP_SCAN_RATE + value: 1000 + CFE_ES_APP_TLM_MSG: + name: CFE_ES_APP_TLM_MSG + value: 11 + CFE_ES_CDS_MAX_NAME_LENGTH: + name: CFE_ES_CDS_MAX_NAME_LENGTH + value: 16 + CFE_ES_CDS_MAX_NUM_ENTRIES: + name: CFE_ES_CDS_MAX_NUM_ENTRIES + value: 512 + CFE_ES_CDS_MEM_BLOCK_SIZE: + name: CFE_ES_CDS_MEM_BLOCK_SIZE + value: 80000 + CFE_ES_CDS_MEM_BLOCK_SIZE_01: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_01 + value: 8 + CFE_ES_CDS_MEM_BLOCK_SIZE_02: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_02 + value: 16 + CFE_ES_CDS_MEM_BLOCK_SIZE_03: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_03 + value: 32 + CFE_ES_CDS_MEM_BLOCK_SIZE_04: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_04 + value: 48 + CFE_ES_CDS_MEM_BLOCK_SIZE_05: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_05 + value: 64 + CFE_ES_CDS_MEM_BLOCK_SIZE_06: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_06 + value: 96 + CFE_ES_CDS_MEM_BLOCK_SIZE_07: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_07 + value: 128 + CFE_ES_CDS_MEM_BLOCK_SIZE_08: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_08 + value: 160 + CFE_ES_CDS_MEM_BLOCK_SIZE_09: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_09 + value: 256 + CFE_ES_CDS_MEM_BLOCK_SIZE_10: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_10 + value: 512 + CFE_ES_CDS_MEM_BLOCK_SIZE_11: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_11 + value: 1024 + CFE_ES_CDS_MEM_BLOCK_SIZE_12: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_12 + value: 2048 + CFE_ES_CDS_MEM_BLOCK_SIZE_13: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_13 + value: 4096 + CFE_ES_CDS_MEM_BLOCK_SIZE_14: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_14 + value: 8192 + CFE_ES_CDS_MEM_BLOCK_SIZE_15: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_15 + value: 16384 + CFE_ES_CDS_MEM_BLOCK_SIZE_16: + name: CFE_ES_CDS_MEM_BLOCK_SIZE_16 + value: 32768 + CFE_ES_CDS_SIZE: + name: CFE_ES_CDS_SIZE + value: 128 * 2048 + CFE_ES_CMD_MSG: + name: CFE_ES_CMD_MSG + value: 6 + CFE_ES_CRC_16: + name: CFE_ES_CRC_16 + value: 2 + CFE_ES_CRC_32: + name: CFE_ES_CRC_32 + value: 3 + CFE_ES_CRC_8: + name: CFE_ES_CRC_8 + value: 1 + CFE_ES_DEFAULT_APP_LOG_FILE: + name: CFE_ES_DEFAULT_APP_LOG_FILE + value: /ram/cfe_es_app_info.log + CFE_ES_DEFAULT_CDS_REG_DUMP_FILE: + name: CFE_ES_DEFAULT_CDS_REG_DUMP_FILE + value: /ram/cfe_cds_reg.log + CFE_ES_DEFAULT_CRC: + name: CFE_ES_DEFAULT_CRC + value: CFE_ES_CRC_16 + CFE_ES_DEFAULT_ER_LOG_FILE: + name: CFE_ES_DEFAULT_ER_LOG_FILE + value: /ram/cfe_erlog.log + CFE_ES_DEFAULT_PERF_DUMP_FILENAME: + name: CFE_ES_DEFAULT_PERF_DUMP_FILENAME + value: /ram/cfe_es_perf.dat + CFE_ES_DEFAULT_SHELL_FILENAME: + name: CFE_ES_DEFAULT_SHELL_FILENAME + value: /ram/ShellCmd.out + CFE_ES_DEFAULT_STACK_SIZE: + name: CFE_ES_DEFAULT_STACK_SIZE + value: 16384 + CFE_ES_DEFAULT_SYSLOG_FILE: + name: CFE_ES_DEFAULT_SYSLOG_FILE + value: /ram/cfe_es_syslog.log + CFE_ES_DEFAULT_SYSLOG_MODE: + name: CFE_ES_DEFAULT_SYSLOG_MODE + value: 1 + CFE_ES_DEFAULT_TASK_LOG_FILE: + name: CFE_ES_DEFAULT_TASK_LOG_FILE + value: /ram/cfe_es_task_info.log + CFE_ES_ER_LOG_ENTRIES: + name: CFE_ES_ER_LOG_ENTRIES + value: 20 + CFE_ES_ER_LOG_MAX_CONTEXT_SIZE: + name: CFE_ES_ER_LOG_MAX_CONTEXT_SIZE + value: 128 + CFE_ES_HK_TLM_MSG: + name: CFE_ES_HK_TLM_MSG + value: 0 + CFE_ES_MAX_APPLICATIONS: + name: CFE_ES_MAX_APPLICATIONS + value: 64 + CFE_ES_MAX_GEN_COUNTERS: + name: CFE_ES_MAX_GEN_COUNTERS + value: 8 + CFE_ES_MAX_LIBRARIES: + name: CFE_ES_MAX_LIBRARIES + value: 10 + CFE_ES_MAX_PROCESSOR_RESETS: + name: CFE_ES_MAX_PROCESSOR_RESETS + value: 2 + CFE_ES_MAX_SHELL_CMD: + name: CFE_ES_MAX_SHELL_CMD + value: 64 + CFE_ES_MAX_SHELL_PKT: + name: CFE_ES_MAX_SHELL_PKT + value: 64 + CFE_ES_MEMPOOL_ALIGNED: + name: CFE_ES_MEMPOOL_ALIGNED + value: 1 + CFE_ES_MEMSTATS_TLM_MSG: + name: CFE_ES_MEMSTATS_TLM_MSG + value: 16 + CFE_ES_MEM_BLOCK_SIZE: + name: CFE_ES_MEM_BLOCK_SIZE + value: 200000 + CFE_ES_MEM_BLOCK_SIZE_01: + name: CFE_ES_MEM_BLOCK_SIZE_01 + value: 8 + CFE_ES_MEM_BLOCK_SIZE_02: + name: CFE_ES_MEM_BLOCK_SIZE_02 + value: 16 + CFE_ES_MEM_BLOCK_SIZE_03: + name: CFE_ES_MEM_BLOCK_SIZE_03 + value: 32 + CFE_ES_MEM_BLOCK_SIZE_04: + name: CFE_ES_MEM_BLOCK_SIZE_04 + value: 48 + CFE_ES_MEM_BLOCK_SIZE_05: + name: CFE_ES_MEM_BLOCK_SIZE_05 + value: 64 + CFE_ES_MEM_BLOCK_SIZE_06: + name: CFE_ES_MEM_BLOCK_SIZE_06 + value: 96 + CFE_ES_MEM_BLOCK_SIZE_07: + name: CFE_ES_MEM_BLOCK_SIZE_07 + value: 128 + CFE_ES_MEM_BLOCK_SIZE_08: + name: CFE_ES_MEM_BLOCK_SIZE_08 + value: 160 + CFE_ES_MEM_BLOCK_SIZE_09: + name: CFE_ES_MEM_BLOCK_SIZE_09 + value: 256 + CFE_ES_MEM_BLOCK_SIZE_10: + name: CFE_ES_MEM_BLOCK_SIZE_10 + value: 512 + CFE_ES_MEM_BLOCK_SIZE_11: + name: CFE_ES_MEM_BLOCK_SIZE_11 + value: 1024 + CFE_ES_MEM_BLOCK_SIZE_12: + name: CFE_ES_MEM_BLOCK_SIZE_12 + value: 2048 + CFE_ES_MEM_BLOCK_SIZE_13: + name: CFE_ES_MEM_BLOCK_SIZE_13 + value: 4096 + CFE_ES_MEM_BLOCK_SIZE_14: + name: CFE_ES_MEM_BLOCK_SIZE_14 + value: 8192 + CFE_ES_MEM_BLOCK_SIZE_15: + name: CFE_ES_MEM_BLOCK_SIZE_15 + value: 16384 + CFE_ES_MEM_BLOCK_SIZE_16: + name: CFE_ES_MEM_BLOCK_SIZE_16 + value: 80000 + CFE_ES_NONVOL_STARTUP_FILE: + name: CFE_ES_NONVOL_STARTUP_FILE + value: /cf/apps/cfe_es_startup.scr + CFE_ES_OBJECT_TABLE_SIZE: + name: CFE_ES_OBJECT_TABLE_SIZE + value: 30 + CFE_ES_PERF_CHILD_MS_DELAY: + name: CFE_ES_PERF_CHILD_MS_DELAY + value: 20 + CFE_ES_PERF_CHILD_PRIORITY: + name: CFE_ES_PERF_CHILD_PRIORITY + value: 200 + CFE_ES_PERF_CHILD_STACK_SIZE: + name: CFE_ES_PERF_CHILD_STACK_SIZE + value: 16384 + CFE_ES_PERF_DATA_BUFFER_SIZE: + name: CFE_ES_PERF_DATA_BUFFER_SIZE + value: 10000 + CFE_ES_PERF_ENTRIES_BTWN_DLYS: + name: CFE_ES_PERF_ENTRIES_BTWN_DLYS + value: 50 + CFE_ES_PERF_FILTMASK_ALL: + name: CFE_ES_PERF_FILTMASK_ALL + value: ~CFE_ES_PERF_FILTMASK_NONE + CFE_ES_PERF_FILTMASK_INIT: + name: CFE_ES_PERF_FILTMASK_INIT + value: CFE_ES_PERF_FILTMASK_ALL + CFE_ES_PERF_FILTMASK_NONE: + name: CFE_ES_PERF_FILTMASK_NONE + value: 0 + CFE_ES_PERF_MAX_IDS: + name: CFE_ES_PERF_MAX_IDS + value: 128 + CFE_ES_PERF_TRIGMASK_ALL: + name: CFE_ES_PERF_TRIGMASK_ALL + value: ~CFE_ES_PERF_TRIGMASK_NONE + CFE_ES_PERF_TRIGMASK_INIT: + name: CFE_ES_PERF_TRIGMASK_INIT + value: CFE_ES_PERF_TRIGMASK_NONE + CFE_ES_PERF_TRIGMASK_NONE: + name: CFE_ES_PERF_TRIGMASK_NONE + value: 0 + CFE_ES_RAM_DISK_MOUNT_STRING: + name: CFE_ES_RAM_DISK_MOUNT_STRING + value: /ram + CFE_ES_RAM_DISK_NUM_SECTORS: + name: CFE_ES_RAM_DISK_NUM_SECTORS + value: 4096 + CFE_ES_RAM_DISK_PERCENT_RESERVED: + name: CFE_ES_RAM_DISK_PERCENT_RESERVED + value: 30 + CFE_ES_RAM_DISK_SECTOR_SIZE: + name: CFE_ES_RAM_DISK_SECTOR_SIZE + value: 512 + CFE_ES_RESET_AREA_SIZE: + name: CFE_ES_RESET_AREA_SIZE + value: 170 * 2048 + CFE_ES_SEND_HK_MSG: + name: CFE_ES_SEND_HK_MSG + value: 8 + CFE_ES_SHELL_TLM_MSG: + name: CFE_ES_SHELL_TLM_MSG + value: 15 + CFE_ES_STARTUP_SCRIPT_TIMEOUT_MSEC: + name: CFE_ES_STARTUP_SCRIPT_TIMEOUT_MSEC + value: 30000 + CFE_ES_STARTUP_SYNC_POLL_MSEC: + name: CFE_ES_STARTUP_SYNC_POLL_MSEC + value: 50 + CFE_ES_START_TASK_FLAGS: + name: CFE_ES_START_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CFE_ES_START_TASK_PRIORITY: + name: CFE_ES_START_TASK_PRIORITY + value: 68 + CFE_ES_START_TASK_STACK_SIZE: + name: CFE_ES_START_TASK_STACK_SIZE + value: 16384 + CFE_ES_SYSTEM_LOG_SIZE: + name: CFE_ES_SYSTEM_LOG_SIZE + value: 3072 + CFE_ES_USER_RESERVED_SIZE: + name: CFE_ES_USER_RESERVED_SIZE + value: 1024 * 2048 + CFE_ES_VOLATILE_STARTUP_FILE: + name: CFE_ES_VOLATILE_STARTUP_FILE + value: /ram/apps/cfe_es_startup.scr + events: + CFE_ES_ALL_APPS_EID: + id: 16 + CFE_ES_BOOT_ERR_EID: + id: 24 + CFE_ES_BUILD_INF_EID: + id: 92 + CFE_ES_CC1_ERR_EID: + id: 22 + CFE_ES_CDS_DELETED_INFO_EID: + id: 78 + CFE_ES_CDS_DELETE_ERR_EID: + id: 76 + CFE_ES_CDS_DELETE_TBL_ERR_EID: + id: 79 + CFE_ES_CDS_DUMP_ERR_EID: + id: 84 + CFE_ES_CDS_NAME_ERR_EID: + id: 77 + CFE_ES_CDS_OWNER_ACTIVE_EID: + id: 80 + CFE_ES_CDS_REGISTER_ERR_EID: + id: 69 + CFE_ES_CDS_REG_DUMP_INF_EID: + id: 83 + CFE_ES_CREATING_CDS_DUMP_ERR_EID: + id: 86 + CFE_ES_ERLOG1_INF_EID: + id: 19 + CFE_ES_ERLOG2_EID: + id: 20 + CFE_ES_ERLOG2_ERR_EID: + id: 56 + CFE_ES_ERREXIT_APP_ERR_EID: + id: 33 + CFE_ES_ERREXIT_APP_INF_EID: + id: 14 + CFE_ES_ERR_SYSLOGMODE_EID: + id: 71 + CFE_ES_EXIT_APP_ERR_EID: + id: 46 + CFE_ES_EXIT_APP_INF_EID: + id: 13 + CFE_ES_FILEWRITE_ERR_EID: + id: 74 + CFE_ES_INITSTATS_INF_EID: + id: 2 + CFE_ES_INIT_INF_EID: + id: 1 + CFE_ES_INVALID_POOL_HANDLE_ERR_EID: + id: 82 + CFE_ES_LEN_ERR_EID: + id: 23 + CFE_ES_MID_ERR_EID: + id: 21 + CFE_ES_NOOP_INF_EID: + id: 3 + CFE_ES_ONE_APPID_ERR_EID: + id: 50 + CFE_ES_ONE_APP_EID: + id: 15 + CFE_ES_ONE_ERR_EID: + id: 49 + CFE_ES_OSCREATE_ERR_EID: + id: 51 + CFE_ES_PCR_ERR1_EID: + id: 47 + CFE_ES_PCR_ERR2_EID: + id: 48 + CFE_ES_PERF_DATAWRITTEN_EID: + id: 68 + CFE_ES_PERF_FILTMSKCMD_EID: + id: 63 + CFE_ES_PERF_FILTMSKERR_EID: + id: 64 + CFE_ES_PERF_LOG_ERR_EID: + id: 67 + CFE_ES_PERF_STARTCMD_EID: + id: 57 + CFE_ES_PERF_STARTCMD_ERR_EID: + id: 58 + CFE_ES_PERF_STARTCMD_TRIG_ERR_EID: + id: 59 + CFE_ES_PERF_STOPCMD_EID: + id: 60 + CFE_ES_PERF_STOPCMD_ERR1_EID: + id: 61 + CFE_ES_PERF_STOPCMD_ERR2_EID: + id: 62 + CFE_ES_PERF_TRIGMSKCMD_EID: + id: 65 + CFE_ES_PERF_TRIGMSKERR_EID: + id: 66 + CFE_ES_RELOAD_APP_DBG_EID: + id: 11 + CFE_ES_RELOAD_APP_ERR1_EID: + id: 42 + CFE_ES_RELOAD_APP_ERR2_EID: + id: 43 + CFE_ES_RELOAD_APP_ERR3_EID: + id: 44 + CFE_ES_RELOAD_APP_ERR4_EID: + id: 45 + CFE_ES_RELOAD_APP_INF_EID: + id: 12 + CFE_ES_RESET_INF_EID: + id: 4 + CFE_ES_RESET_PR_COUNT_EID: + id: 72 + CFE_ES_RESTART_APP_DBG_EID: + id: 9 + CFE_ES_RESTART_APP_ERR1_EID: + id: 38 + CFE_ES_RESTART_APP_ERR2_EID: + id: 39 + CFE_ES_RESTART_APP_ERR3_EID: + id: 40 + CFE_ES_RESTART_APP_ERR4_EID: + id: 41 + CFE_ES_RESTART_APP_INF_EID: + id: 10 + CFE_ES_RST_ACCESS_EID: + id: 75 + CFE_ES_SET_MAX_PR_COUNT_EID: + id: 73 + CFE_ES_SHELL_ERR_EID: + id: 25 + CFE_ES_SHELL_INF_EID: + id: 5 + CFE_ES_START_ERR_EID: + id: 26 + CFE_ES_START_EXC_ACTION_ERR_EID: + id: 32 + CFE_ES_START_INF_EID: + id: 6 + CFE_ES_START_INVALID_ENTRY_POINT_ERR_EID: + id: 28 + CFE_ES_START_INVALID_FILENAME_ERR_EID: + id: 27 + CFE_ES_START_NULL_APP_NAME_ERR_EID: + id: 29 + CFE_ES_START_PRIORITY_ERR_EID: + id: 31 + CFE_ES_START_STACK_ERR_EID: + id: 30 + CFE_ES_STOP_DBG_EID: + id: 7 + CFE_ES_STOP_ERR1_EID: + id: 35 + CFE_ES_STOP_ERR2_EID: + id: 36 + CFE_ES_STOP_ERR3_EID: + id: 37 + CFE_ES_STOP_INF_EID: + id: 8 + CFE_ES_SYSLOG1_INF_EID: + id: 17 + CFE_ES_SYSLOG2_EID: + id: 18 + CFE_ES_SYSLOG2_ERR_EID: + id: 55 + CFE_ES_SYSLOGMODE_EID: + id: 70 + CFE_ES_TASKINFO_EID: + id: 87 + CFE_ES_TASKINFO_OSCREATE_ERR_EID: + id: 88 + CFE_ES_TASKINFO_WRHDR_ERR_EID: + id: 89 + CFE_ES_TASKINFO_WR_ERR_EID: + id: 90 + CFE_ES_TASKWR_ERR_EID: + id: 53 + CFE_ES_TLM_POOL_STATS_INFO_EID: + id: 81 + CFE_ES_VERSION_INF_EID: + id: 91 + CFE_ES_WRHDR_ERR_EID: + id: 52 + CFE_ES_WRITE_CFE_HDR_ERR_EID: + id: 85 + long_name: Core Flight Executive - Essential Services + module_type: CFE_CORE + msg_def_overrides: + - enumerations: + POWERON_RESET: 2 + PROCESSOR_RESET: 1 + member: RestartType + parent: CFE_ES_RestartCmd_Payload_t + type: enumeration + - member: CmdString + parent: CFE_ES_ShellCmd_Payload_t + type: string + - member: OutputFilename + parent: CFE_ES_ShellCmd_Payload_t + type: string + - member: QueryAllFileName + parent: CFE_ES_QueryAllCmd_Payload_t + type: string + - member: QueryAllFileName + parent: CFE_ES_QueryAllTasksCmd_Payload_t + type: string + - member: SysLogFileName + parent: CFE_ES_WriteSyslogCmd_Payload_t + type: string + - member: ERLogFileName + parent: CFE_ES_WriteERlogCmd_Payload_t + type: string + - member: Application + parent: CFE_ES_AppReloadCmd_Payload_t + type: string + - member: AppFileName + parent: CFE_ES_AppReloadCmd_Payload_t + type: string + - member: CdsName + parent: CFE_ES_DeleteCDSCmd_Payload_t + type: string + - enumerations: + CENTER: 1 + END: 2 + START: 0 + member: TriggerMode + parent: CFE_ES_PerfStartCmd_Payload_t + type: enumeration + - member: DataFileName + parent: CFE_ES_PerfStopCmd_Payload_t + type: string + - member: Application + parent: CFE_ES_TlmPoolStatsCmd_Payload_t + type: string + - member: DumpFilename + parent: CFE_ES_DumpCDSRegCmd_Payload_t + type: string + - enumerations: + CORE: 1 + EXTERNAL: 2 + member: Type + parent: CFE_ES_AppInfo_t + type: enumeration + - member: Name + parent: CFE_ES_AppInfo_t + type: string + - member: EntryPoint + parent: CFE_ES_AppInfo_t + type: string + - member: FileName + parent: CFE_ES_AppInfo_t + type: string + - enumerations: + PROC_RESTART: 1 + RESTART_APP: 0 + member: ExceptionAction + parent: CFE_ES_AppInfo_t + type: enumeration + - member: MainTaskName + parent: CFE_ES_AppInfo_t + type: string + - enumerations: + DISCARD: 1 + OVERWRITE: 0 + member: Mode + parent: CFE_ES_OverWriteSysLogCmd_Payload_t + type: enumeration + - enumerations: + DROP: 1 + OVERWRITE: 0 + member: SysLogMode + parent: CFE_ES_HkPacket_Payload_t + type: enumeration + - enumerations: + POWERUP: 2 + PROCESSOR: 1 + member: ResetType + parent: CFE_ES_HkPacket_Payload_t + type: enumeration + - enumerations: + BANKSWITCH_RESET: 9 + EXCEPTION: 6 + HWDEBUG_RESET: 8 + HW_SPECIAL_COMMAND: 3 + HW_WATCHDOG: 4 + POWER_CYCLE: 1 + PUSH_BUTTON: 2 + RESET_COMMAND: 5 + UNDEFINED_RESET: 7 + member: ResetSubtype + parent: CFE_ES_HkPacket_Payload_t + type: enumeration + - enumerations: + IDLE: 0 + TRIGGERED: 2 + WAITING_FOR_TRIGGER: 1 + member: PerfState + parent: CFE_ES_HkPacket_Payload_t + type: enumeration + - enumerations: + TRIGGER_CENTER: 1 + TRIGGER_END: 2 + TRIGGER_START: 0 + member: PerfMode + parent: CFE_ES_HkPacket_Payload_t + type: enumeration + - member: ShellOutput + parent: CFE_ES_ShellPacket_Payload_t + type: string + - member: Application + parent: CFE_ES_StartAppCmd_Payload_t + type: string + - member: AppEntryPoint + parent: CFE_ES_StartAppCmd_Payload_t + type: string + - member: AppFileName + parent: CFE_ES_StartAppCmd_Payload_t + type: string + - enumerations: + PROC_RESTART: 1 + RESTART_APP: 0 + member: ExceptionAction + parent: CFE_ES_StartAppCmd_Payload_t + type: enumeration + - member: Application + parent: CFE_ES_AppNameCmd_Payload_t + type: string + - member: AppName + parent: CFE_EVS_PacketID_t + type: string + perfids: + CFE_ES_MAIN_PERF_ID: + id: 1 + short_name: cfe_es + telemetry: + CFE_ES_APP_TLM_MID: + msgID: 2071 + struct: CFE_ES_OneAppTlm_t + CFE_ES_HK_TLM_MID: + msgID: 2063 + struct: CFE_ES_HkPacket_t + CFE_ES_MEMSTATS_TLM_MID: + msgID: 2076 + struct: CFE_ES_PoolStatsTlm_t + CFE_ES_SHELL_TLM_MID: + msgID: 2075 + struct: CFE_ES_ShellPacket_t + type_remaps: + CFE_ES_MemHandle_t: uint32 + cpuaddr: uint32 + cfe_evs: + app_name: CFE_EVS + commander_templates: + _EVENT_CONTROL: + output: EventControl.bob + scope: GLOBAL + template: cdr/EVS/resources/templates/EventControl.j2 + commands: + CFE_EVS_CMD_MID: + commands: + AddAppEventFilter: + cc: 15 + struct: CFE_EVS_AppNameEventIDMaskCmd_t + ClearLog: + cc: 20 + struct: CFE_SB_CmdHdr_t + DeleteAppEventFilter: + cc: 16 + struct: CFE_EVS_AppNameEventIDCmd_t + DisableAppEventType: + cc: 6 + struct: CFE_EVS_AppNameBitMaskCmd_t + DisableAppEvents: + cc: 8 + struct: CFE_EVS_AppNameCmd_t + DisableEventType: + cc: 3 + struct: CFE_EVS_BitMaskCmd_t + DisablePorts: + cc: 12 + struct: CFE_EVS_BitMaskCmd_t + EnableAppEventType: + cc: 5 + struct: CFE_EVS_AppNameBitMaskCmd_t + EnableAppEvents: + cc: 7 + struct: CFE_EVS_AppNameCmd_t + EnableEventType: + cc: 2 + struct: CFE_EVS_BitMaskCmd_t + EnablePorts: + cc: 11 + struct: CFE_EVS_BitMaskCmd_t + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + ResetAppEventCounters: + cc: 9 + struct: CFE_EVS_AppNameCmd_t + ResetAppEventFilter: + cc: 13 + struct: CFE_EVS_AppNameEventIDCmd_t + ResetAppFilters: + cc: 14 + struct: CFE_EVS_AppNameCmd_t + SetAppEventFilter: + cc: 10 + struct: CFE_EVS_AppNameEventIDMaskCmd_t + SetEventFormatMode: + cc: 4 + struct: CFE_EVS_FormatCmd_t + SetLogMode: + cc: 19 + struct: CFE_EVS_ModeCmd_t + WriteAppData: + cc: 17 + struct: CFE_EVS_AppDataCmd_t + WriteLogData: + cc: 18 + struct: CFE_EVS_LogFileCmd_t + msgID: 6144 + CFE_EVS_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6150 + config: + CFE_EVS_CMD_MSG: + name: CFE_EVS_CMD_MSG + value: 1 + CFE_EVS_DEFAULT_APP_DATA_FILE: + name: CFE_EVS_DEFAULT_APP_DATA_FILE + value: /ram/cfe_evs_app.dat + CFE_EVS_DEFAULT_LOG_FILE: + name: CFE_EVS_DEFAULT_LOG_FILE + value: /ram/cfe_evs.log + CFE_EVS_DEFAULT_LOG_MODE: + name: CFE_EVS_DEFAULT_LOG_MODE + value: 1 + CFE_EVS_DEFAULT_MSG_FORMAT_MODE: + name: CFE_EVS_DEFAULT_MSG_FORMAT_MODE + value: CFE_EVS_LONG_FORMAT + CFE_EVS_DEFAULT_TYPE_FLAG: + name: CFE_EVS_DEFAULT_TYPE_FLAG + value: 14 + CFE_EVS_EVENT_MSG_MSG: + name: CFE_EVS_EVENT_MSG_MSG + value: 8 + CFE_EVS_HK_TLM_MSG: + name: CFE_EVS_HK_TLM_MSG + value: 1 + CFE_EVS_LOG_MAX: + name: CFE_EVS_LOG_MAX + value: 20 + CFE_EVS_LOG_ON: + name: CFE_EVS_LOG_ON + value: true + CFE_EVS_MAX_EVENT_FILTERS: + name: CFE_EVS_MAX_EVENT_FILTERS + value: 255 + CFE_EVS_MAX_MESSAGE_LENGTH: + name: CFE_EVS_MAX_MESSAGE_LENGTH + value: 122 + CFE_EVS_PORT_DEFAULT: + name: CFE_EVS_PORT_DEFAULT + value: 1 + CFE_EVS_SEND_HK_MSG: + name: CFE_EVS_SEND_HK_MSG + value: 9 + CFE_EVS_START_TASK_FLAGS: + name: CFE_EVS_START_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CFE_EVS_START_TASK_PRIORITY: + name: CFE_EVS_START_TASK_PRIORITY + value: 61 + CFE_EVS_START_TASK_STACK_SIZE: + name: CFE_EVS_START_TASK_STACK_SIZE + value: CFE_ES_DEFAULT_STACK_SIZE + events: + CFE_EVS_ADDFILTER_EID: + id: 30 + CFE_EVS_DELFILTER_EID: + id: 31 + CFE_EVS_DISAPPENTTYPE_EID: + id: 24 + CFE_EVS_DISAPPEVT_EID: + id: 26 + CFE_EVS_DISEVTTYPE_EID: + id: 21 + CFE_EVS_DISPORT_EID: + id: 19 + CFE_EVS_ENAAPPEVTTYPE_EID: + id: 23 + CFE_EVS_ENAAPPEVT_EID: + id: 25 + CFE_EVS_ENAEVTTYPE_EID: + id: 20 + CFE_EVS_ENAPORT_EID: + id: 18 + CFE_EVS_ERR_APPNOREGS_EID: + id: 7 + CFE_EVS_ERR_CC_EID: + id: 15 + CFE_EVS_ERR_CRDATFILE_EID: + id: 13 + CFE_EVS_ERR_CRLOGFILE_EID: + id: 3 + CFE_EVS_ERR_EVTIDNOREGS_EID: + id: 6 + CFE_EVS_ERR_ILLAPPIDRANGE_EID: + id: 8 + CFE_EVS_ERR_ILLEGALFMTMOD_EID: + id: 10 + CFE_EVS_ERR_INVALID_BITMASK_EID: + id: 40 + CFE_EVS_ERR_LOGMODE_EID: + id: 39 + CFE_EVS_ERR_MAXREGSFILTER_EID: + id: 11 + CFE_EVS_ERR_MSGID_EID: + id: 5 + CFE_EVS_ERR_NOAPPIDFOUND_EID: + id: 9 + CFE_EVS_ERR_UNREGISTERED_EVS_APP: + id: 41 + CFE_EVS_ERR_WRDATFILE_EID: + id: 12 + CFE_EVS_ERR_WRLOGFILE_EID: + id: 2 + CFE_EVS_EVT_FILTERED_EID: + id: 37 + CFE_EVS_FILTER_MAX_EID: + id: 42 + CFE_EVS_LEN_ERR_EID: + id: 43 + CFE_EVS_LOGMODE_EID: + id: 38 + CFE_EVS_NO_LOGCLR_EID: + id: 35 + CFE_EVS_NO_LOGSET_EID: + id: 34 + CFE_EVS_NO_LOGWR_EID: + id: 36 + CFE_EVS_RSTALLFILTER_EID: + id: 29 + CFE_EVS_RSTCNT_EID: + id: 16 + CFE_EVS_RSTEVTCNT_EID: + id: 27 + CFE_EVS_RSTFILTER_EID: + id: 28 + CFE_EVS_SETEVTFMTMOD_EID: + id: 22 + CFE_EVS_SETFILTERMSK_EID: + id: 17 + CFE_EVS_WRDAT_EID: + id: 32 + CFE_EVS_WRLOG_EID: + id: 33 + long_name: Core Flight Executive - Event Services + module_type: CFE_CORE + msg_def_overrides: + - member: LogFilename + parent: CFE_EVS_LogFileCmd_Payload_t + type: string + - member: AppDataFilename + parent: CFE_EVS_AppDataCmd_Payload_t + type: string + - enumerations: + DISCARD: 1 + OVERWRITE: 0 + member: Mode + parent: CFE_EVS_ModeCmd_Payload_t + type: enumeration + - enumerations: + LONG: 1 + SHORT: 0 + member: Mode + parent: CFE_EVS_FormatCmd_Payload_t + type: enumeration + - member: AppName + parent: CFE_EVS_AppNameCmd_Payload_t + type: string + - member: AppName + parent: CFE_EVS_AppNameEventIDCmd_Payload_t + type: string + - member: AppName + parent: CFE_EVS_AppNameBitMaskCmd_Payload_t + type: string + - member: AppName + parent: CFE_EVS_AppNameEventIDMaskCmd_Payload_t + type: string + - enumerations: + LONG: 1 + SHORT: 0 + member: MessageFormatMode + parent: CFE_EVS_TlmPkt_Payload_t + type: enumeration + - enumerations: + DISCARD: 1 + OVERWRITE: 0 + member: LogMode + parent: CFE_EVS_TlmPkt_Payload_t + type: enumeration + - member: AppName + parent: CFE_EVS_PacketID_t + type: string + - enumerations: + CRITICAL: 4 + DEBUG: 1 + ERROR: 3 + INFO: 2 + member: EventType + parent: CFE_EVS_PacketID_t + type: enumeration + - member: Message + parent: CFE_EVS_Packet_Payload_t + type: string + perfids: + CFE_EVS_MAIN_PERF_ID: + id: 2 + short_name: cfe_evs + telemetry: + CFE_EVS_EVENT_MSG_MID: + msgID: 2069 + CFE_EVS_HK_TLM_MID: + msgID: 2064 + struct: CFE_EVS_TlmPkt_t + cfe_sb: + app_name: CFE_SB + commands: + CFE_SB_CMD_MID: + commands: + DisableRoute: + cc: 5 + struct: CFE_SB_EnRoutCmd_t + DisableSubReport: + cc: 10 + struct: CFE_SB_CmdHdr_t + EnableRoute: + cc: 4 + struct: CFE_SB_EnRoutCmd_t + EnableSubReport: + cc: 9 + struct: CFE_SB_CmdHdr_t + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + SendPrevSubs: + cc: 11 + struct: CFE_SB_CmdHdr_t + SendStats: + cc: 2 + struct: CFE_SB_CmdHdr_t + WriteMapInfo: + cc: 8 + struct: CFE_SB_WriteFileInfoCmd_t + WritePipeInfo: + cc: 7 + struct: CFE_SB_WriteFileInfoCmd_t + WriteRouteInfo: + cc: 3 + struct: CFE_SB_WriteFileInfoCmd_t + msgID: 6145 + CFE_SB_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6151 + config: + CFE_SB_ALLSUBS_TLM_MSG: + name: CFE_SB_ALLSUBS_TLM_MSG + value: 13 + CFE_SB_BUF_MEMORY_BYTES: + name: CFE_SB_BUF_MEMORY_BYTES + value: 524288 + CFE_SB_CMD_MSG: + name: CFE_SB_CMD_MSG + value: 3 + CFE_SB_DEFAULT_MAP_FILENAME: + name: CFE_SB_DEFAULT_MAP_FILENAME + value: /ram/cfe_sb_msgmap.dat + CFE_SB_DEFAULT_MSG_LIMIT: + name: CFE_SB_DEFAULT_MSG_LIMIT + value: 4 + CFE_SB_DEFAULT_PIPE_FILENAME: + name: CFE_SB_DEFAULT_PIPE_FILENAME + value: /ram/cfe_sb_pipe.dat + CFE_SB_DEFAULT_REPORT_SENDER: + name: CFE_SB_DEFAULT_REPORT_SENDER + value: 1 + CFE_SB_DEFAULT_ROUTING_FILENAME: + name: CFE_SB_DEFAULT_ROUTING_FILENAME + value: /ram/cfe_sb_route.dat + CFE_SB_FILTERED_EVENT1: + name: CFE_SB_FILTERED_EVENT1 + value: CFE_SB_SEND_NO_SUBS_EID + CFE_SB_FILTERED_EVENT2: + name: CFE_SB_FILTERED_EVENT2 + value: CFE_SB_DUP_SUBSCRIP_EID + CFE_SB_FILTERED_EVENT3: + name: CFE_SB_FILTERED_EVENT3 + value: CFE_SB_MSGID_LIM_ERR_EID + CFE_SB_FILTERED_EVENT4: + name: CFE_SB_FILTERED_EVENT4 + value: CFE_SB_Q_FULL_ERR_EID + CFE_SB_FILTERED_EVENT5: + name: CFE_SB_FILTERED_EVENT5 + value: 0 + CFE_SB_FILTERED_EVENT6: + name: CFE_SB_FILTERED_EVENT6 + value: 0 + CFE_SB_FILTERED_EVENT7: + name: CFE_SB_FILTERED_EVENT7 + value: 0 + CFE_SB_FILTERED_EVENT8: + name: CFE_SB_FILTERED_EVENT8 + value: 0 + CFE_SB_FILTER_MASK1: + name: CFE_SB_FILTER_MASK1 + value: CFE_EVS_FIRST_4_STOP + CFE_SB_FILTER_MASK2: + name: CFE_SB_FILTER_MASK2 + value: CFE_EVS_FIRST_4_STOP + CFE_SB_FILTER_MASK3: + name: CFE_SB_FILTER_MASK3 + value: CFE_EVS_FIRST_16_STOP + CFE_SB_FILTER_MASK4: + name: CFE_SB_FILTER_MASK4 + value: CFE_EVS_FIRST_16_STOP + CFE_SB_FILTER_MASK5: + name: CFE_SB_FILTER_MASK5 + value: CFE_EVS_NO_FILTER + CFE_SB_FILTER_MASK6: + name: CFE_SB_FILTER_MASK6 + value: CFE_EVS_NO_FILTER + CFE_SB_FILTER_MASK7: + name: CFE_SB_FILTER_MASK7 + value: CFE_EVS_NO_FILTER + CFE_SB_FILTER_MASK8: + name: CFE_SB_FILTER_MASK8 + value: CFE_EVS_NO_FILTER + CFE_SB_HIGHEST_VALID_MSGID: + name: CFE_SB_HIGHEST_VALID_MSGID + value: 8191 + CFE_SB_HK_TLM_MSG: + name: CFE_SB_HK_TLM_MSG + value: 3 + CFE_SB_MAX_BLOCK_SIZE: + name: CFE_SB_MAX_BLOCK_SIZE + value: CFE_SB_MAX_SB_MSG_SIZE + 40 + CFE_SB_MAX_DEST_PER_PKT: + name: CFE_SB_MAX_DEST_PER_PKT + value: 16 + CFE_SB_MAX_MSG_IDS: + name: CFE_SB_MAX_MSG_IDS + value: 256 + CFE_SB_MAX_PIPES: + name: CFE_SB_MAX_PIPES + value: 255 + CFE_SB_MAX_PIPE_DEPTH: + name: CFE_SB_MAX_PIPE_DEPTH + value: 256 + CFE_SB_MAX_SB_MSG_SIZE: + name: CFE_SB_MAX_SB_MSG_SIZE + value: 32768 + CFE_SB_MEM_BLOCK_SIZE_01: + name: CFE_SB_MEM_BLOCK_SIZE_01 + value: 8 + CFE_SB_MEM_BLOCK_SIZE_02: + name: CFE_SB_MEM_BLOCK_SIZE_02 + value: 16 + CFE_SB_MEM_BLOCK_SIZE_03: + name: CFE_SB_MEM_BLOCK_SIZE_03 + value: 20 + CFE_SB_MEM_BLOCK_SIZE_04: + name: CFE_SB_MEM_BLOCK_SIZE_04 + value: 36 + CFE_SB_MEM_BLOCK_SIZE_05: + name: CFE_SB_MEM_BLOCK_SIZE_05 + value: 64 + CFE_SB_MEM_BLOCK_SIZE_06: + name: CFE_SB_MEM_BLOCK_SIZE_06 + value: 96 + CFE_SB_MEM_BLOCK_SIZE_07: + name: CFE_SB_MEM_BLOCK_SIZE_07 + value: 128 + CFE_SB_MEM_BLOCK_SIZE_08: + name: CFE_SB_MEM_BLOCK_SIZE_08 + value: 160 + CFE_SB_MEM_BLOCK_SIZE_09: + name: CFE_SB_MEM_BLOCK_SIZE_09 + value: 256 + CFE_SB_MEM_BLOCK_SIZE_10: + name: CFE_SB_MEM_BLOCK_SIZE_10 + value: 512 + CFE_SB_MEM_BLOCK_SIZE_11: + name: CFE_SB_MEM_BLOCK_SIZE_11 + value: 1024 + CFE_SB_MEM_BLOCK_SIZE_12: + name: CFE_SB_MEM_BLOCK_SIZE_12 + value: 2048 + CFE_SB_MEM_BLOCK_SIZE_13: + name: CFE_SB_MEM_BLOCK_SIZE_13 + value: 4096 + CFE_SB_MEM_BLOCK_SIZE_14: + name: CFE_SB_MEM_BLOCK_SIZE_14 + value: 8192 + CFE_SB_MEM_BLOCK_SIZE_15: + name: CFE_SB_MEM_BLOCK_SIZE_15 + value: 16384 + CFE_SB_MEM_BLOCK_SIZE_16: + name: CFE_SB_MEM_BLOCK_SIZE_16 + value: 32768 + CFE_SB_ONESUB_TLM_MSG: + name: CFE_SB_ONESUB_TLM_MSG + value: 14 + CFE_SB_PACKET_TIME_FORMAT: + name: CFE_SB_PACKET_TIME_FORMAT + value: CFE_SB_TIME_32_16_SUBS + CFE_SB_SEND_HK_MSG: + name: CFE_SB_SEND_HK_MSG + value: 11 + CFE_SB_START_TASK_FLAGS: + name: CFE_SB_START_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CFE_SB_START_TASK_PRIORITY: + name: CFE_SB_START_TASK_PRIORITY + value: 64 + CFE_SB_START_TASK_STACK_SIZE: + name: CFE_SB_START_TASK_STACK_SIZE + value: CFE_ES_DEFAULT_STACK_SIZE + CFE_SB_STATS_TLM_MSG: + name: CFE_SB_STATS_TLM_MSG + value: 10 + CFE_SB_TIME_32_16_SUBS: + name: CFE_SB_TIME_32_16_SUBS + value: 1 + CFE_SB_TIME_32_32_M_20: + name: CFE_SB_TIME_32_32_M_20 + value: 3 + CFE_SB_TIME_32_32_SUBS: + name: CFE_SB_TIME_32_32_SUBS + value: 2 + events: + CFE_SB_BAD_CMD_CODE_EID: + id: 42 + CFE_SB_BAD_MSGID_EID: + id: 43 + CFE_SB_BAD_PIPEID_EID: + id: 19 + CFE_SB_CMD0_RCVD_EID: + id: 28 + CFE_SB_CMD1_RCVD_EID: + id: 29 + CFE_SB_CR_PIPE_BAD_ARG_EID: + id: 2 + CFE_SB_CR_PIPE_ERR_EID: + id: 4 + CFE_SB_DEL_PIPE_ERR1_EID: + id: 46 + CFE_SB_DEL_PIPE_ERR2_EID: + id: 54 + CFE_SB_DEST_BLK_ERR_EID: + id: 20 + CFE_SB_DSBL_RTE1_EID: + id: 36 + CFE_SB_DSBL_RTE2_EID: + id: 37 + CFE_SB_DSBL_RTE3_EID: + id: 38 + CFE_SB_DUP_SUBSCRIP_EID: + id: 7 + CFE_SB_ENBL_RTE1_EID: + id: 33 + CFE_SB_ENBL_RTE2_EID: + id: 34 + CFE_SB_ENBL_RTE3_EID: + id: 35 + CFE_SB_FILEWRITE_ERR_EID: + id: 49 + CFE_SB_FULL_SUB_PKT_EID: + id: 44 + CFE_SB_GET_BUF_ERR_EID: + id: 16 + CFE_SB_GLS_INV_CALLER_EID: + id: 41 + CFE_SB_INIT_EID: + id: 1 + CFE_SB_LSTSNDER_ERR1_EID: + id: 30 + CFE_SB_LSTSNDER_ERR2_EID: + id: 31 + CFE_SB_MAX_DESTS_MET_EID: + id: 9 + CFE_SB_MAX_MSGS_MET_EID: + id: 8 + CFE_SB_MAX_PIPES_MET_EID: + id: 3 + CFE_SB_MSGID_LIM_ERR_EID: + id: 17 + CFE_SB_MSG_TOO_BIG_EID: + id: 15 + CFE_SB_PART_SUB_PKT_EID: + id: 45 + CFE_SB_PIPE_ADDED_EID: + id: 5 + CFE_SB_PIPE_DELETED_EID: + id: 47 + CFE_SB_Q_FULL_ERR_EID: + id: 25 + CFE_SB_Q_RD_ERR_EID: + id: 27 + CFE_SB_Q_WR_ERR_EID: + id: 26 + CFE_SB_RCV_BAD_ARG_EID: + id: 18 + CFE_SB_SEND_BAD_ARG_EID: + id: 13 + CFE_SB_SEND_INV_MSGID_EID: + id: 21 + CFE_SB_SEND_NO_SUBS_EID: + id: 14 + CFE_SB_SND_RTG_EID: + id: 39 + CFE_SB_SND_RTG_ERR1_EID: + id: 40 + CFE_SB_SND_STATS_EID: + id: 32 + CFE_SB_SUBSCRIPTION_RCVD_EID: + id: 10 + CFE_SB_SUBSCRIPTION_REMOVED_EID: + id: 48 + CFE_SB_SUBSCRIPTION_RPT_EID: + id: 22 + CFE_SB_SUB_ARG_ERR_EID: + id: 6 + CFE_SB_SUB_INV_CALLER_EID: + id: 51 + CFE_SB_SUB_INV_PIPE_EID: + id: 50 + CFE_SB_UNSUBSCRIPTION_RPT_EID: + id: 24 + CFE_SB_UNSUB_ARG_ERR_EID: + id: 11 + CFE_SB_UNSUB_INV_CALLER_EID: + id: 53 + CFE_SB_UNSUB_INV_PIPE_EID: + id: 52 + CFE_SB_UNSUB_NO_SUBS_EID: + id: 12 + long_name: Core Flight Executive - Software Bus + module_type: CFE_CORE + msg_def_overrides: + - member: Filename + parent: CFE_SB_WriteFileInfoCmd_Payload_t + type: string + - enumerations: + ACTIVE: 1 + INACTIVE: 0 + member: State + parent: CFE_SB_RoutingFileEntry_t + type: enumeration + - member: AppName + parent: CFE_SB_RoutingFileEntry_t + type: string + - member: PipeName + parent: CFE_SB_RoutingFileEntry_t + type: string + - enumerations: + SUBSCRIPTION: 0 + UNSUBSCRIPTION: 1 + member: SubType + parent: CFE_SB_SubRprtMsg_Payload_t + type: enumeration + perfids: + CFE_SB_MAIN_PERF_ID: + id: 4 + CFE_SB_MSG_LIM_PERF_ID: + id: 5 + CFE_SB_PIPE_OFLOW_PERF_ID: + id: 27 + short_name: cfe_sb + telemetry: + CFE_SB_ALLSUBS_TLM_MID: + msgID: 2073 + struct: CFE_SB_PrevSubMsg_t + CFE_SB_HK_TLM_MID: + msgID: 2065 + struct: CFE_SB_HKMsg_t + CFE_SB_ONESUB_TLM_MID: + msgID: 2074 + struct: CFE_SB_SubRprtMsg_t + CFE_SB_STATS_TLM_MID: + msgID: 2070 + struct: CFE_SB_StatMsg_t + type_remaps: + CFE_SB_MsgId_t: uint16 + CFE_SB_PipeId_t: uint8 + cfe_tbl: + app_name: CFE_TBL + commands: + CFE_TBL_CMD_MID: + commands: + AbortLoad: + cc: 9 + struct: CFE_TBL_AbortLdCmd_t + Activate: + cc: 5 + struct: CFE_TBL_ActivateCmd_t + DelCDS: + cc: 8 + struct: CFE_TBL_DelCDSCmd_t + Dump: + cc: 3 + struct: CFE_TBL_DumpCmd_t + DumpReg: + cc: 6 + struct: CFE_TBL_DumpRegCmd_t + Load: + cc: 2 + struct: CFE_TBL_LoadCmd_t + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + TlmReg: + cc: 7 + struct: CFE_TBL_TlmRegCmd_t + Validate: + cc: 4 + struct: CFE_TBL_ValidateCmd_t + msgID: 2050 + CFE_TBL_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6152 + config: + CFE_TBL_BUF_MEMORY_BYTES: + name: CFE_TBL_BUF_MEMORY_BYTES + value: 1048576 + CFE_TBL_CMD_MSG: + name: CFE_TBL_CMD_MSG + value: 4 + CFE_TBL_DEFAULT_REG_DUMP_FILE: + name: CFE_TBL_DEFAULT_REG_DUMP_FILE + value: /ram/cfe_tbl_reg.log + CFE_TBL_HK_TLM_MSG: + name: CFE_TBL_HK_TLM_MSG + value: 4 + CFE_TBL_MAX_CRITICAL_TABLES: + name: CFE_TBL_MAX_CRITICAL_TABLES + value: 32 + CFE_TBL_MAX_DBL_TABLE_SIZE: + name: CFE_TBL_MAX_DBL_TABLE_SIZE + value: 65535 + CFE_TBL_MAX_NAME_LENGTH: + name: CFE_TBL_MAX_NAME_LENGTH + value: 16 + CFE_TBL_MAX_NUM_HANDLES: + name: CFE_TBL_MAX_NUM_HANDLES + value: 256 + CFE_TBL_MAX_NUM_TABLES: + name: CFE_TBL_MAX_NUM_TABLES + value: 128 + CFE_TBL_MAX_NUM_VALIDATIONS: + name: CFE_TBL_MAX_NUM_VALIDATIONS + value: 10 + CFE_TBL_MAX_SIMULTANEOUS_LOADS: + name: CFE_TBL_MAX_SIMULTANEOUS_LOADS + value: 4 + CFE_TBL_MAX_SNGL_TABLE_SIZE: + name: CFE_TBL_MAX_SNGL_TABLE_SIZE + value: 65535 + CFE_TBL_REG_TLM_MSG: + name: CFE_TBL_REG_TLM_MSG + value: 12 + CFE_TBL_SEND_HK_MSG: + name: CFE_TBL_SEND_HK_MSG + value: 12 + CFE_TBL_START_TASK_FLAGS: + name: CFE_TBL_START_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CFE_TBL_START_TASK_PRIORITY: + name: CFE_TBL_START_TASK_PRIORITY + value: 70 + CFE_TBL_START_TASK_STACK_SIZE: + name: CFE_TBL_START_TASK_STACK_SIZE + value: CFE_ES_DEFAULT_STACK_SIZE + CFE_TBL_VALID_PRID_1: + name: CFE_TBL_VALID_PRID_1 + value: CFE_CPU_ID + CFE_TBL_VALID_PRID_2: + name: CFE_TBL_VALID_PRID_2 + value: CFE_TBL_U32FROM4CHARS(a, b, c, d) + CFE_TBL_VALID_PRID_3: + name: CFE_TBL_VALID_PRID_3 + value: 0 + CFE_TBL_VALID_PRID_4: + name: CFE_TBL_VALID_PRID_4 + value: 0 + CFE_TBL_VALID_PRID_COUNT: + name: CFE_TBL_VALID_PRID_COUNT + value: 0 + CFE_TBL_VALID_SCID_1: + name: CFE_TBL_VALID_SCID_1 + value: CFE_SPACECRAFT_ID + CFE_TBL_VALID_SCID_2: + name: CFE_TBL_VALID_SCID_2 + value: CFE_TBL_U32FROM4CHARS(a, b, c, d) + CFE_TBL_VALID_SCID_COUNT: + name: CFE_TBL_VALID_SCID_COUNT + value: 0 + events: + CFE_TBL_ACTIVATE_DUMP_ONLY_ERR_EID: + id: 78 + CFE_TBL_ACTIVATE_ERR_EID: + id: 70 + CFE_TBL_ASSUMED_VALID_INF_EID: + id: 23 + CFE_TBL_CC1_ERR_EID: + id: 51 + CFE_TBL_CDS_DELETED_INFO_EID: + id: 38 + CFE_TBL_CDS_DELETE_ERR_EID: + id: 86 + CFE_TBL_CDS_NOT_FOUND_ERR_EID: + id: 85 + CFE_TBL_CDS_OWNER_ACTIVE_ERR_EID: + id: 87 + CFE_TBL_CREATING_DUMP_FILE_ERR_EID: + id: 62 + CFE_TBL_DUMP_PENDING_ERR_EID: + id: 77 + CFE_TBL_FAIL_HK_SEND_ERR_EID: + id: 56 + CFE_TBL_FAIL_NOTIFY_SEND_ERR_EID: + id: 89 + CFE_TBL_FILE_ACCESS_ERR_EID: + id: 53 + CFE_TBL_FILE_INCOMPLETE_ERR_EID: + id: 71 + CFE_TBL_FILE_LOADED_INF_EID: + id: 12 + CFE_TBL_FILE_STD_HDR_ERR_EID: + id: 54 + CFE_TBL_FILE_SUBTYPE_ERR_EID: + id: 59 + CFE_TBL_FILE_TBL_HDR_ERR_EID: + id: 55 + CFE_TBL_FILE_TOO_BIG_ERR_EID: + id: 75 + CFE_TBL_FILE_TYPE_ERR_EID: + id: 58 + CFE_TBL_ILLEGAL_BUFF_PARAM_ERR_EID: + id: 80 + CFE_TBL_INIT_INF_EID: + id: 1 + CFE_TBL_INTERNAL_ERROR_ERR_EID: + id: 61 + CFE_TBL_IN_REGISTRY_ERR_EID: + id: 82 + CFE_TBL_LEN_ERR_EID: + id: 52 + CFE_TBL_LOADING_A_DUMP_ONLY_ERR_EID: + id: 79 + CFE_TBL_LOADING_PENDING_ERR_EID: + id: 88 + CFE_TBL_LOAD_ABORT_ERR_EID: + id: 69 + CFE_TBL_LOAD_ABORT_INF_EID: + id: 21 + CFE_TBL_LOAD_ERR_EID: + id: 93 + CFE_TBL_LOAD_EXCEEDS_SIZE_ERR_EID: + id: 72 + CFE_TBL_LOAD_PEND_REQ_INF_EID: + id: 17 + CFE_TBL_LOAD_SUCCESS_INF_EID: + id: 35 + CFE_TBL_LOAD_TYPE_ERR_EID: + id: 94 + CFE_TBL_MID_ERR_EID: + id: 50 + CFE_TBL_NOOP_INF_EID: + id: 10 + CFE_TBL_NOT_CRITICAL_TBL_ERR_EID: + id: 83 + CFE_TBL_NOT_IN_CRIT_REG_ERR_EID: + id: 84 + CFE_TBL_NO_INACTIVE_BUFFER_ERR_EID: + id: 66 + CFE_TBL_NO_SUCH_TABLE_ERR_EID: + id: 57 + CFE_TBL_NO_WORK_BUFFERS_ERR_EID: + id: 60 + CFE_TBL_OVERWRITE_DUMP_INF_EID: + id: 13 + CFE_TBL_OVERWRITE_REG_DUMP_INF_EID: + id: 15 + CFE_TBL_PARTIAL_LOAD_ERR_EID: + id: 74 + CFE_TBL_PROCESSOR_ID_ERR_EID: + id: 98 + CFE_TBL_REGISTER_ERR_EID: + id: 90 + CFE_TBL_RESET_INF_EID: + id: 11 + CFE_TBL_SHARE_ERR_EID: + id: 91 + CFE_TBL_SPACECRAFT_ID_ERR_EID: + id: 97 + CFE_TBL_TLM_REG_CMD_INF_EID: + id: 18 + CFE_TBL_TOO_MANY_DUMPS_ERR_EID: + id: 76 + CFE_TBL_TOO_MANY_VALIDATIONS_ERR_EID: + id: 67 + CFE_TBL_UNREGISTER_ERR_EID: + id: 92 + CFE_TBL_UNVALIDATED_ERR_EID: + id: 81 + CFE_TBL_UPDATE_ERR_EID: + id: 95 + CFE_TBL_UPDATE_SUCCESS_INF_EID: + id: 37 + CFE_TBL_VALIDATION_ERR_EID: + id: 96 + CFE_TBL_VALIDATION_INF_EID: + id: 36 + CFE_TBL_VAL_REQ_MADE_INF_EID: + id: 16 + CFE_TBL_WRITE_CFE_HDR_ERR_EID: + id: 63 + CFE_TBL_WRITE_DUMP_INF_EID: + id: 14 + CFE_TBL_WRITE_REG_DUMP_INF_EID: + id: 22 + CFE_TBL_WRITE_TBL_HDR_ERR_EID: + id: 64 + CFE_TBL_WRITE_TBL_IMG_ERR_EID: + id: 65 + CFE_TBL_WRITE_TBL_REG_ERR_EID: + id: 68 + CFE_TBL_ZERO_LENGTH_LOAD_ERR_EID: + id: 73 + long_name: Core Flight Executive - Table Services + module_type: CFE_CORE + msg_def_overrides: + - member: LoadFilename + parent: CFE_TBL_LoadCmd_Payload_t + type: string + - enumerations: + ACTIVE_BUFFER: 1 + INACTIVE_BUFFER: 0 + member: ActiveTblFlag + parent: CFE_TBL_DumpCmd_Payload_t + type: enumeration + - member: TableName + parent: CFE_TBL_DumpCmd_Payload_t + type: string + - member: DumpFilename + parent: CFE_TBL_DumpCmd_Payload_t + type: string + - enumerations: + ACTIVE_BUFFER: 1 + INACTIVE_BUFFER: 0 + member: ActiveTblFlag + parent: CFE_TBL_ValidateCmd_Payload_t + type: enumeration + - member: TableName + parent: CFE_TBL_ValidateCmd_Payload_t + type: string + - member: TableName + parent: CFE_TBL_ActivateCmd_Payload_t + type: string + - member: DumpFilename + parent: CFE_TBL_DumpRegCmd_Payload_t + type: string + - member: TableName + parent: CFE_TBL_TlmRegCmd_Payload_t + type: string + - member: TableName + parent: CFE_TBL_DelCDSCmd_Payload_t + type: string + - member: TableName + parent: CFE_TBL_AbortLdCmd_Payload_t + type: string + - member: LastValTableName + parent: CFE_TBL_HkPacket_Payload_t + type: string + - member: LastUpdatedTbl + parent: CFE_TBL_HkPacket_Payload_t + type: string + - member: LastFileLoaded + parent: CFE_TBL_HkPacket_Payload_t + type: string + - member: LastFileDumped + parent: CFE_TBL_HkPacket_Payload_t + type: string + - member: LastTableLoaded + parent: CFE_TBL_HkPacket_Payload_t + type: string + - member: Name + parent: CFE_TBL_TblRegPacket_Payload_t + type: string + - member: LastFileLoaded + parent: CFE_TBL_TblRegPacket_Payload_t + type: string + - member: OwnerAppName + parent: CFE_TBL_TblRegPacket_Payload_t + type: string + perfids: {} + short_name: cfe_tbl + telemetry: + CFE_TBL_HK_TLM_MID: + msgID: 2066 + struct: CFE_TBL_HkPacket_t + CFE_TBL_REG_TLM_MID: + msgID: 2072 + struct: CFE_TBL_TblRegPacket_t + cfe_time: + app_name: CFE_TIME + commands: + CFE_TIME_1HZ_CMD_MID: + commands: + 1HZCmd: + cc: 0 + struct: CFE_TIME_1HzCmd_t + msgID: 6155 + CFE_TIME_CMD_MID: + commands: + Add1HzAdjust: + cc: 13 + struct: CFE_TIME_1HzAdjCmd_t + AddAdjust: + cc: 11 + struct: CFE_TIME_TimeCmd_t + AddDelay: + cc: 5 + struct: CFE_TIME_TimeCmd_t + Noop: + cc: 0 + struct: CFE_TIME_NoArgsCmd_t + Reset: + cc: 1 + struct: CFE_TIME_NoArgsCmd_t + SendDiag: + cc: 2 + struct: CFE_TIME_NoArgsCmd_t + SetLeapSeconds: + cc: 10 + struct: CFE_TIME_TimeCmd_t + SetMET: + cc: 8 + struct: CFE_TIME_TimeCmd_t + SetSTCF: + cc: 9 + struct: CFE_TIME_TimeCmd_t + SetSignal: + cc: 15 + struct: CFE_TIME_SignalCmd_t + SetSource: + cc: 3 + struct: CFE_TIME_SourceCmd_t + SetState: + cc: 4 + struct: CFE_TIME_StateCmd_t + SetTime: + cc: 7 + struct: CFE_TIME_TimeCmd_t + Sub1HzAdjust: + cc: 14 + struct: CFE_TIME_1HzAdjCmd_t + SubAdjust: + cc: 12 + struct: CFE_TIME_TimeCmd_t + SubDelay: + cc: 6 + struct: CFE_TIME_TimeCmd_t + msgID: 6147 + CFE_TIME_DATA_CMD_MID: + commands: + ToneData: + cc: 0 + struct: CFE_TIME_ToneDataCmd_t + msgID: 6156 + CFE_TIME_FAKE_CMD_MID: + commands: + FakeTone: + cc: 0 + struct: CFE_TIME_FakeToneCmd_t + msgID: 6157 + CFE_TIME_SEND_CMD_MID: + commands: + SendCmd: + cc: 0 + struct: CFE_TIME_NoArgsCmd_t + msgID: 6158 + CFE_TIME_SEND_HK_MID: + msgID: 6153 + CFE_TIME_TONE_CMD_MID: + commands: + ToneSignal: + cc: 0 + struct: CFE_TIME_ToneSignalCmd_t + msgID: 6154 + config: + CFE_TIME_1HZ_CMD_MSG: + name: CFE_TIME_1HZ_CMD_MSG + value: 17 + CFE_TIME_1HZ_TASK_FLAGS: + name: CFE_TIME_1HZ_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CFE_TIME_1HZ_TASK_PRIORITY: + name: CFE_TIME_1HZ_TASK_PRIORITY + value: 25 + CFE_TIME_1HZ_TASK_STACK_SIZE: + name: CFE_TIME_1HZ_TASK_STACK_SIZE + value: 16384 + CFE_TIME_AT_TONE_WAS: + name: CFE_TIME_AT_TONE_WAS + value: true + CFE_TIME_AT_TONE_WILL_BE: + name: CFE_TIME_AT_TONE_WILL_BE + value: false + CFE_TIME_CFG_CLIENT: + name: CFE_TIME_CFG_CLIENT + value: false + CFE_TIME_CFG_DEFAULT_TAI: + name: CFE_TIME_CFG_DEFAULT_TAI + value: true + CFE_TIME_CFG_DEFAULT_UTC: + name: CFE_TIME_CFG_DEFAULT_UTC + value: false + CFE_TIME_CFG_FAKE_TONE: + name: CFE_TIME_CFG_FAKE_TONE + value: true + CFE_TIME_CFG_LATCH_FLY: + name: CFE_TIME_CFG_LATCH_FLY + value: 8 + CFE_TIME_CFG_SERVER: + name: CFE_TIME_CFG_SERVER + value: true + CFE_TIME_CFG_SIGNAL: + name: CFE_TIME_CFG_SIGNAL + value: false + CFE_TIME_CFG_SOURCE: + name: CFE_TIME_CFG_SOURCE + value: false + CFE_TIME_CFG_SRC_GPS: + name: CFE_TIME_CFG_SRC_GPS + value: false + CFE_TIME_CFG_SRC_MET: + name: CFE_TIME_CFG_SRC_MET + value: false + CFE_TIME_CFG_SRC_TIME: + name: CFE_TIME_CFG_SRC_TIME + value: false + CFE_TIME_CFG_START_FLY: + name: CFE_TIME_CFG_START_FLY + value: 2 + CFE_TIME_CFG_TONE_LIMIT: + name: CFE_TIME_CFG_TONE_LIMIT + value: 20000 + CFE_TIME_CFG_VIRTUAL: + name: CFE_TIME_CFG_VIRTUAL + value: true + CFE_TIME_CMD_MSG: + name: CFE_TIME_CMD_MSG + value: 5 + CFE_TIME_DATA_CMD_MSG: + name: CFE_TIME_DATA_CMD_MSG + value: 0 + CFE_TIME_DEF_DELAY_SECS: + name: CFE_TIME_DEF_DELAY_SECS + value: 0 + CFE_TIME_DEF_DELAY_SUBS: + name: CFE_TIME_DEF_DELAY_SUBS + value: 1000 + CFE_TIME_DEF_LEAPS: + name: CFE_TIME_DEF_LEAPS + value: 32 + CFE_TIME_DEF_MET_SECS: + name: CFE_TIME_DEF_MET_SECS + value: 1000 + CFE_TIME_DEF_MET_SUBS: + name: CFE_TIME_DEF_MET_SUBS + value: 0 + CFE_TIME_DEF_STCF_SECS: + name: CFE_TIME_DEF_STCF_SECS + value: 1000000 + CFE_TIME_DEF_STCF_SUBS: + name: CFE_TIME_DEF_STCF_SUBS + value: 0 + CFE_TIME_DIAG_TLM_MSG: + name: CFE_TIME_DIAG_TLM_MSG + value: 6 + CFE_TIME_ENA_1HZ_CMD_PKT: + name: CFE_TIME_ENA_1HZ_CMD_PKT + value: true + CFE_TIME_EPOCH_DAY: + name: CFE_TIME_EPOCH_DAY + value: 1 + CFE_TIME_EPOCH_HOUR: + name: CFE_TIME_EPOCH_HOUR + value: 0 + CFE_TIME_EPOCH_MINUTE: + name: CFE_TIME_EPOCH_MINUTE + value: 0 + CFE_TIME_EPOCH_SECOND: + name: CFE_TIME_EPOCH_SECOND + value: 0 + CFE_TIME_EPOCH_YEAR: + name: CFE_TIME_EPOCH_YEAR + value: 1980 + CFE_TIME_FAKE_CMD_MSG: + name: CFE_TIME_FAKE_CMD_MSG + value: 1 + CFE_TIME_FS_FACTOR: + name: CFE_TIME_FS_FACTOR + value: 789004800 + CFE_TIME_HK_TLM_MSG: + name: CFE_TIME_HK_TLM_MSG + value: 5 + CFE_TIME_MAX_DELTA_SECS: + name: CFE_TIME_MAX_DELTA_SECS + value: 0 + CFE_TIME_MAX_DELTA_SUBS: + name: CFE_TIME_MAX_DELTA_SUBS + value: 500000 + CFE_TIME_MAX_ELAPSED: + name: CFE_TIME_MAX_ELAPSED + value: 200000 + CFE_TIME_MAX_LOCAL_SECS: + name: CFE_TIME_MAX_LOCAL_SECS + value: CFE_TIME_MAX_LOCAL_SUBS + CFE_TIME_MAX_NUM_SYNCH_FUNCS: + name: CFE_TIME_MAX_NUM_SYNCH_FUNCS + value: 4 + CFE_TIME_MIN_ELAPSED: + name: CFE_TIME_MIN_ELAPSED + value: 0 + CFE_TIME_SEND_CMD_MSG: + name: CFE_TIME_SEND_CMD_MSG + value: 2 + CFE_TIME_SEND_HK_MSG: + name: CFE_TIME_SEND_HK_MSG + value: 13 + CFE_TIME_START_TASK_FLAGS: + name: CFE_TIME_START_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CFE_TIME_START_TASK_PRIORITY: + name: CFE_TIME_START_TASK_PRIORITY + value: 60 + CFE_TIME_START_TASK_STACK_SIZE: + name: CFE_TIME_START_TASK_STACK_SIZE + value: CFE_ES_DEFAULT_STACK_SIZE + CFE_TIME_TONE_CMD_MSG: + name: CFE_TIME_TONE_CMD_MSG + value: 16 + CFE_TIME_TONE_TASK_FLAGS: + name: CFE_TIME_TONE_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CFE_TIME_TONE_TASK_PRIORITY: + name: CFE_TIME_TONE_TASK_PRIORITY + value: 25 + CFE_TIME_TONE_TASK_STACK_SIZE: + name: CFE_TIME_TONE_TASK_STACK_SIZE + value: 16384 + events: + CFE_TIME_1HZ_CFG_EID: + id: 48 + CFE_TIME_1HZ_EID: + id: 16 + CFE_TIME_1HZ_ERR_EID: + id: 38 + CFE_TIME_CC_ERR_EID: + id: 27 + CFE_TIME_DELAY_CFG_EID: + id: 42 + CFE_TIME_DELAY_EID: + id: 11 + CFE_TIME_DELAY_ERR_EID: + id: 33 + CFE_TIME_DELTA_CFG_EID: + id: 47 + CFE_TIME_DELTA_EID: + id: 15 + CFE_TIME_DELTA_ERR_EID: + id: 37 + CFE_TIME_DIAG_EID: + id: 6 + CFE_TIME_EXIT_ERR_EID: + id: 25 + CFE_TIME_FLY_OFF_EID: + id: 21 + CFE_TIME_FLY_ON_EID: + id: 20 + CFE_TIME_ID_ERR_EID: + id: 26 + CFE_TIME_INIT_EID: + id: 1 + CFE_TIME_LEAPS_CFG_EID: + id: 46 + CFE_TIME_LEAPS_EID: + id: 17 + CFE_TIME_MET_CFG_EID: + id: 44 + CFE_TIME_MET_EID: + id: 13 + CFE_TIME_MET_ERR_EID: + id: 35 + CFE_TIME_NOOP_EID: + id: 4 + CFE_TIME_RESET_EID: + id: 5 + CFE_TIME_SIGNAL_CFG_EID: + id: 41 + CFE_TIME_SIGNAL_EID: + id: 9 + CFE_TIME_SIGNAL_ERR_EID: + id: 32 + CFE_TIME_SOURCE_CFG_EID: + id: 40 + CFE_TIME_SOURCE_EID: + id: 8 + CFE_TIME_SOURCE_ERR_EID: + id: 31 + CFE_TIME_STATE_EID: + id: 7 + CFE_TIME_STATE_ERR_EID: + id: 30 + CFE_TIME_STCF_CFG_EID: + id: 45 + CFE_TIME_STCF_EID: + id: 14 + CFE_TIME_STCF_ERR_EID: + id: 36 + CFE_TIME_TIME_CFG_EID: + id: 43 + CFE_TIME_TIME_EID: + id: 12 + CFE_TIME_TIME_ERR_EID: + id: 34 + long_name: Core Flight Executive - Time Services + module_type: CFE_CORE + msg_def_overrides: + - member: ToneSource + parent: CFE_TIME_SignalCmd_Payload_t + type: string + - enumerations: + FLYWHEEL: 1 + INVALID: -1 + VALID: 0 + member: ClockState + parent: CFE_TIME_StateCmd_Payload_t + type: enumeration + - enumerations: + EXTERN: 2 + INTERN: 1 + member: TimeSource + parent: CFE_TIME_SourceCmd_Payload_t + type: enumeration + - enumerations: + PRIMARY: 1 + REDUNDANT: 2 + member: ToneSource + parent: CFE_TIME_SignalCmd_Payload_t + type: enumeration + - enumerations: + FLYWHEEL: 1 + INVALID: -1 + VALID: 0 + member: ClockStateAPI + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + NOT_SET: 0 + WAS_SET: 1 + member: ClockSetState + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + IS_FLY: 1 + NO_FLY: 0 + member: ClockFlyState + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + EXTERN: 2 + INTERN: 1 + member: ClockSource + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + PRIMARY: 1 + REDUNDANT: 2 + member: ClockSignal + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + IS_FLY: 1 + NO_FLY: 0 + member: ServerFlyState + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + ADD: 1 + SUB: 2 + member: OneTimeDirection + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + ADD: 1 + SUB: 2 + member: OneHzDirection + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + ADD: 1 + SUB: 2 + member: DelayDirection + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + - enumerations: + BAD: 2 + ERROR: 1 + EXISTING: 4 + NEW: 3 + member: DataStoreStatus + parent: CFE_TIME_DiagPacket_Payload_t + type: enumeration + perfids: + CFE_TIME_LOCAL1HZISR_PERF_ID: + id: 8 + CFE_TIME_LOCAL1HZTASK_PERF_ID: + id: 10 + CFE_TIME_MAIN_PERF_ID: + id: 6 + CFE_TIME_SENDMET_PERF_ID: + id: 9 + CFE_TIME_TONE1HZISR_PERF_ID: + id: 7 + CFE_TIME_TONE1HZTASK_PERF_ID: + id: 11 + short_name: cfe_time + telemetry: + CFE_TIME_DIAG_TLM_MID: + msgID: 2068 + struct: CFE_TIME_DiagPacket_t + CFE_TIME_HK_TLM_MID: + msgID: 2067 + struct: CFE_TIME_HkPacket_t + short_name: cfe + osal: + config: + OSAL_SOCKET_QUEUE: + name: OSAL_SOCKET_QUEUE + value: false + OS_BUFFER_MSG_DEPTH: + name: OS_BUFFER_MSG_DEPTH + value: 100 + OS_BUFFER_SIZE: + name: OS_BUFFER_SIZE + value: 4000 + OS_INCLUDE_MODULE_LOADER: + name: OS_INCLUDE_MODULE_LOADER + value: true + OS_INCLUDE_NETWORK: + name: OS_INCLUDE_NETWORK + value: true + OS_MAX_API_NAME: + name: OS_MAX_API_NAME + value: 40 + OS_MAX_BIN_SEMAPHORES: + name: OS_MAX_BIN_SEMAPHORES + value: 100 + OS_MAX_CMD_LEN: + name: OS_MAX_CMD_LEN + value: 1000 + OS_MAX_COUNT_SEMAPHORES: + name: OS_MAX_COUNT_SEMAPHORES + value: 100 + OS_MAX_FILE_NAME: + name: OS_MAX_FILE_NAME + value: 20 + OS_MAX_LOCAL_PATH_LEN: + name: OS_MAX_LOCAL_PATH_LEN + value: OS_MAX_PATH_LEN + OS_FS_PHYS_NAME_LEN + OS_MAX_MODULES: + name: OS_MAX_MODULES + value: 64 + OS_MAX_MUTEXES: + name: OS_MAX_MUTEXES + value: 100 + OS_MAX_NUM_OPEN_FILES: + name: OS_MAX_NUM_OPEN_FILES + value: 50 + OS_MAX_PATH_LEN: + name: OS_MAX_PATH_LEN + value: 64 + OS_MAX_QUEUES: + name: OS_MAX_QUEUES + value: 255 + OS_MAX_QUEUE_DEPTH: + name: OS_MAX_QUEUE_DEPTH + value: 256 + OS_MAX_QUEUE_WIDTH: + name: OS_MAX_QUEUE_WIDTH + value: 8 + OS_MAX_SYM_LEN: + name: OS_MAX_SYM_LEN + value: 64 + OS_MAX_TASKS: + name: OS_MAX_TASKS + value: 100 + OS_MAX_TIMEOUTS: + name: OS_MAX_TIMEOUTS + value: OS_MAX_QUEUES+OS_MAX_COUNT_SEMAPHORES+OS_MAX_BIN_SEMAPHORES + OS_MAX_TIMERS: + name: OS_MAX_TIMERS + value: 5 + OS_RUNTIME_MANAGER_CMD_QUEUE_DEPTH: + name: OS_RUNTIME_MANAGER_CMD_QUEUE_DEPTH + value: 1 + OS_RUNTIME_MANAGER_CMD_QUEUE_NAME: + name: OS_RUNTIME_MANAGER_CMD_QUEUE_NAME + value: OS_RUNTIME_MGR_CMD + OS_RUNTIME_MANAGER_CMD_TASK_NAME: + name: OS_RUNTIME_MANAGER_CMD_TASK_NAME + value: OS_RUNTIME_MGR_CMD + OS_RUNTIME_MANAGER_CMD_TASK_PRIORITY: + name: OS_RUNTIME_MANAGER_CMD_TASK_PRIORITY + value: 0 + OS_RUNTIME_MANAGER_CMD_TASK_STACK_SIZE: + name: OS_RUNTIME_MANAGER_CMD_TASK_STACK_SIZE + value: 32535 + OS_RUNTIME_MANAGER_EXEC_TASK_NAME: + name: OS_RUNTIME_MANAGER_EXEC_TASK_NAME + value: OS_RUNTIME_MGR_EXEC + OS_RUNTIME_MANAGER_EXEC_TASK_PRIORITY: + name: OS_RUNTIME_MANAGER_EXEC_TASK_PRIORITY + value: 99 + OS_RUNTIME_MANAGER_EXEC_TASK_STACK_SIZE: + name: OS_RUNTIME_MANAGER_EXEC_TASK_STACK_SIZE + value: 32535 + OS_RUNTIME_MANAGER_SEM_NAME: + name: OS_RUNTIME_MANAGER_SEM_NAME + value: OS_RUNTIME_MGR_SEM + OS_SHELL_CMD_INPUT_FILE_NAME: + name: OS_SHELL_CMD_INPUT_FILE_NAME + value: /ram/OS_ShellCmd.in + OS_UTILITYTASK_PRIORITY: + name: OS_UTILITYTASK_PRIORITY + value: 245 + OS_UTILITYTASK_STACK_SIZE: + name: OS_UTILITYTASK_STACK_SIZE + value: 2048 + OS_UTILITY_TASK_ON: + name: OS_UTILITY_TASK_ON + value: true + definition: /home/lgomez/squeaky-weasel/software/airliner/public/core/osal/fsw/posix-fast/wh_design.yaml + long_name: Operating System Abstraction Layer + short_name: osal + psp: + definition: /home/lgomez/squeaky-weasel/software/airliner/public/core/psp/fsw/obc-ppd/wh_design.yaml + cs: + app_name: CS + commands: + CS_BACKGROUND_CYCLE_MID: + commands: + BackgroundCycle: + cc: 0 + struct: CS_NoArgsCmd_t + msgID: 6226 + CS_CMD_MID: + commands: + CancelOneShot: + cc: 3 + struct: CS_NoArgsCmd_t + DisableAllCS: + cc: 5 + struct: CS_NoArgsCmd_t + DisableApps: + cc: 35 + struct: CS_NoArgsCmd_t + DisableCfeCore: + cc: 7 + struct: CS_NoArgsCmd_t + DisableEEPROM: + cc: 15 + struct: CS_NoArgsCmd_t + DisableEntryEEPROM: + cc: 19 + struct: CS_EntryCmd_t + DisableEntryMemory: + cc: 26 + struct: CS_EntryCmd_t + DisableMemory: + cc: 22 + struct: CS_NoArgsCmd_t + DisableNameApp: + cc: 39 + struct: CS_AppNameCmd_t + DisableNameTable: + cc: 33 + struct: CS_TableNameCmd_t + DisableOS: + cc: 11 + struct: CS_NoArgsCmd_t + DisableTables: + cc: 29 + struct: CS_NoArgsCmd_t + EnableAllCS: + cc: 4 + struct: CS_NoArgsCmd_t + EnableApps: + cc: 34 + struct: CS_NoArgsCmd_t + EnableCfeCore: + cc: 6 + struct: CS_NoArgsCmd_t + EnableEEPROM: + cc: 14 + struct: CS_NoArgsCmd_t + EnableEntryEEPROM: + cc: 18 + struct: CS_EntryCmd_t + EnableEntryMemory: + cc: 25 + struct: CS_EntryCmd_t + EnableMemory: + cc: 21 + struct: CS_NoArgsCmd_t + EnableNameApp: + cc: 38 + struct: CS_AppNameCmd_t + EnableNameTable: + cc: 32 + struct: CS_TableNameCmd_t + EnableOS: + cc: 10 + struct: CS_NoArgsCmd_t + EnableTables: + cc: 28 + struct: CS_NoArgsCmd_t + GetEntryIDEEPROM: + cc: 20 + struct: CS_GetEntryIDCmd_t + GetEntryIDMemory: + cc: 27 + struct: CS_GetEntryIDCmd_t + Noop: + cc: 0 + struct: CS_NoArgsCmd_t + OneShot: + cc: 2 + struct: CS_OneShotCmd_t + RecomputeBaselineApp: + cc: 37 + struct: CS_AppNameCmd_t + RecomputeBaselineCfeCore: + cc: 9 + struct: CS_NoArgsCmd_t + RecomputeBaselineEEPROM: + cc: 17 + struct: CS_EntryCmd_t + RecomputeBaselineMemory: + cc: 24 + struct: CS_EntryCmd_t + RecomputeBaselineOS: + cc: 13 + struct: CS_NoArgsCmd_t + RecomputeBaselineTable: + cc: 31 + struct: CS_TableNameCmd_t + ReportBaselineApp: + cc: 36 + struct: CS_AppNameCmd_t + ReportBaselineCfeCore: + cc: 8 + struct: CS_NoArgsCmd_t + ReportBaselineEEPROM: + cc: 16 + struct: CS_EntryCmd_t + ReportBaselineMemory: + cc: 23 + struct: CS_EntryCmd_t + ReportBaselineOS: + cc: 12 + struct: CS_NoArgsCmd_t + ReportBaselineTable: + cc: 30 + struct: CS_TableNameCmd_t + Reset: + cc: 1 + struct: CS_NoArgsCmd_t + msgID: 6225 + CS_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CS_NoArgsCmd_t + msgID: 6227 + config: + CS_APPS_TBL_POWERON_STATE: + name: CS_APPS_TBL_POWERON_STATE + value: CS_STATE_ENABLED + CS_CDS_NAME: + name: CS_CDS_NAME + value: CS_CDS + CS_CFECORE_CHECKSUM_STATE: + name: CS_CFECORE_CHECKSUM_STATE + value: CS_STATE_ENABLED + CS_CHILD_TASK_DELAY: + name: CS_CHILD_TASK_DELAY + value: 1000 + CS_CHILD_TASK_FLAGS: + name: CS_CHILD_TASK_FLAGS + value: OS_ENABLE_CORE_0 + CS_CHILD_TASK_PRIORITY: + name: CS_CHILD_TASK_PRIORITY + value: 200 + CS_DEFAULT_ALGORITHM: + name: CS_DEFAULT_ALGORITHM + value: CFE_ES_DEFAULT_CRC + CS_DEFAULT_BYTES_PER_CYCLE: + name: CS_DEFAULT_BYTES_PER_CYCLE + value: 1024 *16 + CS_DEF_APP_TABLE_FILENAME: + name: CS_DEF_APP_TABLE_FILENAME + value: /cf/apps/cs_apptbl.tbl + CS_DEF_EEPROM_TABLE_FILENAM: + name: CS_DEF_EEPROM_TABLE_FILENAM + value: /cf/apps/cs_eepromtbl.tbl + CS_DEF_MEMORY_TABLE_FILENAME: + name: CS_DEF_MEMORY_TABLE_FILENAME + value: /cf/apps/cs_memorytbl.tbl + CS_DEF_TABLES_TABLE_FILENAME: + name: CS_DEF_TABLES_TABLE_FILENAME + value: /cf/apps/cs_tablestbl.tbl + CS_EEPROM_TBL_POWERON_STATE: + name: CS_EEPROM_TBL_POWERON_STATE + value: CS_STATE_ENABLED + CS_MAX_NUM_APP_TABLE_ENTRIES: + name: CS_MAX_NUM_APP_TABLE_ENTRIES + value: 24 + CS_MAX_NUM_EEPROM_TABLE_ENTRIES: + name: CS_MAX_NUM_EEPROM_TABLE_ENTRIES + value: 16 + CS_MAX_NUM_MEMORY_TABLE_ENTRIES: + name: CS_MAX_NUM_MEMORY_TABLE_ENTRIES + value: 16 + CS_MAX_NUM_TABLES_TABLE_ENTRIES: + name: CS_MAX_NUM_TABLES_TABLE_ENTRIES + value: 24 + CS_MEMORY_TBL_POWERON_STATE: + name: CS_MEMORY_TBL_POWERON_STATE + value: CS_STATE_ENABLED + CS_OSCS_CHECKSUM_STATE: + name: CS_OSCS_CHECKSUM_STATE + value: CS_STATE_ENABLED + CS_PIPE_DEPTH: + name: CS_PIPE_DEPTH + value: 12 + CS_PRESERVE_STATES_ON_PROCESSOR_RESET: + name: CS_PRESERVE_STATES_ON_PROCESSOR_RESET + value: true + CS_STARTUP_TIMEOUT: + name: CS_STARTUP_TIMEOUT + value: 60000 + CS_TABLES_TBL_POWERON_STATE: + name: CS_TABLES_TBL_POWERON_STATE + value: CS_STATE_ENABLED + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/cs/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/CS.so + events: + CS_APP_MISCOMPARE_ERR_EID: + id: 30 + CS_BASELINE_APP_INF_EID: + id: 82 + CS_BASELINE_CFECORE_INF_EID: + id: 10 + CS_BASELINE_EEPROM_INF_EID: + id: 39 + CS_BASELINE_INVALID_ENTRY_EEPROM_ERR_EID: + id: 41 + CS_BASELINE_INVALID_ENTRY_MEMORY_ERR_EID: + id: 56 + CS_BASELINE_INVALID_NAME_APP_ERR_EID: + id: 84 + CS_BASELINE_INVALID_NAME_TABLES_ERR_EID: + id: 71 + CS_BASELINE_MEMORY_INF_EID: + id: 54 + CS_BASELINE_OS_INF_EID: + id: 12 + CS_BASELINE_TABLES_INF_EID: + id: 69 + CS_CC1_ERR_EID: + id: 34 + CS_CFECORE_MISCOMPARE_ERR_EID: + id: 31 + CS_COMPUTE_APP_ERR_EID: + id: 122 + CS_COMPUTE_APP_NOT_FOUND_ERR_EID: + id: 93 + CS_COMPUTE_APP_PLATFORM_DBG_EID: + id: 128 + CS_COMPUTE_TABLES_ERR_EID: + id: 121 + CS_COMPUTE_TABLES_NOT_FOUND_ERR_EID: + id: 94 + CS_COMPUTE_TABLES_RELEASE_ERR_EID: + id: 120 + CS_DISABLE_ALL_INF_EID: + id: 4 + CS_DISABLE_APP_DEF_NOT_FOUND_DBG_EID: + id: 132 + CS_DISABLE_APP_INF_EID: + id: 80 + CS_DISABLE_APP_NAME_INF_EID: + id: 91 + CS_DISABLE_APP_UNKNOWN_NAME_ERR_EID: + id: 92 + CS_DISABLE_CFECORE_INF_EID: + id: 6 + CS_DISABLE_EEPROM_DEF_EMPTY_DBG_EID: + id: 135 + CS_DISABLE_EEPROM_ENTRY_INF_EID: + id: 48 + CS_DISABLE_EEPROM_INF_EID: + id: 37 + CS_DISABLE_EEPROM_INVALID_ENTRY_ERR_EID: + id: 49 + CS_DISABLE_MEMORY_DEF_EMPTY_DBG_EID: + id: 133 + CS_DISABLE_MEMORY_ENTRY_INF_EID: + id: 63 + CS_DISABLE_MEMORY_INF_EID: + id: 52 + CS_DISABLE_MEMORY_INVALID_ENTRY_ERR_EID: + id: 64 + CS_DISABLE_OS_INF_EID: + id: 8 + CS_DISABLE_TABLES_INF_EID: + id: 67 + CS_DISABLE_TABLES_NAME_INF_EID: + id: 78 + CS_DISABLE_TABLES_UNKNOWN_NAME_ERR_EID: + id: 79 + CS_DISABLE_TABLE_DEF_NOT_FOUND_DBG_EID: + id: 130 + CS_EEPROM_MISCOMPARE_ERR_EID: + id: 27 + CS_ENABLE_ALL_INF_EID: + id: 5 + CS_ENABLE_APP_DEF_NOT_FOUND_DBG_EID: + id: 131 + CS_ENABLE_APP_INF_EID: + id: 81 + CS_ENABLE_APP_NAME_INF_EID: + id: 89 + CS_ENABLE_APP_UNKNOWN_NAME_ERR_EID: + id: 90 + CS_ENABLE_CFECORE_INF_EID: + id: 7 + CS_ENABLE_EEPROM_DEF_EMPTY_DBG_EID: + id: 136 + CS_ENABLE_EEPROM_ENTRY_INF_EID: + id: 46 + CS_ENABLE_EEPROM_INF_EID: + id: 38 + CS_ENABLE_EEPROM_INVALID_ENTRY_ERR_EID: + id: 47 + CS_ENABLE_MEMORY_DEF_EMPTY_DBG_EID: + id: 134 + CS_ENABLE_MEMORY_ENTRY_INF_EID: + id: 61 + CS_ENABLE_MEMORY_INF_EID: + id: 53 + CS_ENABLE_MEMORY_INVALID_ENTRY_ERR_EID: + id: 62 + CS_ENABLE_OS_INF_EID: + id: 9 + CS_ENABLE_TABLES_INF_EID: + id: 68 + CS_ENABLE_TABLES_NAME_INF_EID: + id: 76 + CS_ENABLE_TABLES_UNKNOWN_NAME_ERR_EID: + id: 77 + CS_ENABLE_TABLE_DEF_NOT_FOUND_DBG_EID: + id: 129 + CS_EXIT_ERR_EID: + id: 35 + CS_EXIT_INF_EID: + id: 146 + CS_GET_ENTRY_ID_EEPROM_INF_EID: + id: 50 + CS_GET_ENTRY_ID_EEPROM_NOT_FOUND_INF_EI: + id: 51 + CS_GET_ENTRY_ID_MEMORY_INF_EID: + id: 65 + CS_GET_ENTRY_ID_MEMORY_NOT_FOUND_INF_EID: + id: 66 + CS_INIT_APP_ERR_EID: + id: 119 + CS_INIT_CDS_ERR_EID 145: + id: 145 + CS_INIT_EEPROM_ERR_EID: + id: 116 + CS_INIT_INF_EID: + id: 1 + CS_INIT_MEMORY_ERR_EID: + id: 117 + CS_INIT_SB_CREATE_ERR_EID: + id: 112 + CS_INIT_SB_SUBSCRIBE_BACK_ERR_EID: + id: 114 + CS_INIT_SB_SUBSCRIBE_CMD_ERR_EID: + id: 115 + CS_INIT_SB_SUBSCRIBE_HK_ERR_EID: + id: 113 + CS_INIT_TABLES_ERR_EID: + id: 118 + CS_LEN_ERR_EID: + id: 36 + CS_MEMORY_MISCOMPARE_ERR_EID: + id: 28 + CS_MID_ERR_EID: + id: 33 + CS_NOOP_INF_EID: + id: 2 + CS_NO_BASELINE_APP_INF_EID: + id: 83 + CS_NO_BASELINE_CFECORE_INF_EID: + id: 11 + CS_NO_BASELINE_EEPROM_INF_EID: + id: 40 + CS_NO_BASELINE_MEMORY_INF_EID: + id: 55 + CS_NO_BASELINE_OS_INF_EID: + id: 13 + CS_NO_BASELINE_TABLES_INF_EID: + id: 70 + CS_ONESHOT_CANCELLED_INF_EID: + id: 24 + CS_ONESHOT_CANCEL_DELETE_CHDTASK_ERR_EID: + id: 25 + CS_ONESHOT_CANCEL_NO_CHDTASK_ERR_EID: + id: 26 + CS_ONESHOT_CHDTASK_ERR_EID: + id: 22 + CS_ONESHOT_CREATE_CHDTASK_ERR_EID: + id: 21 + CS_ONESHOT_FINISHED_INF_EID: + id: 100 + CS_ONESHOT_MEMVALIDATE_ERR_EID: + id: 23 + CS_ONESHOT_STARTED_DBG_EID: + id: 20 + CS_OS_MISCOMPARE_ERR_EID: + id: 32 + CS_OS_TEXT_SEG_INF_EID: + id: 127 + CS_PROCESS_APP_NO_ENTRIES_INF_EID: + id: 108 + CS_PROCESS_EEPROM_MEMORY_NO_ENTRIES_INF_EID: + id: 107 + CS_PROCESS_TABLES_NO_ENTRIES_INF_EID: + id: 109 + CS_RECOMPUTE_APP_CHDTASK_ERR_EID: + id: 88 + CS_RECOMPUTE_APP_CREATE_CHDTASK_ERR_EID: + id: 86 + CS_RECOMPUTE_APP_STARTED_DBG_EID: + id: 85 + CS_RECOMPUTE_CFECORE_CHDTASK_ERR_EID: + id: 16 + CS_RECOMPUTE_CFECORE_CREATE_CHDTASK_ERR_EID: + id: 15 + CS_RECOMPUTE_CFECORE_STARTED_DBG_EID: + id: 14 + CS_RECOMPUTE_EEPROM_CHDTASK_ERR_EID: + id: 45 + CS_RECOMPUTE_EEPROM_CREATE_CHDTASK_ERR_EID: + id: 43 + CS_RECOMPUTE_EEPROM_STARTED_DBG_EID: + id: 42 + CS_RECOMPUTE_ERROR_APP_ERR_EID: + id: 97 + CS_RECOMPUTE_ERROR_TABLES_ERR_EID: + id: 96 + CS_RECOMPUTE_FINISH_APP_INF_EID: + id: 99 + CS_RECOMPUTE_FINISH_EEPROM_MEMORY_INF_EID: + id: 95 + CS_RECOMPUTE_FINISH_TABLES_INF_EID: + id: 98 + CS_RECOMPUTE_INVALID_ENTRY_EEPROM_ERR_EID: + id: 44 + CS_RECOMPUTE_INVALID_ENTRY_MEMORY_ERR_EID: + id: 59 + CS_RECOMPUTE_MEMORY_CHDTASK_ERR_EID: + id: 60 + CS_RECOMPUTE_MEMORY_CREATE_CHDTASK_ERR_EID: + id: 58 + CS_RECOMPUTE_MEMORY_STARTED_DBG_EID: + id: 57 + CS_RECOMPUTE_OS_CHDTASK_ERR_EID: + id: 19 + CS_RECOMPUTE_OS_CREATE_CHDTASK_ERR_EID: + id: 18 + CS_RECOMPUTE_OS_STARTED_DBG_EI: + id: 17 + CS_RECOMPUTE_TABLES_CHDTASK_ERR_EID: + id: 75 + CS_RECOMPUTE_TABLES_CREATE_CHDTASK_ERR_EID: + id: 73 + CS_RECOMPUTE_TABLES_STARTED_DBG_EID: + id: 72 + CS_RECOMPUTE_UNKNOWN_NAME_APP_ERR_EID: + id: 87 + CS_RECOMPUTE_UNKNOWN_NAME_TABLES_ERR_EID: + id: 74 + CS_RESET_DBG_EID: + id: 3 + CS_TABLES_MISCOMPARE_ERR_EID: + id: 29 + CS_TBL_INIT_ERR_EID: + id: 110 + CS_TBL_UPDATE_ERR_EID: + id: 111 + CS_UPDATE_APP_ERR_EID: + id: 126 + CS_UPDATE_EEPROM_ERR_EID: + id: 123 + CS_UPDATE_MEMORY_ERR_EID: + id: 124 + CS_UPDATE_TABLES_ERR_EID: + id: 125 + CS_VAL_APP_DEF_TBL_DUPL_ERR_EID: + id: 140 + CS_VAL_APP_DEF_TBL_ZERO_NAME_ERR_EID: + id: 141 + CS_VAL_APP_INF_EID: + id: 142 + CS_VAL_APP_STATE_ERR_EID: + id: 106 + CS_VAL_EEPROM_INF_EID: + id: 144 + CS_VAL_EEPROM_RANGE_ERR_EID: + id: 102 + CS_VAL_EEPROM_STATE_ERR_EID: + id: 101 + CS_VAL_MEMORY_INF_EID: + id: 143 + CS_VAL_MEMORY_RANGE_ERR_EID: + id: 104 + CS_VAL_MEMORY_STATE_ERR_EID: + id: 103 + CS_VAL_TABLES_DEF_TBL_DUPL_ERR_EID: + id: 137 + CS_VAL_TABLES_DEF_TBL_ZERO_NAME_ERR_EID: + id: 138 + CS_VAL_TABLES_INF_EID: + id: 139 + CS_VAL_TABLES_STATE_ERR_EID: + id: 105 + long_name: Checksum Services + module_type: CFE_APP + msg_def_overrides: + - member: Name + parent: CS_AppNameCmd_t + type: string + - member: Name + parent: CS_TableNameCmd_t + type: string + perfids: + CS_APPMAIN_PERF_ID: + id: 44 + short_name: cs + telemetry: + CS_HK_TLM_MID: + msgID: 2128 + struct: CS_HkPacket_t + ds: + app_name: DS + commands: + DS_CMD_MID: + commands: + AddMessage: + cc: 16 + struct: DS_AddMidCmd_t + CloseAll: + cc: 17 + struct: DS_CloseAllCmd_t + CloseFile: + cc: 14 + struct: DS_CloseFileCmd_t + GetFileInfo: + cc: 15 + struct: DS_GetFileInfoCmd_t + Noop: + cc: 0 + struct: DS_NoopCmd_t + Reset: + cc: 1 + struct: DS_ResetCmd_t + SetAppState: + cc: 2 + struct: DS_AppStateCmd_t + SetDestAge: + cc: 12 + struct: DS_DestAgeCmd_t + SetDestBase: + cc: 9 + struct: DS_DestBaseCmd_t + SetDestCount: + cc: 13 + struct: DS_DestCountCmd_t + SetDestExt: + cc: 10 + struct: DS_DestExtCmd_t + SetDestPath: + cc: 8 + struct: DS_DestPathCmd_t + SetDestSize: + cc: 11 + struct: DS_DestSizeCmd_t + SetDestState: + cc: 7 + struct: DS_DestStateCmd_t + SetDestType: + cc: 6 + struct: DS_DestTypeCmd_t + SetFilterFile: + cc: 3 + struct: DS_FilterFileCmd_t + SetFilterParams: + cc: 5 + struct: DS_FilterParmsCmd_t + SetFilterType: + cc: 4 + struct: DS_FilterTypeCmd_t + msgID: 6230 + DS_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: DS_NoopCmd_t + msgID: 6231 + config: + DS_APP_PIPE_DEPTH: + name: DS_APP_PIPE_DEPTH + value: 256 + DS_APP_PIPE_NAME: + name: DS_APP_PIPE_NAME + value: DS_CMD_PIPE + DS_BASENAME_BUFSIZE: + name: DS_BASENAME_BUFSIZE + value: OS_MAX_PATH_LEN + DS_CDS_ENABLE_STATE: + name: DS_CDS_ENABLE_STATE + value: 1 + DS_DEF_DEST_FILENAME: + name: DS_DEF_DEST_FILENAME + value: /cf/apps/ds_file_tbl.tbl + DS_DEF_ENABLE_STATE: + name: DS_DEF_ENABLE_STATE + value: 1 + DS_DEF_FILTER_FILENAME: + name: DS_DEF_FILTER_FILENAME + value: cf/apps/ds_filter_tbl.tbl + DS_DESCRIPTOR_BUFSIZE: + name: DS_DESCRIPTOR_BUFSIZE + value: 32 + DS_DESTINATION_TBL_NAME: + name: DS_DESTINATION_TBL_NAME + value: FILE_TBL + DS_DEST_FILE_CNT: + name: DS_DEST_FILE_CNT + value: 16 + DS_EXTENSION_BUFSIZE: + name: DS_EXTENSION_BUFSIZE + value: 8 + DS_FILE_HDR_DESCRIPTION: + name: DS_FILE_HDR_DESCRIPTION + value: DS data storage file + DS_FILE_HDR_SUBTYPE: + name: DS_FILE_HDR_SUBTYPE + value: 12345 + DS_FILE_HEADER_TYPE: + name: DS_FILE_HEADER_TYPE + value: 1 + DS_FILE_MIN_AGE_LIMIT: + name: DS_FILE_MIN_AGE_LIMIT + value: 60 + DS_FILE_MIN_SIZE_LIMIT: + name: DS_FILE_MIN_SIZE_LIMIT + value: 1024 + DS_FILTERS_PER_PACKET: + name: DS_FILTERS_PER_PACKET + value: 4 + DS_FILTER_TBL_NAME: + name: DS_FILTER_TBL_NAME + value: FILTER_TBL + DS_MAKE_TABLES_CRITICAL: + name: DS_MAKE_TABLES_CRITICAL + value: 0 + DS_MAX_SEQUENCE_COUNT: + name: DS_MAX_SEQUENCE_COUNT + value: 99999999 + DS_MISSION_REV: + name: DS_MISSION_REV + value: 0 + DS_MOVE_FILES: + name: DS_MOVE_FILES + value: 50 + DS_PACKETS_IN_FILTER_TABLE: + name: DS_PACKETS_IN_FILTER_TABLE + value: 256 + DS_PATHNAME_BUFSIZE: + name: DS_PATHNAME_BUFSIZE + value: OS_MAX_PATH_LEN + DS_PER_PACKET_PIPE_LIMIT: + name: DS_PER_PACKET_PIPE_LIMIT + value: 1 + DS_SECS_PER_HK_CYCLE: + name: DS_SECS_PER_HK_CYCLE + value: 4 + DS_SEQUENCE_DIGITS: + name: DS_SEQUENCE_DIGITS + value: 8 + DS_TOTAL_FNAME_BUFSIZE: + name: DS_TOTAL_FNAME_BUFSIZE + value: OS_MAX_PATH_LEN + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/ds/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/DS.so + events: + DS_ADD_MID_CMD_EID: + id: 64 + DS_ADD_MID_CMD_ERR_EID: + id: 65 + DS_AGE_CMD_EID: + id: 55 + DS_AGE_CMD_ERR_EID: + id: 56 + DS_BASE_CMD_EID: + id: 49 + DS_BASE_CMD_ERR_EID: + id: 50 + DS_CLOSE_ALL_CMD_EID: + id: 66 + DS_CLOSE_ALL_CMD_ERR_EID: + id: 67 + DS_CLOSE_CMD_EID: + id: 59 + DS_CLOSE_CMD_ERR_EID: + id: 60 + DS_CMD_CODE_ERR_EID: + id: 21 + DS_CREATE_FILE_ERR_EID: + id: 15 + DS_ENADIS_CMD_EID: + id: 35 + DS_ENADIS_CMD_ERR_EID: + id: 36 + DS_EXIT_ERR_EID: + id: 3 + DS_EXT_CMD_EI: + id: 51 + DS_EXT_CMD_ERR_EID: + id: 52 + DS_FILE_CMD_EID: + id: 37 + DS_FILE_CMD_ERR_EID: + id: 38 + DS_FILE_NAME_ERR_EID: + id: 14 + DS_FIL_TBL_EID: + id: 10 + DS_FIL_TBL_ERR_EID: + id: 11 + DS_FLT_TBL_EID: + id: 12 + DS_FLT_TBL_ERR_EID: + id: 13 + DS_FTYPE_CMD_EID: + id: 39 + DS_FTYPE_CMD_ERR_EID: + id: 40 + DS_GET_FILE_INFO_CMD_EID: + id: 62 + DS_GET_FILE_INFO_CMD_ERR_EID: + id: 63 + DS_HK_REQUEST_ERR_EID: + id: 22 + DS_INIT_CDS_ERR_EID: + id: 6 + DS_INIT_EID: + id: 1 + DS_INIT_ERR_EID: + id: 2 + DS_INIT_TBL_CDS_EID: + id: 7 + DS_INIT_TBL_ERR_EID: + id: 8 + DS_MOVE_FILE_ERR_EID: + id: 61 + DS_NOOP_CMD_EID: + id: 31 + DS_NOOP_CMD_ERR_EID: + id: 32 + DS_NTYPE_CMD_EID: + id: 43 + DS_NTYPE_CMD_ERR_EID: + id: 44 + DS_PARMS_CMD_EID: + id: 41 + DS_PARMS_CMD_ERR_EID: + id: 42 + DS_PATH_CMD_EID: + id: 47 + DS_PATH_CMD_ERR_EID: + id: 48 + DS_RESET_CMD_EID: + id: 33 + DS_RESET_CMD_ERR_EID: + id: 34 + DS_SEQ_CMD_EID: + id: 57 + DS_SEQ_CMD_ERR_EID: + id: 58 + DS_SIZE_CMD_EID: + id: 53 + DS_SIZE_CMD_ERR_EID: + id: 54 + DS_STATE_CMD_EID: + id: 45 + DS_STATE_CMD_ERR_EID: + id: 46 + DS_WRITE_FILE_ERR_EID: + id: 16 + long_name: Data Storage + module_type: CFE_APP + msg_def_overrides: + - member: FilterTblFilename + parent: DS_HkPacket_t + type: string + - member: FileName + parent: DS_FileInfo_t + type: string + - member: Pathname + parent: DS_DestPathCmd_t + type: string + - member: Basename + parent: DS_DestBaseCmd_t + type: string + - member: Extension + parent: DS_DestExtCmd_t + type: string + perfids: + DS_APPMAIN_PERF_ID: + id: 45 + short_name: ds + telemetry: + DS_DIAG_TLM_MID: + msgID: 2132 + struct: DS_FileInfoPkt_t + DS_HK_TLM_MID: + msgID: 2133 + struct: DS_HkPacket_t + ea: + app_name: EA + commands: + EA_CMD_MID: + commands: + Noop: + cc: 0 + struct: EA_NoArgCmd_t + Reset: + cc: 1 + struct: EA_NoArgCmd_t + Start: + cc: 2 + struct: EA_StartCmd_t + Terminate: + cc: 3 + struct: EA_NoArgCmd_t + msgID: 6438 + EA_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: EA_NoArgCmd_t + msgID: 6439 + EA_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: EA_NoArgCmd_t + msgID: 6440 + config: + EA_APP_NUM_THREADS: + name: EA_APP_NUM_THREADS + value: 4 + EA_APP_UTIL_THRESHOLD: + name: EA_APP_UTIL_THRESHOLD + value: 70 + EA_CHILD_TASK_FLAGS: + name: EA_CHILD_TASK_FLAGS + value: OS_ENABLE_CORE_0 + EA_CHILD_TASK_PRIORITY: + name: EA_CHILD_TASK_PRIORITY + value: 187 + EA_CMD_PIPE_DEPTH: + name: EA_CMD_PIPE_DEPTH + value: 4 + EA_CMD_PIPE_NAME: + name: EA_CMD_PIPE_NAME + value: EA_CMD_PIPE + EA_CONFIG_TABLE_FILENAME: + name: EA_CONFIG_TABLE_FILENAME + value: /cf/apps/ea_config.tbl + EA_DATA_PIPE_DEPTH: + name: EA_DATA_PIPE_DEPTH + value: 4 + EA_DATA_PIPE_NAME: + name: EA_DATA_PIPE_NAME + value: EA_DATA_PIPE + EA_MAX_PATH_LEN: + name: EA_MAX_PATH_LEN + value: 96 + EA_MISSION_REV: + name: EA_MISSION_REV + value: 0 + EA_SB_TIMEOUT: + name: EA_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + EA_SCH_PIPE_DEPTH: + name: EA_SCH_PIPE_DEPTH + value: 2 + EA_SCH_PIPE_NAME: + name: EA_SCH_PIPE_NAME + value: EA_SCH_PIPE + EA_SCH_PIPE_PEND_TIME: + name: EA_SCH_PIPE_PEND_TIME + value: 2000 + EA_SCH_PIPE_SEND_HK_RESERVED: + name: EA_SCH_PIPE_SEND_HK_RESERVED + value: 1 + EA_SCH_PIPE_WAKEUP_RESERVED: + name: EA_SCH_PIPE_WAKEUP_RESERVED + value: 1 + EA_STARTUP_TIMEOUT_MSEC: + name: EA_STARTUP_TIMEOUT_MSEC + value: 1000 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/ea/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/EA.so + events: + EA_APP_ERR_EID: + id: 6 + EA_CC_ERR_EID: + id: 18 + EA_CHILD_TASK_START_EID: + id: 14 + EA_CHILD_TASK_START_ERR_EID: + id: 15 + EA_CMD_ERR_EID: + id: 10 + EA_CMD_INF_EID: + id: 3 + EA_CMD_NOOP_EID: + id: 16 + EA_CMD_RESET_EID: + id: 17 + EA_ERR_EID: + id: 8 + EA_INF_APP_START_EID: + id: 4 + EA_INF_APP_TERM_EID: + id: 5 + EA_INF_EID: + id: 1 + EA_INIT_ERR_EID: + id: 9 + EA_INIT_INF_EID: + id: 2 + EA_MSGID_ERR_EID: + id: 12 + EA_MSGLEN_ERR_EID: + id: 13 + EA_PIPE_ERR_EID: + id: 11 + EA_WARN_APP_UTIL_EID: + id: 7 + long_name: External Application + module_type: CFE_APP + perfids: + EA_MAIN_TASK_PERF_ID: + id: 70 + short_name: ea + telemetry: + EA_HK_TLM_MID: + msgID: 2341 + struct: EA_HkTlm_t + fm: + app_name: FM + commands: + FM_CMD_MID: + commands: + Concat: + cc: 9 + struct: FM_ConcatCmd_t + CopyFile: + cc: 2 + struct: FM_CopyFileCmd_t + CreateDir: + cc: 12 + struct: FM_CreateDirCmd_t + Decompress: + cc: 8 + struct: FM_DecompressCmd_t + DeleteAll: + cc: 7 + struct: FM_DeleteAllCmd_t + DeleteDir: + cc: 13 + struct: FM_DeleteDirCmd_t + DeleteFile: + cc: 5 + struct: FM_DeleteFileCmd_t + GetDirFile: + cc: 14 + struct: FM_GetDirFileCmd_t + GetDirPkt: + cc: 15 + struct: FM_GetDirPktCmd_t + GetFileInfo: + cc: 10 + struct: FM_GetFileInfoCmd_t + GetFreeSpace: + cc: 16 + struct: FM_GetFreeSpaceCmd_t + GetOpenFiles: + cc: 11 + struct: FM_GetOpenFilesCmd_t + MoveFile: + cc: 3 + struct: FM_MoveFileCmd_t + Noop: + cc: 0 + struct: FM_NoopCmd_t + RenameFile: + cc: 4 + struct: FM_RenameFileCmd_t + Reset: + cc: 1 + struct: FM_ResetCmd_t + SetPerm: + cc: 19 + struct: FM_SetPermCmd_t + SetTableState: + cc: 17 + struct: FM_SetTableStateCmd_t + msgID: 6237 + FM_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: FM_HousekeepingCmd_t + msgID: 6238 + config: + FM_APP_NAME: + name: FM_APP_NAME + value: FM + FM_APP_PIPE_DEPTH: + name: FM_APP_PIPE_DEPTH + value: 10 + FM_APP_PIPE_NAME: + name: FM_APP_PIPE_NAME + value: FM_CMD_PIPE + FM_CHILD_FILE_BLOCK_SIZE: + name: FM_CHILD_FILE_BLOCK_SIZE + value: 2048 + FM_CHILD_FILE_LOOP_COUNT: + name: FM_CHILD_FILE_LOOP_COUNT + value: 16 + FM_CHILD_FILE_SLEEP_MS: + name: FM_CHILD_FILE_SLEEP_MS + value: 20 + FM_CHILD_QUEUE_DEPTH: + name: FM_CHILD_QUEUE_DEPTH + value: 3 + FM_CHILD_SEM_NAME: + name: FM_CHILD_SEM_NAME + value: FM_CHILD_SEM + FM_CHILD_STAT_SLEEP_FILECOUNT: + name: FM_CHILD_STAT_SLEEP_FILECOUNT + value: 0 + FM_CHILD_STAT_SLEEP_MS: + name: FM_CHILD_STAT_SLEEP_MS + value: 0 + FM_CHILD_TASK_FLAGS: + name: FM_CHILD_TASK_FLAGS + value: OS_ENABLE_CORE_0 + FM_CHILD_TASK_NAME: + name: FM_CHILD_TASK_NAME + value: FM_CHILD_TASK + FM_CHILD_TASK_PRIORITY: + name: FM_CHILD_TASK_PRIORITY + value: 205 + FM_CHILD_TASK_STACK_SIZE: + name: FM_CHILD_TASK_STACK_SIZE + value: 20480 + FM_DIR_LIST_FILE_DEFNAME: + name: FM_DIR_LIST_FILE_DEFNAME + value: /ram/fm_dirlist.out + FM_DIR_LIST_FILE_ENTRIES: + name: FM_DIR_LIST_FILE_ENTRIES + value: 3000 + FM_DIR_LIST_FILE_SUBTYPE: + name: FM_DIR_LIST_FILE_SUBTYPE + value: 12345 + FM_DIR_LIST_PKT_ENTRIES: + name: FM_DIR_LIST_PKT_ENTRIES + value: 20 + FM_MISSION_REV: + name: FM_MISSION_REV + value: 0 + FM_TABLE_CFE_NAME: + name: FM_TABLE_CFE_NAME + value: FreeSpace + FM_TABLE_DEF_DESC: + name: FM_TABLE_DEF_DESC + value: FM File System Free Space Table + FM_TABLE_DEF_NAME: + name: FM_TABLE_DEF_NAME + value: /cf/apps/fm_freespace.tbl + FM_TABLE_ENTRY_COUNT: + name: FM_TABLE_ENTRY_COUNT + value: 8 + FM_TABLE_FILENAME: + name: FM_TABLE_FILENAME + value: fm_freespace.tbl + FM_TABLE_VALIDATION_ERR: + name: FM_TABLE_VALIDATION_ERR + value: 0xCF000080L + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/fm/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/FM.so + events: + FM_CC_ERR_EID: + id: 10 + FM_CHILD_EXE_ERR_EID: + id: 103 + FM_CHILD_INIT_EID: + id: 100 + FM_CHILD_INIT_ERR_EID: + id: 101 + FM_CHILD_TERM_ERR_EID: + id: 102 + FM_CONCAT_CHILD_ERR_EID: + id: 58 + FM_CONCAT_CMD_EID: + id: 53 + FM_CONCAT_OS_ERR_EID: + id: 59 + FM_CONCAT_PKT_ERR_EID: + id: 54 + FM_CONCAT_SRC1_ERR_EID: + id: 55 + FM_CONCAT_SRC2_ERR_EID: + id: 56 + FM_CONCAT_TGT_ERR_EID: + id: 57 + FM_COPY_CHILD_ERR_EID: + id: 21 + FM_COPY_CMD_EID: + id: 16 + FM_COPY_OS_ERR_EID: + id: 22 + FM_COPY_OVR_ERR_EID: + id: 18 + FM_COPY_PKT_ERR_EID: + id: 17 + FM_COPY_SRC_ERR_EID: + id: 19 + FM_COPY_TGT_ERR_EID: + id: 20 + FM_CREATE_DIR_CHILD_ERR_EID: + id: 70 + FM_CREATE_DIR_CMD_EID: + id: 67 + FM_CREATE_DIR_OS_ERR_EID: + id: 71 + FM_CREATE_DIR_PKT_ERR_EID: + id: 68 + FM_CREATE_DIR_SRC_ERR_EID: + id: 69 + FM_DECOM_CFE_ERR_EID: + id: 52 + FM_DECOM_CHILD_ERR_EID: + id: 51 + FM_DECOM_CMD_EID: + id: 47 + FM_DECOM_PKT_ERR_EID: + id: 48 + FM_DECOM_SRC_ERR_EID: + id: 49 + FM_DECOM_TGT_ERR_EID: + id: 50 + FM_DELETE_ALL_CHILD_ERR_EID: + id: 45 + FM_DELETE_ALL_CMD_EID: + id: 41 + FM_DELETE_ALL_OS_ERR_EID: + id: 46 + FM_DELETE_ALL_PKT_ERR_EID: + id: 43 + FM_DELETE_ALL_SRC_ERR_EID: + id: 44 + FM_DELETE_ALL_WARNING_EID: + id: 42 + FM_DELETE_CHILD_ERR_EID: + id: 39 + FM_DELETE_CMD_EID: + id: 36 + FM_DELETE_DIR_CHILD_ERR_EID: + id: 75 + FM_DELETE_DIR_CMD_EID: + id: 72 + FM_DELETE_DIR_EMPTY_ERR_EID: + id: 76 + FM_DELETE_DIR_OS_ERR_EID: + id: 77 + FM_DELETE_DIR_PKT_ERR_EID: + id: 73 + FM_DELETE_DIR_SRC_ERR_EID: + id: 74 + FM_DELETE_OS_ERR_EID: + id: 40 + FM_DELETE_PKT_ERR_EID: + id: 37 + FM_DELETE_SRC_ERR_EID: + id: 38 + FM_EXIT_ERR_EID: + id: 8 + FM_GET_DIR_FILE_CHILD_ERR_EID: + id: 83 + FM_GET_DIR_FILE_CMD_EID: + id: 78 + FM_GET_DIR_FILE_OS_ERR_EID: + id: 84 + FM_GET_DIR_FILE_PKT_ERR_EID: + id: 79 + FM_GET_DIR_FILE_SRC_ERR_EID: + id: 80 + FM_GET_DIR_FILE_TGT_ERR_EID: + id: 81 + FM_GET_DIR_FILE_WARNING_EID: + id: 82 + FM_GET_DIR_PKT_CHILD_ERR_EID: + id: 89 + FM_GET_DIR_PKT_CMD_EI: + id: 85 + FM_GET_DIR_PKT_OS_ERR_EID: + id: 90 + FM_GET_DIR_PKT_PKT_ERR_EID: + id: 87 + FM_GET_DIR_PKT_SRC_ERR_EID: + id: 88 + FM_GET_DIR_PKT_WARNING_EID: + id: 86 + FM_GET_FILE_INFO_CHILD_ERR_EID: + id: 63 + FM_GET_FILE_INFO_CMD_EID: + id: 60 + FM_GET_FILE_INFO_PKT_ERR_EID: + id: 61 + FM_GET_FILE_INFO_SRC_ERR_EID: + id: 62 + FM_GET_FILE_INFO_WARNING_EID: + id: 64 + FM_GET_FREE_SPACE_CMD_EID: + id: 91 + FM_GET_FREE_SPACE_PKT_ERR_EID: + id: 92 + FM_GET_FREE_SPACE_TBL_ERR_EID: + id: 93 + FM_GET_OPEN_FILES_CMD_EID: + id: 65 + FM_GET_OPEN_FILES_PKT_ERR_EID: + id: 66 + FM_HK_REQ_ERR_EID: + id: 11 + FM_MID_ERR_EID: + id: 9 + FM_MOVE_CHILD_ERR_EID: + id: 28 + FM_MOVE_CMD_EID: + id: 23 + FM_MOVE_OS_ERR_EID: + id: 29 + FM_MOVE_OVR_ERR_EID: + id: 25 + FM_MOVE_PKT_ERR_EID: + id: 24 + FM_MOVE_SRC_ERR_EID: + id: 26 + FM_MOVE_TGT_ERR_EID: + id: 27 + FM_NOOP_CMD_EID: + id: 12 + FM_NOOP_PKT_ERR_EID: + id: 13 + FM_RENAME_CHILD_ERR_EID: + id: 34 + FM_RENAME_CMD_EID: + id: 30 + FM_RENAME_OS_ERR_EID: + id: 35 + FM_RENAME_PKT_ERR_EID: + id: 31 + FM_RENAME_SRC_ERR_EID: + id: 32 + FM_RENAME_TGT_ERR_EID: + id: 33 + FM_RESET_CMD_EID: + id: 14 + FM_RESET_PKT_ERR_EID: + id: 15 + FM_SB_RECEIVE_ERR_EID: + id: 7 + FM_SET_PERM_CMD_EID: + id: 111 + FM_SET_PERM_ERR_EID: + id: 110 + FM_SET_PERM_OS_ERR_EID: + id: 112 + FM_SET_TABLE_STATE_ARG_ERR_EID: + id: 97 + FM_SET_TABLE_STATE_CMD_EID: + id: 94 + FM_SET_TABLE_STATE_PKT_ERR_EID: + id: 95 + FM_SET_TABLE_STATE_TBL_ERR_EID: + id: 96 + FM_SET_TABLE_STATE_UNUSED_ERR_EID: + id: 98 + FM_STARTUP_CREAT_PIPE_ERR_EID: + id: 3 + FM_STARTUP_EID: + id: 1 + FM_STARTUP_EVENTS_ERR_EID: + id: 2 + FM_STARTUP_SUBSCRIB_GCMD_ERR_EID: + id: 5 + FM_STARTUP_SUBSCRIB_HK_ERR_EID: + id: 4 + FM_STARTUP_TABLE_INIT_ERR_EID: + id: 6 + FM_TABLE_VERIFY_EID: + id: 104 + FM_TABLE_VERIFY_ERR_EID: + id: 99 + long_name: File Management + module_type: CFE_APP + msg_def_overrides: + - member: Source + parent: FM_CopyFileCmd_t + type: string + - member: Target + parent: FM_CopyFileCmd_t + type: string + - member: Source + parent: FM_MoveFileCmd_t + type: string + - member: Target + parent: FM_MoveFileCmd_t + type: string + - member: Source + parent: FM_RenameFileCmd_t + type: string + - member: Target + parent: FM_RenameFileCmd_t + type: string + - member: Filename + parent: FM_DeleteFileCmd_t + type: string + - member: Directory + parent: FM_DeleteAllCmd_t + type: string + - member: Source + parent: FM_DecompressCmd_t + type: string + - member: Target + parent: FM_DecompressCmd_t + type: string + - member: Source1 + parent: FM_ConcatCmd_t + type: string + - member: Source2 + parent: FM_ConcatCmd_t + type: string + - member: Target + parent: FM_ConcatCmd_t + type: string + - member: Filename + parent: FM_GetFileInfoCmd_t + type: string + - member: Directory + parent: FM_CreateDirCmd_t + type: string + - member: Directory + parent: FM_DeleteDirCmd_t + type: string + - member: Directory + parent: FM_GetDirFileCmd_t + type: string + - member: Filename + parent: FM_GetDirFileCmd_t + type: string + - member: Directory + parent: FM_GetDirPktCmd_t + type: string + - enumerations: + DISABLED: 0 + ENABLED: 1 + UNUSED: 2 + member: TableEntryState + parent: FM_SetTableStateCmd_t + type: enumeration + - member: FileName + parent: FM_SetPermCmd_t + type: string + - member: EntryName + parent: FM_DirListEntry_t + type: string + - member: DirName + parent: FM_DirListPkt_t + type: string + - member: DirName + parent: FM_DirListFileStats_t + type: string + - member: Filename + parent: FM_FileInfoPkt_t + type: string + - member: LogicalName + parent: FM_OpenFilesEntry_t + type: string + - member: AppName + parent: FM_OpenFilesEntry_t + type: string + - member: Name + parent: FM_FreeSpacePktEntry_t + type: string + - enumerations: + CONCAT: 9 + COPY: 2 + CREATE_DIR: 12 + DECOMPRESS: 8 + DELETE: 5 + DELETE_ALL: 7 + DELETE_DIR: 13 + DELETE_INT: 18 + GET_DIR_FILE: 14 + GET_DIR_PKT: 15 + GET_FILE_INFO: 10 + GET_FREE_SPACE: 16 + GET_OPEN_FILES: 11 + MOVE: 3 + NOOP: 0 + RENAME: 4 + RESET: 1 + SET_FILE_PEERM: 19 + SET_TABLE_STATE: 17 + member: ChildCurrentCC + parent: FM_HousekeepingPkt_t + type: enumeration + - enumerations: + CONCAT: 9 + COPY: 2 + CREATE_DIR: 12 + DECOMPRESS: 8 + DELETE: 5 + DELETE_ALL: 7 + DELETE_DIR: 13 + DELETE_INT: 18 + GET_DIR_FILE: 14 + GET_DIR_PKT: 15 + GET_FILE_INFO: 10 + GET_FREE_SPACE: 16 + GET_OPEN_FILES: 11 + MOVE: 3 + NOOP: 0 + RENAME: 4 + RESET: 1 + SET_FILE_PEERM: 19 + SET_TABLE_STATE: 17 + member: ChildPreviousCC + parent: FM_HousekeepingPkt_t + type: enumeration + - member: Name + parent: FM_TableEntry_t + type: string + - enumerations: + DISABLED: 0 + ENABLED: 1 + UNUSED: 2 + member: State + parent: FM_TableEntry_t + type: enumeration + perfids: + FM_APPMAIN_PERF_ID: + id: 46 + FM_CHILD_TASK_PERF_ID: + id: 47 + short_name: fm + telemetry: + FM_DIR_LIST_TLM_MID: + msgID: 2136 + struct: FM_DirListPkt_t + FM_FILE_INFO_TLM_MID: + msgID: 2137 + struct: FM_FileInfoPkt_t + FM_FREE_SPACE_TLM_MID: + msgID: 2138 + struct: FM_FreeSpacePkt_t + FM_HK_TLM_MID: + msgID: 2139 + struct: FM_HousekeepingPkt_t + FM_OPEN_FILES_TLM_MID: + msgID: 2140 + struct: FM_OpenFilesPkt_t + gps: + app_name: GPS + commands: + GPS_CMD_MID: + commands: + Noop: + cc: 0 + struct: GPS_NoArgCmd_t + Reset: + cc: 1 + struct: GPS_NoArgCmd_t + msgID: 6202 + GPS_READ_SENSOR_MID: + commands: + ReadSensor: + cc: 0 + struct: GPS_NoArgCmd_t + msgID: 6204 + GPS_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: GPS_NoArgCmd_t + msgID: 6203 + config: + GPS_CMD_PIPE_DEPTH: + name: GPS_CMD_PIPE_DEPTH + value: 4 + GPS_CMD_PIPE_NAME: + name: GPS_CMD_PIPE_NAME + value: GPS_CMD_PIPE + GPS_CONFIG_TABLE_FILENAME: + name: GPS_CONFIG_TABLE_FILENAME + value: /cf/apps/gps_config.tbl + GPS_CUSTOM_CHILD_TASK_FLAGS: + name: GPS_CUSTOM_CHILD_TASK_FLAGS + value: OS_ENABLE_CORE_0 + GPS_DATA_PIPE_DEPTH: + name: GPS_DATA_PIPE_DEPTH + value: 4 + GPS_DATA_PIPE_NAME: + name: GPS_DATA_PIPE_NAME + value: GPS_DATA_PIPE + GPS_MISSION_REV: + name: GPS_MISSION_REV + value: 0 + GPS_READ_SENSOR_MID_MAX_MSG_COUNT: + name: GPS_READ_SENSOR_MID_MAX_MSG_COUNT + value: 1 + GPS_SB_TIMEOUT: + name: GPS_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + GPS_SCH_PIPE_DEPTH: + name: GPS_SCH_PIPE_DEPTH + value: 2 + GPS_SCH_PIPE_NAME: + name: GPS_SCH_PIPE_NAME + value: GPS_SCH_PIPE + GPS_SCH_PIPE_PEND_TIME: + name: GPS_SCH_PIPE_PEND_TIME + value: 2000 + GPS_SEND_HK_MID_MAX_MSG_COUNT: + name: GPS_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + GPS_STARTUP_TIMEOUT_MSEC: + name: GPS_STARTUP_TIMEOUT_MSEC + value: 1000 + GPS_WAKEUP_MID_MAX_MSG_COUNT: + name: GPS_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/gps/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/GPS.so + events: + GPS_CC_ERR_EID: + id: 9 + GPS_CFGTBL_GETADDR_ERR_EID: + id: 6 + GPS_CFGTBL_LOAD_ERR_EID: + id: 12 + GPS_CFGTBL_MANAGE_ERR_EID: + id: 5 + GPS_CFGTBL_REG_ERR_EID: + id: 11 + GPS_CMD_NOOP_EID: + id: 2 + GPS_INIT_ERR_EI: + id: 14 + GPS_INIT_INF_EID: + id: 1 + GPS_MSGID_ERR_EID: + id: 8 + GPS_MSGLEN_ERR_EID: + id: 10 + GPS_PIPE_INIT_ERR_EID: + id: 4 + GPS_RCVMSG_ERR_EID: + id: 7 + GPS_READ_ERR_EID: + id: 15 + GPS_SUBSCRIBE_ERR_EID: + id: 3 + GPS_UNINIT_ERR_EID: + id: 13 + long_name: GPS Driver + module_type: CFE_APP + perfids: + GPS_MAIN_TASK_PERF_ID: + id: 71 + short_name: gps + telemetry: + GPS_ACK_ACK_MID: + msgID: 2348 + GPS_ACK_NAK_MID: + msgID: 2349 + GPS_CFG_MSG_MID: + msgID: 2350 + GPS_CFG_NAV5_MID: + msgID: 2351 + GPS_CFG_PRT_MID: + msgID: 2352 + GPS_CFG_RATE_MID: + msgID: 2353 + GPS_CFG_SBAS_MID: + msgID: 2354 + GPS_HK_TLM_MID: + msgID: 2361 + struct: GPS_HkTlm_t + GPS_MON_HW_MID: + msgID: 2356 + GPS_NAV_DOP_MID: + msgID: 2357 + GPS_NAV_NAVPVT_MID: + msgID: 2358 + GPS_NAV_SVINFO_MID: + msgID: 2359 + GPS_SEND_HK_MID: + msgID: 2360 + hk: + app_name: HK + commands: + HK_CMD_MID: + commands: + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + msgID: 6255 + HK_SEND_COMBINED_PKT_MID: + commands: + SendCombinedPkt: + cc: 0 + struct: HK_Send_Out_Msg_t + msgID: 6256 + HK_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6257 + config: + HK_COPY_TABLE_ENTRIES: + name: HK_COPY_TABLE_ENTRIES + value: 128 + HK_COPY_TABLE_FILENAM: + name: HK_COPY_TABLE_FILENAM + value: /cf/apps/hk_cpy_tbl.tbl + HK_COPY_TABLE_NAME: + name: HK_COPY_TABLE_NAME + value: CopyTable + HK_DISCARD_INCOMPLETE_COMBO: + name: HK_DISCARD_INCOMPLETE_COMBO + value: 0 + HK_MISSION_REV: + name: HK_MISSION_REV + value: 0 + HK_NUM_BYTES_IN_MEM_POOL: + name: HK_NUM_BYTES_IN_MEM_POOL + value: (6 * 1024) + HK_PIPE_DEPTH: + name: HK_PIPE_DEPTH + value: 40 + HK_RUNTIME_TABLE_NAME: + name: HK_RUNTIME_TABLE_NAME + value: RuntimeTable + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/hk/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/HK.so + events: + HK_ACCESSING_PAST_PACKET_END_EID: + id: 6 + HK_CANT_SUBSCRIBE_TO_SB_PKT_EID: + id: 8 + HK_CC_ERR_EID: + id: 2 + HK_CMD_LEN_ERR_EID: + id: 3 + HK_CPTBL_GADR_ERR_EID: + id: 24 + HK_CPTBL_LD_ERR_EID: + id: 21 + HK_CPTBL_MNG_ERR_EID: + id: 22 + HK_CPTBL_REG_ERR_EID: + id: 19 + HK_CR_PIPE_ERR_EID: + id: 14 + HK_CR_POOL_ERR_EID: + id: 18 + HK_INIT_EI: + id: 1 + HK_MEM_POOL_FREE_FAILED_EID: + id: 9 + HK_MEM_POOL_MALLOC_FAILED_EID: + id: 7 + HK_MSG_LEN_ERR_EID: + id: 28 + HK_NOOP_CMD_EID: + id: 4 + HK_OUTPKT_MISSING_DATA_EID: + id: 12 + HK_RCV_MSG_ERR_EID: + id: 26 + HK_RESET_CNTRS_CMD_EID: + id: 5 + HK_RTTBL_GADR_ERR_EID: + id: 25 + HK_RTTBL_MNG_ERR_EID: + id: 23 + HK_RTTBL_REG_ERR_EID: + id: 20 + HK_SUB_CMB_ERR_EID: + id: 15 + HK_SUB_CMD_ERR_EID: + id: 17 + HK_SUB_REQ_ERR_EID: + id: 16 + HK_UNEXPECTED_GETSTAT2_RET_EID: + id: 27 + HK_UNEXPECTED_GETSTAT_RET_EID: + id: 10 + HK_UNKNOWN_COMBINED_PACKET_EID: + id: 11 + long_name: Housekeeping + module_type: CFE_APP + perfids: + HK_APPMAIN_PERF_ID: + id: 48 + short_name: hk + telemetry: + HK_COMBINED_PKT10_MID: + msgID: 2157 + HK_COMBINED_PKT1_MID: + msgID: 2148 + HK_COMBINED_PKT2_MID: + msgID: 2149 + HK_COMBINED_PKT3_MID: + msgID: 2150 + HK_COMBINED_PKT4_MID: + msgID: 2151 + HK_COMBINED_PKT5_MID: + msgID: 2152 + HK_COMBINED_PKT6_MID: + msgID: 2153 + HK_COMBINED_PKT7_MID: + msgID: 2154 + HK_COMBINED_PKT8_MID: + msgID: 2155 + HK_COMBINED_PKT9_MID: + msgID: 2156 + HK_HK_TLM_MID: + msgID: 2158 + struct: HK_HkPacket_t + hmc5883: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/HMC5883.so + hs: + app_name: HS + commands: + HS_CMD_MID: + commands: + DisableAliveness: + cc: 7 + struct: CFE_SB_CmdHdr_t + DisableAppMon: + cc: 3 + struct: CFE_SB_CmdHdr_t + DisableCpuHog: + cc: 11 + struct: CFE_SB_CmdHdr_t + DisableEventMon: + cc: 5 + struct: CFE_SB_CmdHdr_t + EnableAliveness: + cc: 6 + struct: CFE_SB_CmdHdr_t + EnableAppMon: + cc: 2 + struct: CFE_SB_CmdHdr_t + EnableCpuHog: + cc: 10 + struct: CFE_SB_CmdHdr_t + EnableEventMon: + cc: 4 + struct: CFE_SB_CmdHdr_t + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + ReportDiag: + cc: 12 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + ResetResetsPerformed: + cc: 8 + struct: CFE_SB_CmdHdr_t + SetMaxResets: + cc: 9 + struct: HS_SetMaxResetsCmd_t + SetUtilDiag: + cc: 14 + struct: HS_SetUtilDiagCmd_t + SetUtilParams: + cc: 13 + struct: HS_SetUtilParamsCmd_t + msgID: 6265 + HS_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6266 + HS_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6267 + config: + HS_ALIVENESS_DEFAULT_STATE: + name: HS_ALIVENESS_DEFAULT_STATE + value: HS_STATE_ENABLED + HS_AMT_FILENAME: + name: HS_AMT_FILENAME + value: /cf/apps/hs_amt.tbl + HS_APPMON_DEFAULT_STAT: + name: HS_APPMON_DEFAULT_STAT + value: HS_STATE_ENABLED + HS_APP_NAME: + name: HS_APP_NAME + value: HS + HS_CMD_PIPE_DEPTH: + name: HS_CMD_PIPE_DEPTH + value: 12 + HS_CPUHOG_DEFAULT_STATE: + name: HS_CPUHOG_DEFAULT_STATE + value: HS_STATE_ENABLED + HS_CPU_ALIVE_PERIOD: + name: HS_CPU_ALIVE_PERIOD + value: 5 + HS_CPU_ALIVE_STRING: + name: HS_CPU_ALIVE_STRING + value: . + HS_EMT_FILENAME: + name: HS_EMT_FILENAME + value: /cf/apps/hs_emt.tbl + HS_EVENTMON_DEFAULT_STATE: + name: HS_EVENTMON_DEFAULT_STATE + value: HS_STATE_ENABLED + HS_EVENT_PIPE_DEPTH: + name: HS_EVENT_PIPE_DEPTH + value: 32 + HS_IDLE_TASK_FLAGS: + name: HS_IDLE_TASK_FLAGS + value: 0 + HS_IDLE_TASK_NAME: + name: HS_IDLE_TASK_NAME + value: HS_IDLE_TASK + HS_IDLE_TASK_PRIORITY: + name: HS_IDLE_TASK_PRIORITY + value: 252 + HS_IDLE_TASK_STACK_PTR: + name: HS_IDLE_TASK_STACK_PTR + value: 0 + HS_IDLE_TASK_STACK_SIZE: + name: HS_IDLE_TASK_STACK_SIZE + value: 4096 + HS_MAT_FILENAME: + name: HS_MAT_FILENAME + value: /cf/apps/hs_mat.tbl + HS_MAX_EXEC_CNT_SLOTS: + name: HS_MAX_EXEC_CNT_SLOTS + value: 32 + HS_MAX_MONITORED_APPS: + name: HS_MAX_MONITORED_APPS + value: 32 + HS_MAX_MONITORED_EVENTS: + name: HS_MAX_MONITORED_EVENTS + value: 16 + HS_MAX_MSG_ACT_SIZE: + name: HS_MAX_MSG_ACT_SIZE + value: 16 + HS_MAX_MSG_ACT_TYPES: + name: HS_MAX_MSG_ACT_TYPES + value: 8 + HS_MAX_RESTART_ACTIONS: + name: HS_MAX_RESTART_ACTIONS + value: 3 + HS_MISSION_REV: + name: HS_MISSION_REV + value: 0 + HS_POST_PROCESSING_DELAY: + name: HS_POST_PROCESSING_DELAY + value: 0 + HS_RESET_TASK_DELAY: + name: HS_RESET_TASK_DELAY + value: 50 + HS_STARTUP_SYNC_TIMEOUT: + name: HS_STARTUP_SYNC_TIMEOUT + value: 65000 + HS_UTIL_AVERAGE_NUM_INTERVAL: + name: HS_UTIL_AVERAGE_NUM_INTERVAL + value: 4 + HS_UTIL_CALLS_PER_MARK: + name: HS_UTIL_CALLS_PER_MARK + value: 1 + HS_UTIL_CONV_DIV: + name: HS_UTIL_CONV_DIV + value: 10000 + HS_UTIL_CONV_MULT1: + name: HS_UTIL_CONV_MULT1 + value: 1 + HS_UTIL_CONV_MULT2: + name: HS_UTIL_CONV_MULT2 + value: 1 + HS_UTIL_CYCLES_PER_INTERVAL: + name: HS_UTIL_CYCLES_PER_INTERVAL + value: 1 + HS_UTIL_DIAG_MASK: + name: HS_UTIL_DIAG_MASK + value: 4294967295 + HS_UTIL_HOGGING_TIMEOUT: + name: HS_UTIL_HOGGING_TIMEOUT + value: 5 + HS_UTIL_PEAK_NUM_INTERVAL: + name: HS_UTIL_PEAK_NUM_INTERVAL + value: 64 + HS_UTIL_PER_INTERVAL_HOGGIN: + name: HS_UTIL_PER_INTERVAL_HOGGIN + value: 9900 + HS_UTIL_PER_INTERVAL_TOTAL: + name: HS_UTIL_PER_INTERVAL_TOTAL + value: 10000 + HS_UTIL_TIME_DIAG_ARRAY_LENGTH: + name: HS_UTIL_TIME_DIAG_ARRAY_LENGTH + value: (1<<(HS_UTIL_TIME_DIAG_ARRAY_POWER)) + HS_UTIL_TIME_DIAG_ARRAY_MASK: + name: HS_UTIL_TIME_DIAG_ARRAY_MASK + value: (HS_UTIL_TIME_DIAG_ARRAY_LENGTH - 1) + HS_UTIL_TIME_DIAG_ARRAY_POWER: + name: HS_UTIL_TIME_DIAG_ARRAY_POWER + value: 4 + HS_WAKEUP_PIPE_DEPTH: + name: HS_WAKEUP_PIPE_DEPTH + value: 1 + HS_WAKEUP_TIMEOUT: + name: HS_WAKEUP_TIMEOUT + value: 1200 + HS_WATCHDOG_TIMEOUT_VALUE: + name: HS_WATCHDOG_TIMEOUT_VALUE + value: 10000 + HS_XCT_FILENAME: + name: HS_XCT_FILENAME + value: /cf/apps/hs_xct.tbl + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/hs/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/HS.so + events: + HS_AMTVAL_ERR_EID: + id: 51 + HS_AMTVAL_INF_EID: + id: 50 + HS_AMT_LD_ERR_EID: + id: 14 + HS_AMT_REG_ERR_EID: + id: 10 + HS_APPMON_APPNAME_ERR_EID: + id: 38 + HS_APPMON_FAIL_ERR_EID: + id: 41 + HS_APPMON_GETADDR_ERR_EID: + id: 33 + HS_APPMON_MSGACTS_ERR_EID: + id: 43 + HS_APPMON_NOT_RESTARTED_ERR_EID: + id: 40 + HS_APPMON_PROC_ERR_EID: + id: 42 + HS_APPMON_RESTART_ERR_EID: + id: 39 + HS_APP_EXIT_EID: + id: 2 + HS_BADEMT_UNSUB_EID: + id: 68 + HS_CC_ERR_EID: + id: 19 + HS_CDS_CORRUPT_ERR_EID: + id: 18 + HS_CDS_RESTORE_ERR_EID: + id: 3 + HS_CPUMON_HOGGING_ERR_EID: + id: 61 + HS_CR_CMD_PIPE_ERR_EID: + id: 4 + HS_CR_EVENT_PIPE_ERR_EID: + id: 5 + HS_CR_WAKEUP_PIPE_ERR_EID: + id: 6 + HS_DISABLE_ALIVENESS_DBG_EID: + id: 30 + HS_DISABLE_APPMON_DBG_EID: + id: 26 + HS_DISABLE_APPMON_ERR_EID: + id: 58 + HS_DISABLE_CPUHOG_DBG_EID: + id: 65 + HS_DISABLE_EVENTMON_DBG_EID: + id: 28 + HS_DISABLE_EVENTMON_ERR_EID: + id: 59 + HS_EMTVAL_ERR_EID: + id: 53 + HS_EMTVAL_INF_EID: + id: 52 + HS_EMT_LD_ERR_EID: + id: 15 + HS_EMT_REG_ERR_EID: + id: 11 + HS_ENABLE_ALIVENESS_DBG_EID: + id: 29 + HS_ENABLE_APPMON_DBG_EID: + id: 25 + HS_ENABLE_CPUHOG_DBG_EID: + id: 64 + HS_ENABLE_EVENTMON_DBG_EID: + id: 27 + HS_EVENTMON_DELETE_ERR_EID: + id: 48 + HS_EVENTMON_GETADDR_ERR_EID: + id: 34 + HS_EVENTMON_MSGACTS_ERR_EID: + id: 44 + HS_EVENTMON_NOT_DELETED_ERR_EID: + id: 49 + HS_EVENTMON_NOT_RESTARTED_ERR_EID: + id: 47 + HS_EVENTMON_PROC_ERR_EID: + id: 45 + HS_EVENTMON_RESTART_ERR_EID: + id: 46 + HS_EVENTMON_SUB_EID: + id: 66 + HS_EVENTMON_UNSUB_EID: + id: 67 + HS_EXECOUNT_GETADDR_ERR_EID: + id: 35 + HS_HKREQ_LEN_ERR_EID: + id: 21 + HS_INIT_EID: + id: 1 + HS_LEN_ERR_EID: + id: 22 + HS_MATVAL_ERR_EID: + id: 57 + HS_MATVAL_INF_EID: + id: 56 + HS_MAT_LD_ERR_EID: + id: 17 + HS_MAT_REG_ERR_EID: + id: 13 + HS_MID_ERR_EID: + id: 20 + HS_MSGACTS_GETADDR_ERR_EID: + id: 36 + HS_NOOP_INF_EID: + id: 23 + HS_RESET_DBG_EID: + id: 24 + HS_RESET_LIMIT_ERR_EID: + id: 37 + HS_RESET_RESETS_DBG_EID: + id: 31 + HS_SET_MAX_RESETS_DBG_EID: + id: 32 + HS_SUB_CMD_ERR_EID: + id: 9 + HS_SUB_EVS_ERR_EID: + id: 7 + HS_SUB_REQ_ERR_EID: + id: 8 + HS_SUB_WAKEUP_ERR_EID: + id: 60 + HS_XCTVAL_ERR_EID: + id: 55 + HS_XCTVAL_INF_EID: + id: 54 + HS_XCT_LD_ERR_EID: + id: 16 + HS_XCT_REG_ERR_EID: + id: 12 + long_name: Heath Services + module_type: CFE_APP + msg_def_overrides: + - enumerations: + DISABLED: 0 + ENABLED: 1 + member: CurrentAppMonState + parent: HS_HkPacket_t + type: enumeration + - enumerations: + DISABLED: 0 + ENABLED: 1 + member: CurrentEventMonState + parent: HS_HkPacket_t + type: enumeration + - enumerations: + DISABLED: 0 + ENABLED: 1 + member: CurrentAlivenessState + parent: HS_HkPacket_t + type: enumeration + - enumerations: + DISABLED: 0 + ENABLED: 1 + member: CurrentCPUHogState + parent: HS_HkPacket_t + type: enumeration + perfids: + HS_APPMAIN_PERF_ID: + id: 49 + HS_IDLETASK_PERF_ID: + id: 50 + short_name: hs + telemetry: + HS_HK_TLM_MID: + msgID: 2168 + struct: HS_HkPacket_t + io_lib: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/airliner + ipc_lib: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/IPC_LIB.so + lc: + app_name: LC + commands: + LC_CMD_MID: + commands: + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + ResetAPStats: + cc: 5 + struct: LC_ResetAPStats_t + ResetWPStats: + cc: 6 + struct: LC_ResetWPStats_t + SetAPPermOff: + cc: 4 + struct: LC_SetAPPermOff_t + SetAPState: + cc: 3 + struct: LC_SetAPState_t + SetLCState: + cc: 2 + struct: LC_SetLCState_t + msgID: 6275 + LC_SAMPLE_AP_MID: + commands: + SampleAP: + cc: 0 + struct: LC_SampleAP_t + msgID: 6276 + LC_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6277 + config: + LC_ADT_FILENAME: + name: LC_ADT_FILENAME + value: /cf/apps/lc_def_adt.tbl + LC_APP_NAME: + name: LC_APP_NAME + value: LC + LC_FLOAT_TOLERANCE: + name: LC_FLOAT_TOLERANCE + value: -1e-25 + LC_MAX_ACTIONPOINTS: + name: LC_MAX_ACTIONPOINTS + value: 176 + LC_MAX_ACTION_TEXT: + name: LC_MAX_ACTION_TEXT + value: 32 + LC_MAX_RPN_EQU_SIZE: + name: LC_MAX_RPN_EQU_SIZE + value: 20 + LC_MAX_VALID_ADT_RTSID: + name: LC_MAX_VALID_ADT_RTSID + value: 65520 + LC_MAX_WATCHPOINTS: + name: LC_MAX_WATCHPOINTS + value: 176 + LC_MISSION_REV: + name: LC_MISSION_REV + value: 0 + LC_PIPE_DEPTH: + name: LC_PIPE_DEPTH + value: 12 + LC_RTS_REQ_CC: + name: LC_RTS_REQ_CC + value: 4 + LC_RTS_REQ_MI: + name: LC_RTS_REQ_MI + value: 6313 + LC_STATE_POWER_ON_RESET: + name: LC_STATE_POWER_ON_RESET + value: LC_STATE_DISABLED + LC_STATE_WHEN_CDS_RESTORED: + name: LC_STATE_WHEN_CDS_RESTORED + value: LC_STATE_FROM_CDS + LC_WDT_FILENAME: + name: LC_WDT_FILENAME + value: /cf/apps/lc_def_wdt.tbl + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/lc/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/LC.so + events: + LC_ACTION_ERROR_ERR_EID: + id: 62 + LC_ADTVAL_ERR_EID: + id: 65 + LC_ADTVAL_INF_EID: + id: 66 + LC_ADTVAL_RPNERR_EID: + id: 64 + LC_ADT_GETADDR_ERR_EID: + id: 20 + LC_ADT_LOAD_ERR_EID: + id: 16 + LC_ADT_REGISTER_ERR_EID: + id: 9 + LC_APOFF_APNUM_ERR_EID: + id: 34 + LC_APOFF_CURR_ERR_EID: + id: 35 + LC_APOFF_INF_EID: + id: 36 + LC_APP_CDS_REGISTER_ERR_EID: + id: 14 + LC_APP_NO_SAVE_START_ERR_EID: + id: 48 + LC_APSAMPLE_APNUM_ERR_EID: + id: 25 + LC_APSAMPLE_CURR_ERR_EID: + id: 57 + LC_APSAMPLE_LEN_ERR_EID: + id: 42 + LC_APSTATE_APNUM_ERR_EID: + id: 32 + LC_APSTATE_CURR_ERR_EID: + id: 31 + LC_APSTATE_INF_EID: + id: 33 + LC_APSTATE_NEW_ERR_EID: + id: 30 + LC_APSTATS_APNUM_ERR_EID: + id: 37 + LC_APSTATS_INF_EID: + id: 38 + LC_AP_FAILTOPASS_INF_EID: + id: 61 + LC_AP_PASSIVE_FAIL_INF_EID: + id: 60 + LC_AP_PASSTOFAIL_INF_EID: + id: 58 + LC_ART_CDS_REGISTER_ERR_EID: + id: 13 + LC_ART_GETADDR_ERR_EID: + id: 18 + LC_ART_NO_SAVE_ERR_EID: + id: 47 + LC_ART_REGISTER_ERR_EID: + id: 11 + LC_CC_ERR_EID: + id: 24 + LC_CDS_DISABLED_INF_EID: + id: 23 + LC_CDS_RESTORED_INF_EID: + id: 21 + LC_CDS_UPDATED_INF_EID: + id: 22 + LC_CFCALL_ERR_EID: + id: 67 + LC_CR_PIPE_ERR_EID: + id: 3 + LC_HKREQ_LEN_ERR_EID: + id: 41 + LC_INIT_INF_EID: + id: 2 + LC_INVALID_RPN_ERR_EID: + id: 63 + LC_LCSTATE_ERR_EID: + id: 29 + LC_LCSTATE_INF_EID: + id: 28 + LC_LEN_ERR_EID: + id: 43 + LC_MID_INF_EID: + id: 49 + LC_NOOP_INF_EID: + id: 26 + LC_PASSIVE_FAIL_DBG_EID: + id: 59 + LC_RESET_DBG_EID: + id: 27 + LC_SUB_GND_CMD_ERR_EID: + id: 5 + LC_SUB_HK_REQ_ERR_EID: + id: 4 + LC_SUB_SAMPLE_CMD_ERR_EID: + id: 6 + LC_SUB_WP_ERR_EID: + id: 45 + LC_TASK_EXIT_EID: + id: 1 + LC_UNSUB_WP_ERR_EID: + id: 44 + LC_WDTVAL_ERR_EID: + id: 55 + LC_WDTVAL_FPERR_EID: + id: 54 + LC_WDTVAL_INF_EID: + id: 56 + LC_WDT_GETADDR_ERR_EID: + id: 19 + LC_WDT_LOAD_ERR_EID: + id: 15 + LC_WDT_REGISTER_ERR_EID: + id: 7 + LC_WDT_REREGISTER_ERR_EID: + id: 8 + LC_WPSTATS_INF_EID: + id: 40 + LC_WPSTATS_WPNUM_ERR_EID: + id: 39 + LC_WP_DATATYPE_ERR_EID: + id: 50 + LC_WP_NAN_ERR_EID: + id: 52 + LC_WP_OFFSET_ERR_EID: + id: 53 + LC_WP_OPERID_ERR_EID: + id: 51 + LC_WRT_CDS_REGISTER_ERR_EID: + id: 12 + LC_WRT_GETADDR_ERR_EID: + id: 17 + LC_WRT_NO_SAVE_ERR_EID: + id: 46 + LC_WRT_REGISTER_ERR_EID: + id: 10 + long_name: Limits Checker + module_type: CFE_APP + msg_def_overrides: + - enumerations: + ACTIVE: 1 + DISABLED: 3 + FROM_CDS: 4 + PASSIVE: 2 + member: NewLCState + parent: LC_SetLCState_t + type: enumeration + - enumerations: + ACTIVE: 1 + DISABLED: 3 + PASSIVE: 2 + PERMOFF: 4 + member: NewAPState + parent: LC_SetAPState_t + type: enumeration + - enumerations: + ACTIVE: 1 + DISABLED: 3 + FROM_CDS: 4 + PASSIVE: 2 + member: CurrentLCState + parent: LC_HkPacket_t + type: enumeration + perfids: + LC_APPMAIN_PERF_ID: + id: 51 + LC_WDT_SEARCH_PERF_ID: + id: 52 + short_name: lc + telemetry: + LC_HK_TLM_MID: + msgID: 2178 + struct: LC_HkPacket_t + mbp_lib: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/MBP_LIB.so + md: + app_name: MD + commands: + MD_CMD_MID: + commands: + Jam: + cc: 4 + struct: MD_CmdJam_t + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + SetSignature: + cc: 5 + struct: MD_CmdSetSignature_t + Start: + cc: 2 + struct: MD_CmdStartStop_t + Stop: + cc: 3 + struct: MD_CmdStartStop_t + msgID: 6284 + MD_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6285 + MD_WAKEUP_MID: + commands: + WakeUp: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6286 + config: + MD_DWELL_TABLE_SIZE: + name: MD_DWELL_TABLE_SIZE + value: 25 + MD_ENFORCE_DWORD_ALIGN: + name: MD_ENFORCE_DWORD_ALIGN + value: 1 + MD_MISSION_REV: + name: MD_MISSION_REV + value: 0 + MD_NUM_DWELL_TABLES: + name: MD_NUM_DWELL_TABLES + value: 4 + MD_PIPE_DEPTH: + name: MD_PIPE_DEPTH + value: 50 + MD_PIPE_NAME: + name: MD_PIPE_NAME + value: MD_CMD_PIPE + MD_SIGNATURE_FIELD_LENGTH: + name: MD_SIGNATURE_FIELD_LENGTH + value: 32 + MD_SIGNATURE_OPTION: + name: MD_SIGNATURE_OPTION + value: 1 + MD_TBL_FILENAME_FORMAT: + name: MD_TBL_FILENAME_FORMAT + value: /cf/apps/md_dw\%02d.tbl + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/md/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/MD.so + events: + MD_CANT_RESOLVE_JAM_ADDR_ERR_EID: + id: 35 + MD_CC_NOT_IN_LOOP_ERR_EID: + id: 17 + MD_CC_NOT_IN_TBL_ERR_EID: + id: 16 + MD_CMD_LEN_ERR_EID: + id: 21 + MD_DWELL_TBL_INF_EID: + id: 52 + MD_DWELL_TBL_TOO_LARGE_CRIT_EID: + id: 5 + MD_EMPTY_TBLMASK_ERR_EID: + id: 14 + MD_INIT_INF_EID: + id: 1 + MD_INVALID_ENTRY_ARG_ERR_EID: + id: 33 + MD_INVALID_JAM_ADDR_ERR_EID: + id: 36 + MD_INVALID_JAM_TABLE_ERR_EID: + id: 32 + MD_INVALID_LEN_ARG_ERR_EID: + id: 34 + MD_INVALID_SIGNATURE_LENGTH_ERR_EID: + id: 49 + MD_INVALID_SIGNATURE_TABLE_ERR_EID: + id: 47 + MD_JAM_ADDR_NOT_16BIT_ERR_EID: + id: 38 + MD_JAM_ADDR_NOT_32BIT_ERR_EID: + id: 37 + MD_JAM_DWELL_INF_EID: + id: 30 + MD_JAM_NULL_DWELL_INF_EID: + id: 31 + MD_MID_ERR_EID: + id: 15 + MD_MSG_LEN_ERR_EID: + id: 22 + MD_NOOP_INF_EID: + id: 10 + MD_NO_TBL_COPY_ERR_EID: + id: 39 + MD_PIPE_ERR_EID: + id: 2 + MD_RANGE_ERR_EID: + id: 42 + MD_RECOVERED_TBL_NOT_VALID_ERR_EID: + id: 4 + MD_RECOVERED_TBL_VALID_INF_EID: + id: 3 + MD_RESET_CNTRS_DBG_EID: + id: 11 + MD_RESOLVE_ERR_EID: + id: 41 + MD_SET_SIGNATURE_INF_EID: + id: 46 + MD_START_DWELL_INF_EID: + id: 12 + MD_STOP_DWELL_INF_EID: + id: 13 + MD_TBL_ALIGN_ERR_EID: + id: 45 + MD_TBL_ENA_FLAG_EID: + id: 44 + MD_TBL_HAS_LEN_ERR_EID: + id: 43 + MD_TBL_INIT_INF_EI: + id: 7 + MD_TBL_REGISTER_CRIT_EID: + id: 6 + MD_TBL_SIG_LEN_ERR_EID: + id: 50 + MD_TBL_STATUS_ERR_EID 20: + id: 20 + MD_ZERO_RATE_CMD_INF_EID: + id: 51 + MD_ZERO_RATE_TBL_INF_EID: + id: 40 + long_name: Memory Dwell + module_type: CFE_APP + msg_def_overrides: + - member: Signature + parent: MD_CmdSetSignature_t + type: string + perfids: + MD_APPMAIN_PERF_ID: + id: 53 + short_name: md + telemetry: + MD_DWELL_PKT1_MID: + msgID: 2182 + MD_DWELL_PKT2_MID: + msgID: 2183 + MD_DWELL_PKT3_MID: + msgID: 2184 + MD_DWELL_PKT4_MID: + msgID: 2185 + MD_DWELL_PKT_MID_BASE: + msgID: 2182 + struct: MD_DwellPkt_t + MD_HK_TLM_MID: + msgID: 2187 + struct: MD_HkTlm_t + mm: + app_name: MM + commands: + MM_CMD_MID: + commands: + DisableEEPROMWrite: + cc: 12 + struct: MM_EepromWriteDisCmd_t + DumpInEvent: + cc: 7 + struct: MM_DumpInEventCmd_t + DumpMemToFile: + cc: 6 + struct: MM_DumpMemToFileCmd_t + EnableEEPROMWrite: + cc: 11 + struct: MM_EepromWriteEnaCmd_t + FillMem: + cc: 8 + struct: MM_FillMemCmd_t + LoadMemFromFile: + cc: 5 + struct: MM_LoadMemFromFileCmd_t + LoadMemWID: + cc: 4 + struct: MM_LoadMemWIDCmd_t + LookupSymbol: + cc: 9 + struct: MM_LookupSymCmd_t + Noop: + cc: 0 + struct: CFE_SB_CmdHdr_t + Peek: + cc: 2 + struct: MM_PeekCmd_t + Poke: + cc: 3 + struct: MM_PokeCmd_t + Reset: + cc: 1 + struct: CFE_SB_CmdHdr_t + SymTblToFile: + cc: 10 + struct: MM_SymTblToFileCmd_t + msgID: 6288 + MM_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6289 + config: + MM_CFE_HDR_DESCRIPTION: + name: MM_CFE_HDR_DESCRIPTION + value: Memory Manager dump file + MM_CFE_HDR_SUBTYPE: + name: MM_CFE_HDR_SUBTYPE + value: 1296913236 + MM_DUMP_FILE_CRC_TYPE: + name: MM_DUMP_FILE_CRC_TYPE + value: CFE_ES_DEFAULT_CRC + MM_LOAD_FILE_CRC_TYPE: + name: MM_LOAD_FILE_CRC_TYPE + value: CFE_ES_DEFAULT_CRC + MM_LOAD_WID_CRC_TYPE: + name: MM_LOAD_WID_CRC_TYPE + value: CFE_ES_DEFAULT_CRC + MM_MAX_DUMP_DATA_SEG: + name: MM_MAX_DUMP_DATA_SEG + value: 200 + MM_MAX_DUMP_FILE_DATA_EEPROM: + name: MM_MAX_DUMP_FILE_DATA_EEPROM + value: (128*1024) + MM_MAX_DUMP_FILE_DATA_MEM16: + name: MM_MAX_DUMP_FILE_DATA_MEM16 + value: (1024*1024) + MM_MAX_DUMP_FILE_DATA_MEM32: + name: MM_MAX_DUMP_FILE_DATA_MEM32 + value: (1024*1024) + MM_MAX_DUMP_FILE_DATA_MEM8: + name: MM_MAX_DUMP_FILE_DATA_MEM8 + value: (1024*1024) + MM_MAX_DUMP_FILE_DATA_RAM: + name: MM_MAX_DUMP_FILE_DATA_RAM + value: (1024*1024) + MM_MAX_DUMP_FILE_DATA_SYMTBL: + name: MM_MAX_DUMP_FILE_DATA_SYMTBL + value: (128*1024) + MM_MAX_FILL_DATA_EEPROM: + name: MM_MAX_FILL_DATA_EEPROM + value: (128*1024) + MM_MAX_FILL_DATA_MEM16: + name: MM_MAX_FILL_DATA_MEM16 + value: (1024*1024) + MM_MAX_FILL_DATA_MEM32: + name: MM_MAX_FILL_DATA_MEM32 + value: (1024*1024) + MM_MAX_FILL_DATA_MEM8: + name: MM_MAX_FILL_DATA_MEM8 + value: (1024*1024) + MM_MAX_FILL_DATA_RAM: + name: MM_MAX_FILL_DATA_RAM + value: (1024*1024) + MM_MAX_FILL_DATA_SEG: + name: MM_MAX_FILL_DATA_SEG + value: 200 + MM_MAX_LOAD_DATA_SEG: + name: MM_MAX_LOAD_DATA_SEG + value: 200 + MM_MAX_LOAD_FILE_DATA_EEPROM: + name: MM_MAX_LOAD_FILE_DATA_EEPROM + value: (128*1024) + MM_MAX_LOAD_FILE_DATA_MEM16: + name: MM_MAX_LOAD_FILE_DATA_MEM16 + value: (1024*1024) + MM_MAX_LOAD_FILE_DATA_MEM32: + name: MM_MAX_LOAD_FILE_DATA_MEM32 + value: (1024*1024) + MM_MAX_LOAD_FILE_DATA_MEM8: + name: MM_MAX_LOAD_FILE_DATA_MEM8 + value: (1024*1024) + MM_MAX_LOAD_FILE_DATA_RAM: + name: MM_MAX_LOAD_FILE_DATA_RAM + value: (1024*1024) + MM_MAX_UNINTERRUPTABLE_DATA: + name: MM_MAX_UNINTERRUPTABLE_DATA + value: 200 + MM_MISSION_REV: + name: MM_MISSION_REV + value: 0 + MM_OPT_CODE_MEM16_MEMTYPE: + name: MM_OPT_CODE_MEM16_MEMTYPE + value: true + MM_OPT_CODE_MEM32_MEMTYPE: + name: MM_OPT_CODE_MEM32_MEMTYPE + value: true + MM_OPT_CODE_MEM8_MEMTYPE: + name: MM_OPT_CODE_MEM8_MEMTYPE + value: true + MM_PROCESSOR_CYCL: + name: MM_PROCESSOR_CYCL + value: 0 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/mm/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/MM.so + events: + MM_ALIGN16_ERR_EID: + id: 24 + MM_ALIGN32_ERR_EID: + id: 23 + MM_CC1_ERR_EID: + id: 17 + MM_CFE_FS_READHDR_ERR_EID: + id: 42 + MM_CFE_FS_WRITEHDR_ERR_EID: + id: 43 + MM_CFS_COMPUTECRCFROMFILE_ERR_EID: + id: 38 + MM_CMD_FNAME_ERR_EI: + id: 39 + MM_DATA_SIZE_BITS_ERR_EID: + id: 22 + MM_DATA_SIZE_BYTES_ERR_EID: + id: 21 + MM_DMP_MEM_FILE_INF_EID: + id: 13 + MM_DUMP_INEVENT_INF_EID: + id: 14 + MM_EEPROM_WRITE_DIS_ERR_EID: + id: 54 + MM_EEPROM_WRITE_DIS_INF_EID: + id: 53 + MM_EEPROM_WRITE_ENA_ERR_EID: + id: 52 + MM_EEPROM_WRITE_ENA_INF_EID: + id: 51 + MM_FILE_LOAD_PARAMS_ERR_EI: + id: 41 + MM_FILL_INF_EID: + id: 6 + MM_HKREQ_LEN_ERR_EID: + id: 44 + MM_INIT_INF_EID: + id: 1 + MM_LD_FILE_SIZE_ERR_EID: + id: 40 + MM_LD_MEM_FILE_INF_EID: + id: 5 + MM_LEN_ERR_EID: + id: 18 + MM_LOAD_FILE_CRC_ERR_EID: + id: 26 + MM_LOAD_WID_CRC_ERR_EID: + id: 27 + MM_LOAD_WID_INF_EID: + id: 4 + MM_MEMTYPE_ERR_EID: + id: 19 + MM_MID_ERR_EID: + id: 16 + MM_NOOP_INF_EID: + id: 2 + MM_OS_CLOSE_ERR_EID: + id: 33 + MM_OS_CREAT_ERR_EID: + id: 31 + MM_OS_EEPROMWRITE16_ERR_EID: + id: 29 + MM_OS_EEPROMWRITE32_ERR_EID: + id: 30 + MM_OS_EEPROMWRITE8_ERR_EID: + id: 28 + MM_OS_MEMVALIDATE_ERR_EID: + id: 25 + MM_OS_OPEN_ERR_EID: + id: 32 + MM_OS_READ_ERR_EID: + id: 34 + MM_OS_READ_EXP_ERR_EID: + id: 35 + MM_OS_STAT_ERR_EID: + id: 37 + MM_OS_WRITE_EXP_ERR_EID: + id: 36 + MM_OS_ZERO_READ_ERR_EID: + id: 55 + MM_PEEK_BYTE_INF_EID: + id: 7 + MM_PEEK_DWORD_INF_EID: + id: 9 + MM_PEEK_WORD_INF_EID: + id: 8 + MM_PIPE_ERR_EID: + id: 15 + MM_POKE_BYTE_INF_EID: + id: 10 + MM_POKE_DWORD_INF_EID: + id: 12 + MM_POKE_WORD_INF_EID: + id: 11 + MM_PSP_COPY_ERR_EID: + id: 58 + MM_PSP_READ_ERR_EID: + id: 56 + MM_PSP_SET_ERR_EID: + id: 59 + MM_PSP_WRITE_ERR_EID: + id: 57 + MM_RESET_DBG_EID: + id: 3 + MM_SYMFILENAME_NUL_ERR_EID: + id: 48 + MM_SYMNAME_ERR_EID: + id: 20 + MM_SYMNAME_NUL_ERR_EID: + id: 46 + MM_SYMTBL_TO_FILE_FAIL_ERR_EID: + id: 49 + MM_SYMTBL_TO_FILE_INF_EID: + id: 47 + MM_SYMTBL_TO_FILE_INVALID_ERR_EID: + id: 50 + MM_SYM_LOOKUP_INF_EID: + id: 45 + long_name: Memory Manager + module_type: CFE_APP + msg_def_overrides: + - enumerations: + EEPROM: 2 + MEM16: 4 + MEM32: 5 + MEM8: 3 + NOMEMTYPE: 0 + RAM: 1 + member: MemType + parent: MM_LoadDumpFileHeader_t + type: enumeration + - member: SymName + parent: CFS_SymAddr_t + type: string + - enumerations: + EEPROM: 2 + MEM16: 4 + MEM32: 5 + MEM8: 3 + NOMEMTYPE: 0 + RAM: 1 + member: MemType + parent: MM_PeekCmd_t + type: enumeration + - enumerations: + EEPROM: 2 + MEM16: 4 + MEM32: 5 + MEM8: 3 + NOMEMTYPE: 0 + RAM: 1 + member: MemType + parent: MM_PokeCmd_t + type: enumeration + - enumerations: + EEPROM: 2 + MEM16: 4 + MEM32: 5 + MEM8: 3 + NOMEMTYPE: 0 + RAM: 1 + member: MemType + parent: MM_DumpInEventCmd_t + type: enumeration + - member: FileName + parent: MM_LoadMemFromFileCmd_t + type: string + - enumerations: + EEPROM: 2 + MEM16: 4 + MEM32: 5 + MEM8: 3 + NOMEMTYPE: 0 + RAM: 1 + member: MemType + parent: MM_DumpMemToFileCmd_t + type: enumeration + - member: FileName + parent: MM_DumpMemToFileCmd_t + type: string + - enumerations: + EEPROM: 2 + MEM16: 4 + MEM32: 5 + MEM8: 3 + NOMEMTYPE: 0 + RAM: 1 + member: MemType + parent: MM_FillMemCmd_t + type: enumeration + - member: SymName + parent: MM_LookupSymCmd_t + type: string + - member: FileName + parent: MM_SymTblToFileCmd_t + type: string + - enumerations: + DUMP_INEVENT: 6 + DUMP_TO_FILE: 5 + EEPROMWRITE_DIS: 11 + EEPROMWRITE_ENA: 10 + FILL: 7 + LOAD_FROM_FILE: 3 + LOAD_WID: 4 + NOACTION: 0 + NOOP: 12 + PEEK: 1 + POKE: 2 + RESET: 13 + SYMTBL_SAVE: 9 + SYM_LOOKUP: 8 + member: LastAction + parent: MM_HkPacket_t + type: enumeration + - enumerations: + EEPROM: 2 + MEM16: 4 + MEM32: 5 + MEM8: 3 + NOMEMTYPE: 0 + RAM: 1 + member: MemType + parent: MM_HkPacket_t + type: enumeration + - member: FileName + parent: MM_HkPacket_t + type: string + perfids: + MM_APPMAIN_PERF_ID: + id: 54 + MM_EEPROM_FILELOAD_PERF_ID: + id: 55 + MM_EEPROM_FILL_PERF_ID: + id: 56 + MM_EEPROM_POKE_PERF_ID: + id: 57 + MM_SEGBREAK_PERF_ID: + id: 58 + short_name: mm + telemetry: + MM_HK_TLM_MID: + msgID: 2191 + struct: MM_HkPacket_t + pq_lib: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/PQ_LIB.so + prm: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/PRM.so + prmlib: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/PRMLIB.so + px4lib: + app_name: PX4LIB + commands: null + config: null + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/px4lib/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/PX4LIB.so + long_name: PX4 Library + module_type: CFE_LIB + perfids: null + short_name: px4lib + telemetry: + FLOW_FRAME_MID: + msgID: null + struct: PX4_OpticalFlowFrameMsg_t + PX4_ACTUATOR_ARMED_MID: + msgID: 2210 + struct: PX4_ActuatorArmedMsg_t + PX4_ACTUATOR_CONTROLS_0_MID: + msgID: 2211 + struct: PX4_ActuatorControlsMsg_t + PX4_ACTUATOR_CONTROLS_1_MID: + msgID: 2212 + struct: PX4_ActuatorControlsMsg_t + PX4_ACTUATOR_CONTROLS_2_MID: + msgID: 2213 + struct: PX4_ActuatorControlsMsg_t + PX4_ACTUATOR_CONTROLS_3_MID: + msgID: 2214 + struct: PX4_ActuatorControlsMsg_t + PX4_ACTUATOR_DIRECT_MID: + msgID: 2215 + struct: PX4_ActuatorDirectMsg_t + PX4_ACTUATOR_OUTPUTS_MID: + msgID: 2216 + struct: PX4_ActuatorOutputsMsg_t + PX4_ADC_REPORT_MID: + msgID: 2217 + struct: PX4_ActuatorOutputsMsg_t + PX4_AIRSPEED_MID: + msgID: 2218 + struct: PX4_AirspeedMsg_t + PX4_ATT_POS_MOCAP_MID: + msgID: 2219 + struct: PX4_AttPosMoCapMsg_t + PX4_BATTERY_STATUS_MID: + msgID: 2220 + struct: PX4_BatteryStatusMsg_t + PX4_CAMERA_TRIGGER_MID: + msgID: 2221 + struct: PX4_CameraTriggerMsg_t + PX4_COMMANDER_STATE_MID: + msgID: 2222 + struct: PX4_CommanderStateMsg_t + PX4_CONTROL_STATE_MID: + msgID: 2223 + struct: PX4_ControlStateMsg_t + PX4_CPULOAD_MID: + msgID: 2224 + struct: PX4_CpuLoadMsg_t + PX4_DEBUG_KEY_VALUE_MID: + msgID: 2225 + struct: PX4_DebugKeyValueMsg_t + PX4_DIFFERENTIAL_PRESSURE_MID: + msgID: 2226 + struct: PX4_DifferentialPressureMsg_t + PX4_DISTANCE_SENSOR_MID: + msgID: 2227 + struct: PX4_DistanceSensorMsg_t + PX4_EKF2_INNOVATIONS_MID: + msgID: 2231 + struct: PX4_Ekf2InnovationsMsg_t + PX4_EKF2_REPLAY_MID: + msgID: 2232 + struct: PX4_Ekf2ReplayMsg_t + PX4_ESC_REPORT_MID: + msgID: 2233 + struct: PX4_EscReport_t + PX4_ESC_STATUS_MID: + msgID: 2234 + struct: PX4_EscReportMsg_t + PX4_ESTIMATOR_STATUS_MID: + msgID: 2235 + struct: PX4_EstimatorStatusMsg_t + PX4_FENCE_MID: + msgID: 2236 + struct: PX4_FenceMsg_t + PX4_FENCE_VERTEX_MID: + msgID: 2237 + struct: PX4_FenceVertex_t + PX4_FILTERED_BOTTOM_FLOW_MID: + msgID: 2238 + struct: PX4_FilteredBottomFlowMsg_t + PX4_FOLLOW_TARGET_MID: + msgID: 2239 + struct: PX4_FollowTargetMsg_t + PX4_FW_POS_CTRL_STATUS_MID: + msgID: 2228 + struct: PX4_FwPosCtrlStatusMsg_t + PX4_FW_VIRTUAL_ATTITUDE_SETPOINT_MID: + msgID: 2229 + struct: PX4_FwVirtualAttitudeSetpointMsg_t + PX4_FW_VIRTUAL_RATES_SETPOINT_MID: + msgID: 2230 + struct: PX4_FwVirtualRatesSetpointMsg_t + PX4_GEOFENCE_RESULT_MID: + msgID: 2240 + struct: PX4_GeofenceResultMsg_t + PX4_GPS_DUMP_MID: + msgID: 2241 + struct: PX4_GpsDumpMsg_t + PX4_GPS_INJECT_DATA_MID: + msgID: 2242 + struct: PX4_GpsInjectDataMsg_t + PX4_HIL_SENSOR_MID: + msgID: 2243 + struct: PX4_HilSensorMsg_t + PX4_HOME_POSITION_MID: + msgID: 2244 + struct: PX4_HomePositionMsg_t + PX4_INPUT_RC_MID: + msgID: 2245 + struct: PX4_InputRcMsg_t + PX4_LED_CONTROL_MID: + msgID: 2246 + struct: PX4_LedControlMsg_t + PX4_LOG_MESSAGE_MID: + msgID: 2247 + struct: PX4_LogMessageMsg_t + PX4_MANUAL_CONTROL_SETPOINT_MID: + msgID: 2248 + struct: PX4_ManualControlSetpointMsg_t + PX4_MAVLINK_LOG_MID: + msgID: 2249 + struct: PX4_MavlinkLogMsg_t + PX4_MC_ATT_CTRL_STATUS_MID: + msgID: 2250 + struct: PX4_McAttCtrlStatusMsg_t + PX4_MC_VIRTUAL_ATTITUDE_SETPOINT_MID: + msgID: 2251 + struct: PX4_McVirtualAttitudeSetpointMsg_t + PX4_MC_VIRTUAL_RATES_SETPOINT_MID: + msgID: 2252 + struct: PX4_McVirtualRatesSetpointMsg_t + PX4_MISSION_MID: + msgID: 2253 + struct: PX4_MissionMsg_t + PX4_MISSION_RESULT_MID: + msgID: 2254 + struct: PX4_MissionResultMsg_t + PX4_MULTIROTOR_MOTOR_LIMITS_MID: + msgID: 2255 + PX4_OFFBOARD_CONTROL_MODE_MID: + msgID: 2256 + struct: PX4_OffboardControlModeMsg_t + PX4_OPTICAL_FLOW_MID: + msgID: 2257 + struct: PX4_OpticalFlowMsg_t + PX4_OUTPUT_PWM_MID: + msgID: 2258 + struct: PX4_OutputPwmMsg_t + PX4_PARAMETER_UPDATE_MID: + msgID: 2259 + struct: PX4_ParameterUpdateMsg_t + PX4_POSITION_SETPOINT_MID: + msgID: 2260 + struct: PX4_PositionSetpoint_t + PX4_POSITION_SETPOINT_TRIPLET_MID: + msgID: 2261 + struct: PX4_PositionSetpointTripletMsg_t + PX4_PWM_INPUT_MID: + msgID: 2262 + struct: PX4_PwmInputMsg_t + PX4_QSHELL_REQ_MID: + msgID: 2263 + struct: PX4_QShellReqMsg_t + PX4_RC_CHANNELS_MID: + msgID: 2264 + struct: PX4_RcChannelsMsg_t + PX4_RC_PARAMETER_MAP_MID: + msgID: 2265 + struct: PX4_RcParameterMapMsg_t + PX4_SAFETY_MID: + msgID: 2266 + struct: PX4_SafetyMsg_t + PX4_SATELLITE_INFO_MID: + msgID: 2267 + struct: PX4_SatelliteInfoMsg_t + PX4_SENSOR_ACCEL_MID: + msgID: 2268 + struct: PX4_SensorAccelMsg_t + PX4_SENSOR_BARO_MID: + msgID: 2269 + struct: PX4_SensorBaroMsg_t + PX4_SENSOR_COMBINED_MID: + msgID: 2270 + struct: PX4_SensorCombinedMsg_t + PX4_SENSOR_CORRECTION_MID: + msgID: 2300 + struct: PX4_SensorCorrectionMsg_t + PX4_SENSOR_GYRO_MID: + msgID: 2271 + struct: PX4_SensorGyroMsg_t + PX4_SENSOR_MAG_MID: + msgID: 2272 + struct: PX4_SensorMagMsg_t + PX4_SERVORAIL_STATUS_MID: + msgID: 2273 + struct: PX4_ServorailStatusMsg_t + PX4_SUBSYSTEM_INFO_MID: + msgID: 2274 + struct: PX4_SubsystemInfoMsg_t + PX4_SYSTEM_POWER_MID: + msgID: 2275 + struct: PX4_SystemPowerMsg_t + PX4_TECS_STATUS_MID: + msgID: 2276 + struct: PX4_TecsStatusMsg_t + PX4_TELEMETRY_STATUS_MID: + msgID: 2277 + struct: PX4_TelemetryStatusMsg_t + PX4_TEST_MOTOR_MID: + msgID: 2278 + struct: PX4_TestMotorMsg_t + PX4_TIME_OFFSET_MID: + msgID: 2279 + struct: PX4_TimeOffsetMsg_t + PX4_TRANSPONDER_REPORT_MID: + msgID: 2280 + struct: PX4_TransponderReportMsg_t + PX4_UAVCAN_PARAMETER_REQUEST_MID: + msgID: 2281 + struct: PX4_UavCanParameterRequestMsg_t + PX4_UAVCAN_PARAMETER_VALUE_MID: + msgID: 2282 + struct: PX4_UavCanParameterValueMsg_t + PX4_VEHICLE_ATTITUDE_MID: + msgID: 2283 + struct: PX4_VehicleAttitudeMsg_t + PX4_VEHICLE_ATTITUDE_SETPOINT_MID: + msgID: 2284 + struct: PX4_VehicleAttitudeSetpointMsg_t + PX4_VEHICLE_COMMAND_ACK_MID: + msgID: 2285 + struct: PX4_VehicleCommandAckMsg_t + PX4_VEHICLE_COMMAND_MID: + msgID: 2286 + struct: PX4_VehicleCommandMsg_t + PX4_VEHICLE_CONTROL_MODE_MID: + msgID: 2287 + struct: PX4_VehicleControlModeMsg_t + PX4_VEHICLE_FORCE_SETPOINT_MID: + msgID: 2288 + struct: PX4_VehicleForceSetpointMsg_t + PX4_VEHICLE_GLOBAL_POSITION_MID: + msgID: 2289 + struct: PX4_VehicleGlobalPositionMsg_t + PX4_VEHICLE_GLOBAL_VELOCITY_SETPOINT_MID: + msgID: 2290 + struct: PX4_VehicleGlobalVelocitySetpointMsg_t + PX4_VEHICLE_GPS_POSITION_MID: + msgID: 2291 + struct: PX4_VehicleGpsPositionMsg_t + PX4_VEHICLE_LAND_DETECTED_MID: + msgID: 2292 + struct: PX4_VehicleLandDetectedMsg_t + PX4_VEHICLE_LOCAL_POSITION_MID: + msgID: 2293 + struct: PX4_VehicleLocalPositionMsg_t + PX4_VEHICLE_LOCAL_POSITION_SETPOINT_MID: + msgID: 2294 + struct: PX4_VehicleLocalPositionSetpointMsg_t + PX4_VEHICLE_RATES_SETPOINT_MID: + msgID: 2295 + struct: PX4_VehicleRatesSetpointMsg_t + PX4_VEHICLE_STATUS_MID: + msgID: 2296 + struct: PX4_VehicleStatusMsg_t + PX4_VISION_POSITION_ESTIMATE_MID: + msgID: 2297 + struct: PX4_VisionPositionEstimateMsg_t + PX4_VTOL_VEHICLE_STATUS_MID: + msgID: 2298 + struct: PX4_VtolVehicleStatusMsg_t + PX4_WIND_ESTIMATE_MID: + msgID: 2299 + struct: PX4_WindEstimateMsg_t + sbn: + app_name: SBN + commands: + SBN_CMD_MID: + commands: + Noop: + cc: 0 + struct: SBN_NoArgCmd_t + Reset: + cc: 1 + struct: SBN_NoArgCmd_t + SendHK: + cc: 10 + struct: SBN_NoArgCmd_t + Wakeup: + cc: 100 + struct: SBN_NoArgCmd_t + msgID: 6575 + SBN_WAKEUP_MID: + msgID: 6576 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/sbn/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/SBN.so + events: + PQ_BACKUP_TABLE_ERR_EID: + id: 140 + PQ_BACKUP_TABLE_INF_EID: + id: 137 + PQ_CHANNEL_LOCK_MUTEX_ERR_EID: + id: 132 + PQ_CHANNEL_TEARDOWN_ERR_EID: + id: 131 + PQ_CHANNEL_UNLOCK_MUTEX_ERR_EID: + id: 133 + PQ_CMD_ADD_MSG_FLOW_ERR_EID: + id: 115 + PQ_CMD_REMOVE_MSG_FLOW_ERR_EID: + id: 116 + PQ_CONFIG_ADDR_ERR_EID: + id: 103 + PQ_CONFIG_MANAGE_ERR_EID: + id: 104 + PQ_CONFIG_PROCESS_CONFIG_TBL_ERR_EID: + id: 134 + PQ_CONFIG_TABLE_CCSDS_VER_INVALID_EID: + id: 126 + PQ_CONFIG_TABLE_ERR_EID: + id: 105 + PQ_CONFIG_TABLE_MSG_FLOW_MSG_LIMIT_ERR_EID: + id: 127 + PQ_CONFIG_TABLE_MSG_FLOW_PQ_ID_ERR_EID: + id: 128 + PQ_CONFIG_TABLE_NO_MSG_FLOW_INF_EID: + id: 129 + PQ_CONFIG_TABLE_NO_PQUEUES_ERR_EID: + id: 124 + PQ_CONFIG_TABLE_NULL_PTR_EID: + id: 120 + PQ_CONFIG_TABLE_PQUEUE_MSG_LIMIT_ERR_EID: + id: 123 + PQ_CONFIG_TABLE_PQUEUE_QTYPE_ERR_EID: + id: 122 + PQ_CONFIG_TABLE_PQUEUE_STATE_ERR_EID: + id: 121 + PQ_CONFIG_TABLE_SHDR_ABSENT_EID: + id: 125 + PQ_CR_POOL_ERR_EID: + id: 107 + PQ_INIT_APP_ERR_EID: + id: 101 + PQ_INIT_CONFIG_ERR_EID: + id: 102 + PQ_MF_MSG_ID_ERR_EID: + id: 139 + PQ_MSG_DROP_FROM_FLOW_DBG_EID: + id: 106 + PQ_MSG_FLOW_INFO_EID: + id: 108 + PQ_MSG_FLOW_INFO_ERR_EID: + id: 109 + PQ_MSG_FLOW_MISSING_TBL_ERR_EID: + id: 110 + PQ_NULL_POINTER_ERR_EID: + id: 141 + PQ_OSQUEUE_GET_ERROR_EID: + id: 136 + PQ_OSQUEUE_PUT_ERROR_EID: + id: 135 + PQ_OUT_CH_INFO_EID: + id: 113 + PQ_OUT_CH_INFO_ERR_EID: + id: 114 + PQ_PQUEUE_CREATE_ERR_EID: + id: 118 + PQ_PQUEUE_INFO_EID: + id: 111 + PQ_PQUEUE_INFO_ERR_EID: + id: 112 + PQ_PQUEUE_MISSING_TBL_ERR_EID: + id: 117 + PQ_PQUEUE_TEARDOWN_ERR_EID: + id: 119 + PQ_PUT_POOL_ERR_EID: + id: 130 + PQ_TLM_MSG_LEN_ERR_EID: + id: 138 + SBN_CMD_EID: + id: 7 + SBN_DEBUG_EID: + id: 11 + SBN_FILE_EID: + id: 4 + SBN_INIT_EID: + id: 2 + SBN_MSG_EID: + id: 3 + SBN_PEERTASK_EID: + id: 10 + SBN_PEER_EID: + id: 5 + SBN_PROTO_EID: + id: 6 + SBN_REMAP_EID: + id: 9 + SBN_SB_EID: + id: 1 + SBN_SUB_EID: + id: 8 + long_name: Software Bus Network + module_type: CFE_APP + short_name: sbn + telemetry: + SBN_MODULE_HK_TLM_MID: + msgID: 2484 + struct: PQ_HkTlm_t + SBN_TLM_MID: + msgID: 2478 + sbn_udp: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/sbn_udp.so + sbn_uio_shm: + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/sbn_uio_shm.so + sbnd: + app_name: SBND + commands: + SBND_CMD_MID: + commands: + AddCommand: + cc: 2 + struct: SBND_AddCmd_t + Noop: + cc: 0 + struct: SBND_NoArgCmd_t + RemoveCommand: + cc: 3 + struct: SBND_RemoveCmd_t + Reset: + cc: 1 + struct: SBND_NoArgCmd_t + msgID: 6582 + SBND_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: SBND_NoArgCmd_t + msgID: 6583 + SBND_WAKEUP_MID: + commands: + Measure: + cc: 0 + struct: SBND_NoArgCmd_t + msgID: 6576 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/../private/apps/sbnd/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/SBND.so + events: + SBND_CC_ERR_EID: + id: 9 + SBND_CFGTBL_GETADDR_ERR_EID: + id: 6 + SBND_CFGTBL_LOAD_ERR_EID: + id: 12 + SBND_CFGTBL_MANAGE_ERR_EID: + id: 5 + SBND_CFGTBL_REG_ERR_EID: + id: 11 + SBND_CMD_NOOP_EID: + id: 2 + SBND_DELETE_PIPE_ERR_EID: + id: 19 + SBND_INIT_INF_EID: + id: 1 + SBND_MID_NOT_FOUND_ERR_EID: + id: 17 + SBND_MSGID_ERR_EID: + id: 8 + SBND_MSGLEN_ERR_EID: + id: 10 + SBND_PIPE_INIT_ERR_EID: + id: 4 + SBND_RCVMSG_ERR_EID: + id: 7 + SBND_RECV_CUSTOM_ERR_EID: + id: 14 + SBND_SEND_CUSTOM_ERR_EID: + id: 13 + SBND_SUBSCRIBE_ERR_EID: + id: 3 + SBND_TABLE_FULL_ERR_EID: + id: 16 + SBND_TABLE_MODIFY_ERR_EID: + id: 15 + SBND_UNSUBSCRIBE_ERR_EID: + id: 18 + long_name: Software Bus Network Deterministic + perfids: + SBND_MAIN_TASK_PERF_ID: + id: 115 + short_name: sbnd + telemetry: + SBND_HK_TLM_MID: + msgID: 2485 + struct: SBND_HkTlm_t + sc: + app_name: SC + commands: + SC_1HZ_WAKEUP_MID: + commands: + 1HzWakeUp: + cc: 0 + struct: SC_NoArgsCmd_t + msgID: 6291 + SC_CMD_MID: + commands: + AppendAts: + cc: 11 + struct: SC_AppendAtsCmd_t + ContinueAtsOnFailure: + cc: 10 + struct: SC_SetContinueAtsOnFailureCmd_t + DisableRts: + cc: 6 + struct: SC_RtsCmd_t + DisableRtsGroup: + cc: 15 + struct: SC_RtsGrpCmd_t + EnableRts: + cc: 7 + struct: SC_RtsCmd_t + EnableRtsGroup: + cc: 16 + struct: SC_RtsGrpCmd_t + JumpAts: + cc: 9 + struct: SC_JumpAtsCmd_t + ManageTable: + cc: 12 + struct: SC_NoArgsCmd_t + Noop: + cc: 0 + struct: SC_NoArgsCmd_t + Reset: + cc: 1 + struct: SC_NoArgsCmd_t + StartAts: + cc: 2 + struct: SC_StartAtsCmd_t + StartRts: + cc: 4 + struct: SC_RtsCmd_t + StartRtsGroup: + cc: 13 + struct: SC_RtsGrpCmd_t + StopAts: + cc: 3 + struct: SC_NoArgsCmd_t + StopRts: + cc: 5 + struct: SC_RtsCmd_t + StopRtsGroup: + cc: 14 + struct: SC_RtsGrpCmd_t + SwitchAts: + cc: 8 + struct: SC_NoArgsCmd_t + msgID: 6292 + SC_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: SC_NoArgsCmd_t + msgID: 6293 + config: + SC_APPENDINFO_TABLE_NAME: + name: SC_APPENDINFO_TABLE_NAME + value: APPINF_TBL + SC_APPEND_BUFF_SIZE: + name: SC_APPEND_BUFF_SIZE + value: (SC_ATS_BUFF_SIZE / 2) + SC_APPEND_FILE_NAME: + name: SC_APPEND_FILE_NAME + value: /cf/apps/sc_append.tbl + SC_APPEND_TABLE_NAME: + name: SC_APPEND_TABLE_NAME + value: APPEND_TBL + SC_ATSINFO_TABLE_NAME: + name: SC_ATSINFO_TABLE_NAME + value: ATSINF_TBL + SC_ATS_BUFF_SIZE: + name: SC_ATS_BUFF_SIZE + value: 8000 + SC_ATS_CMD_STAT_TABLE_NAME: + name: SC_ATS_CMD_STAT_TABLE_NAME + value: ATSCMD_TBL + SC_ATS_CTRL_TABLE_NAME: + name: SC_ATS_CTRL_TABLE_NAME + value: ATPCTR_TBL + SC_ATS_FILE_NAME: + name: SC_ATS_FILE_NAME + value: /cf/apps/sc_ats + SC_ATS_TABLE_NAME: + name: SC_ATS_TABLE_NAME + value: ATS_TBL + SC_CONT_ON_FAILURE_START: + name: SC_CONT_ON_FAILURE_START + value: true + SC_ENABLE_GROUP_COMMANDS: + name: SC_ENABLE_GROUP_COMMANDS + value: true + SC_LAST_RTS_WITH_EVENTS: + name: SC_LAST_RTS_WITH_EVENTS + value: 20 + SC_MAX_ATS_CMDS: + name: SC_MAX_ATS_CMDS + value: 1000 + SC_MAX_CMDS_PER_SEC: + name: SC_MAX_CMDS_PER_SEC + value: 8 + SC_MISSION_REV: + name: SC_MISSION_REV + value: 0 + SC_NUMBER_OF_RTS: + name: SC_NUMBER_OF_RTS + value: 64 + SC_PACKET_MAX_SIZE: + name: SC_PACKET_MAX_SIZE + value: 250 + SC_PACKET_MIN_SIZE: + name: SC_PACKET_MIN_SIZE + value: 8 + SC_PIPE_DEPTH: + name: SC_PIPE_DEPTH + value: 12 + SC_RTP_CTRL_TABLE_NAME: + name: SC_RTP_CTRL_TABLE_NAME + value: RTPCTR_TBL + SC_RTSINFO_TABLE_NAME: + name: SC_RTSINFO_TABLE_NAME + value: RTSINF_TBL + SC_RTS_BUFF_SIZE: + name: SC_RTS_BUFF_SIZE + value: 150 + SC_RTS_FILE_NAME: + name: SC_RTS_FILE_NAME + value: /cf/apps/sc_rts + SC_RTS_TABLE_NAME: + name: SC_RTS_TABLE_NAME + value: RTS_TBL + SC_TIME_TO_USE: + name: SC_TIME_TO_USE + value: SC_USE_CFE_TIME + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/sc/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/SC.so + events: + SC_APPEND_CMD_ARG_ERR_EID: + id: 99 + SC_APPEND_CMD_FIT_ERR_EID: + id: 102 + SC_APPEND_CMD_INF_EID: + id: 98 + SC_APPEND_CMD_SRC_ERR_EID: + id: 101 + SC_APPEND_CMD_TGT_ERR_EID: + id: 100 + SC_APP_EXIT_ERR_EID: + id: 1 + SC_ATS_ABT_ERR_EID: + id: 45 + SC_ATS_CHKSUM_ERR_EID: + id: 44 + SC_ATS_COMPL_INF_EID: + id: 87 + SC_ATS_DIST_ERR_EID: + id: 46 + SC_ATS_ERR_SKP_DBG_EID: + id: 30 + SC_ATS_INLINE_SWTCH_INF_EID: + id: 37 + SC_ATS_INLINE_SWTCH_NOT_LDED_ERR_EID: + id: 38 + SC_ATS_MSMTCH_ERR_EID: + id: 47 + SC_ATS_SERVICE_SWITCH_IDLE_ERR_EID: + id: 36 + SC_ATS_SERVICE_SWTCH_INF_EID: + id: 34 + SC_ATS_SKP_ALL_ERR_EID: + id: 29 + SC_ATS_SKP_ERR_EID: + id: 48 + SC_CONT_CMD_DEB_EID: + id: 43 + SC_CONT_CMD_ERR_EID: + id: 42 + SC_DISABLE_RTS_DEB_EID: + id: 80 + SC_DISRTSGRP_CMD_ERR_EID: + id: 120 + SC_DISRTSGRP_CMD_INF_EID: + id: 119 + SC_DISRTS_CMD_ERR_EID: + id: 81 + SC_ENABLE_RTS_DEB_EID: + id: 82 + SC_ENARTSGRP_CMD_ERR_EID: + id: 122 + SC_ENARTSGRP_CMD_INF_EID: + id: 121 + SC_ENARTS_CMD_ERR_EID: + id: 83 + SC_GET_ADDRESS_APPEND_ERR_EID: + id: 92 + SC_GET_ADDRESS_APPEND_INFO_ERR_EID: + id: 91 + SC_GET_ADDRESS_ATS_CMD_STAT_ERR_EID: + id: 69 + SC_GET_ADDRESS_ATS_CTRL_BLCK_ERR_EID: + id: 68 + SC_GET_ADDRESS_ATS_ERR_EID: + id: 71 + SC_GET_ADDRESS_ATS_INFO_ERR_EID: + id: 67 + SC_GET_ADDRESS_RTS_CTRL_BLCK_ERR_EID: + id: 66 + SC_GET_ADDRESS_RTS_ERR_EID: + id: 70 + SC_GET_ADDRESS_RTS_INFO_ERR_EID: + id: 65 + SC_INIT_INF_EID: + id: 9 + SC_INIT_SB_CREATE_ERR_EID: + id: 3 + SC_INIT_SB_SUBSCRIBE_1HZ_ERR_EID: + id: 5 + SC_INIT_SB_SUBSCRIBE_CMD_ERR_EID: + id: 6 + SC_INIT_SB_SUBSCRIBE_HK_ERR_EID: + id: 4 + SC_INVLD_CMD_ERR_EID: + id: 64 + SC_JUMPATS_CMD_NOT_ACT_ERR_EID: + id: 41 + SC_JUMPATS_CMD_STOPPED_ERR_EID: + id: 39 + SC_JUMP_ATS_INF_EID: + id: 40 + SC_JUMP_ATS_SKIPPED_DBG_EID: + id: 88 + SC_LEN_ERR_EID: + id: 2 + SC_MID_ERR_EID: + id: 63 + SC_NOOP_INF_EID: + id: 52 + SC_REGISTER_APPEND_INFO_TABLE_ERR_EID: + id: 90 + SC_REGISTER_APPEND_TBL_ERR_EID: + id: 93 + SC_REGISTER_ATS_CMD_STATUS_TABLE_ERR_EID: + id: 20 + SC_REGISTER_ATS_CTRL_BLK_TABLE_ERR_EI: + id: 19 + SC_REGISTER_ATS_INFO_TABLE_ERR_EID: + id: 18 + SC_REGISTER_ATS_TBL_ERR_EID: + id: 11 + SC_REGISTER_RTS_CTRL_BLK_TABLE_ERR_EID: + id: 17 + SC_REGISTER_RTS_INFO_TABLE_ERR_EID: + id: 16 + SC_REGISTER_RTS_TBL_ERR_EID: + id: 10 + SC_RESET_DEB_EID: + id: 51 + SC_RTS_CHKSUM_ERR_EID: + id: 50 + SC_RTS_CMD_LNGTH_ERR_EID: + id: 85 + SC_RTS_COMPL_INF_EID: + id: 86 + SC_RTS_DIST_ERR_EID: + id: 49 + SC_RTS_INVLD_MID_ERR_EID: + id: 59 + SC_RTS_LEN_BUFFER_ERR_EID: + id: 61 + SC_RTS_LEN_ERR_EID: + id: 60 + SC_RTS_LEN_TOO_LONG_ERR_EID: + id: 62 + SC_RTS_LNGTH_ERR_EID: + id: 84 + SC_RTS_LOAD_COUNT_INFO_EID: + id: 21 + SC_RTS_START_INF_EID: + id: 73 + SC_SERVICE_SWITCH_ATS_CMD_LDED_ERR_EID: + id: 35 + SC_STARTATS_CMD_INF_EID: + id: 23 + SC_STARTATS_CMD_INVLD_ID_ERR_EID: + id: 26 + SC_STARTATS_CMD_NOT_IDLE_ERR_EID: + id: 25 + SC_STARTATS_CMD_NOT_LDED_ERR_EID: + id: 24 + SC_STARTRTSGRP_CMD_ERR_EID: + id: 116 + SC_STARTRTSGRP_CMD_INF_EID: + id: 115 + SC_STARTRTS_CMD_DBG_EID: + id: 72 + SC_STARTRTS_CMD_DISABLED_ERR_EID: + id: 76 + SC_STARTRTS_CMD_INVALID_ERR_EID: + id: 77 + SC_STARTRTS_CMD_INVLD_LEN_ERR_EID: + id: 74 + SC_STARTRTS_CMD_NOT_LDED_ERR_EID: + id: 75 + SC_STOPATS_CMD_INF_EID: + id: 27 + SC_STOPATS_NO_ATS_INF_EID: + id: 28 + SC_STOPRTSGRP_CMD_ERR_EID: + id: 118 + SC_STOPRTSGRP_CMD_INF_EID: + id: 117 + SC_STOPRTS_CMD_ERR_EID: + id: 79 + SC_STOPRTS_CMD_INF_EID: + id: 78 + SC_SWITCH_ATS_CMD_IDLE_ERR_EID: + id: 33 + SC_SWITCH_ATS_CMD_INF_EID: + id: 31 + SC_SWITCH_ATS_CMD_NOT_LDED_ERR_EID: + id: 32 + SC_TABLE_MANAGE_APPEND_ERR_EID: + id: 114 + SC_TABLE_MANAGE_ATS_ERR_EID: + id: 113 + SC_TABLE_MANAGE_ID_ERR_EID: + id: 111 + SC_TABLE_MANAGE_RTS_ERR_EID: + id: 112 + SC_UPDATE_APPEND_EID: + id: 97 + SC_VERIFY_ATS_BUF_ERR_EID: + id: 107 + SC_VERIFY_ATS_DUP_ERR_EID: + id: 109 + SC_VERIFY_ATS_EID: + id: 103 + SC_VERIFY_ATS_END_ERR_EID: + id: 105 + SC_VERIFY_ATS_MPT_ERR_EID: + id: 110 + SC_VERIFY_ATS_NUM_ERR_EID: + id: 104 + SC_VERIFY_ATS_PKT_ERR_EID: + id: 106 + long_name: Stored Command + module_type: CFE_APP + msg_def_overrides: + - enumerations: + ATS_A: 1 + ATS_B: 2 + NO_ATS: 0 + member: AtsNumber + parent: SC_HkTlm_t + type: enumeration + - enumerations: + EMPTY: 0 + EXECUTED: 3 + EXECUTING: 5 + FAILED_CHECKSUM: 6 + FAILED_DISTRIB: 7 + IDLE: 2 + LOADED: 1 + SKIPPED: 4 + STARTING: 8 + member: AtpState + parent: SC_HkTlm_t + type: enumeration + perfids: + SC_APPMAIN_PERF_ID: + id: 59 + short_name: sc + telemetry: + SC_HK_TLM_MID: + msgID: 2194 + struct: SC_HkTlm_t + sch: + app_name: SCH + code_templates: + msgids: + output: sch_msgids.h + template: fsw/platform_inc/sch_msgids.j2 + perfids: + output: sch_perfids.h + template: fsw/mission_inc/sch_perfids.j2 + platform_cfg: + output: sch_platform_cfg.h + template: fsw/platform_inc/sch_platform_cfg.j2 + commands: + SCH_CMD_MID: + commands: + Disable: + cc: 3 + struct: SCH_EntryCmd_t + DisableGroup: + cc: 5 + struct: SCH_GroupCmd_t + Enable: + cc: 2 + struct: SCH_EntryCmd_t + EnableGroup: + cc: 4 + struct: SCH_GroupCmd_t + EnableSync: + cc: 6 + struct: SCH_NoArgsCmd_t + Noop: + cc: 0 + struct: SCH_NoArgsCmd_t + Reset: + cc: 1 + struct: SCH_NoArgsCmd_t + SendDiag: + cc: 7 + struct: SCH_NoArgsCmd_t + msgID: 6297 + SCH_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: CFE_SB_CmdHdr_t + msgID: 6298 + config: + SCH_AD_CHILD_TASK_FLAGS: + name: SCH_AD_CHILD_TASK_FLAGS + value: OS_ENABLE_CORE_0 + SCH_AD_CHILD_TASK_PRIORITY: + name: SCH_AD_CHILD_TASK_PRIORITY + value: 10 + SCH_AD_PIPE_DEPTH: + name: SCH_AD_PIPE_DEPTH + value: 3 + SCH_DEADLINES_PER_SLOT: + name: SCH_DEADLINES_PER_SLOT + value: 5 + SCH_ENTRIES_PER_SLOT: + name: SCH_ENTRIES_PER_SLOT + value: 5 + SCH_LIB_DIS_CTR: + name: SCH_LIB_DIS_CTR + value: 0 + SCH_LIB_PRESENCE: + name: SCH_LIB_PRESENCE + value: 1 + SCH_MAX_LAG_COUNT: + name: SCH_MAX_LAG_COUNT + value: (SCH_TOTAL_SLOTS / 2) + SCH_MAX_MESSAGES: + name: SCH_MAX_MESSAGES + value: 128 + SCH_MAX_MSG_WORDS: + name: SCH_MAX_MSG_WORDS + value: 64 + SCH_MAX_NOISY_MAJORF: + name: SCH_MAX_NOISY_MAJORF + value: 2 + SCH_MAX_SLOTS_PER_WAKEUP: + name: SCH_MAX_SLOTS_PER_WAKEUP + value: 5 + SCH_MDT_MAX_MSG_ID: + name: SCH_MDT_MAX_MSG_ID + value: CFE_SB_HIGHEST_VALID_MSGID + SCH_MDT_MIN_MSG_ID: + name: SCH_MDT_MIN_MSG_ID + value: 0 + SCH_MESSAGE_FILENAME: + name: SCH_MESSAGE_FILENAME + value: /cf/apps/sch_def_msgtbl.tbl + SCH_MICROS_PER_MAJOR_FRAME: + name: SCH_MICROS_PER_MAJOR_FRAME + value: 1000000 + SCH_MISSION_REV: + name: SCH_MISSION_REV + value: 0 + SCH_PIPE_DEPTH: + name: SCH_PIPE_DEPTH + value: 12 + SCH_SCHEDULE_FILENAME: + name: SCH_SCHEDULE_FILENAME + value: /cf/apps/sch_def_schtbl.tbl + SCH_STARTUP_PERIOD: + name: SCH_STARTUP_PERIOD + value: (5*SCH_MICROS_PER_MAJOR_FRAME) + SCH_STARTUP_SYNC_TIMEOUT: + name: SCH_STARTUP_SYNC_TIMEOUT + value: 50000 + SCH_SYNC_SLOT_DRIFT_WINDOW: + name: SCH_SYNC_SLOT_DRIFT_WINDOW + value: 5000 + SCH_TOTAL_SLOTS: + name: SCH_TOTAL_SLOTS + value: 100 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/sch/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/SCH.so + events: + SCH_ACQ_PTR_ERR_EID: + id: 11 + SCH_AD_CHILD_TASK_CREATE_ERR_EID: + id: 66 + SCH_AD_RCVD_UNEXPECTED_MSG_ERR_EID: + id: 67 + SCH_APP_EXIT_EID: + id: 2 + SCH_CC_ERR_EID: + id: 58 + SCH_CMD_LEN_ERR_EID: + id: 60 + SCH_CORRUPTION_EID: + id: 19 + SCH_CR_PIPE_ERR_EID: + id: 3 + SCH_DEADLINE_REG_ERR_EID: + id: 61 + SCH_DISABLE_CMD_ARG_ERR_EID: + id: 52 + SCH_DISABLE_CMD_EID: + id: 43 + SCH_DISABLE_CMD_ENTRY_ERR_EID: + id: 53 + SCH_DIS_GRP_CMD_EID: + id: 45 + SCH_DIS_GRP_CMD_ERR_EID: + id: 56 + SCH_DIS_GRP_NOT_FOUND_ERR_EID: + id: 57 + SCH_ENABLE_CMD_ARG_ERR_EI: + id: 50 + SCH_ENABLE_CMD_EID: + id: 42 + SCH_ENABLE_CMD_ENTRY_ERR_EID: + id: 51 + SCH_ENA_GRP_CMD_EID: + id: 44 + SCH_ENA_GRP_CMD_ERR_EID: + id: 54 + SCH_ENA_GRP_NOT_FOUND_ERR_EID: + id: 55 + SCH_ENA_SYNC_CMD_EID: + id: 46 + SCH_INITSTATS_INF_EID: + id: 1 + SCH_MAJOR_FRAME_SUB_ERR_EID: + id: 14 + SCH_MDT_LOAD_ERR_EID: + id: 10 + SCH_MDT_REG_ERR_EID: + id: 8 + SCH_MD_ERR_EID: + id: 59 + SCH_MESSAGE_TABLE_EID: + id: 33 + SCH_MESSAGE_TBL_ERR_EID: + id: 32 + SCH_MINOR_FRAME_TIMER_ACC_WARN_EID: + id: 13 + SCH_MINOR_FRAME_TIMER_CREATE_ERR_EID: + id: 12 + SCH_MULTI_SLOTS_EID: + id: 18 + SCH_MUTEX_CREATE_ERR_EID: + id: 65 + SCH_NOISY_MAJOR_FRAME_ERR_EID: + id: 21 + SCH_NOOP_CMD_EID: + id: 40 + SCH_PACKET_SEND_EID: + id: 20 + SCH_RESET_CMD_EID: + id: 41 + SCH_SAME_SLOT_EID: + id: 16 + SCH_SCHEDULE_TABLE_EID: + id: 31 + SCH_SCHEDULE_TBL_ERR_EID: + id: 30 + SCH_SDT_LOAD_ERR_EID: + id: 9 + SCH_SDT_REG_ERR_EID: + id: 7 + SCH_SEM_CREATE_ERR_EID: + id: 15 + SCH_SEND_DIAG_CMD_EID: + id: 47 + SCH_SKIPPED_SLOTS_EID: + id: 17 + SCH_SLOT_DEADLINE_FULL_ERR_EID: + id: 62 + SCH_SUB_ACTIVITY_DONE_REQ_ERR_EID: + id: 63 + SCH_SUB_GND_CMD_ERR_EID: + id: 5 + SCH_SUB_HK_REQ_ERR_EID: + id: 4 + SCH_UNEXPECTED_ACT_DONE_ERR_EID: + id: 64 + ide: + plugin: ide/SchPlugin.jar + view: + - dbPath: tables + viewClass: com.windhoverlabs.ide.module.sch.SchTableEditor + long_name: Scheduler + module_type: CFE_APP + msg_def_overrides: + - enumerations: + FULLY_SYNCED: 7 + MAJOR: 4 + MAJOR_AND_MINOR: 5 + MAJOR_AND_PENDING: 6 + MINOR: 1 + MINOR_AND_PENDING: 3 + NONE: 0 + PENDING: 2 + member: SyncToMET + parent: SCH_HkPacket_t + type: enumeration + - enumerations: + CFE_TIME: 1 + MINOR_FRAME_TIMER: 2 + NONE: 0 + member: MajorFrameSource + parent: SCH_HkPacket_t + type: enumeration + perfids: + SCH_APPMAIN_PERF_ID: + id: 60 + short_name: sch + tables: + _MSG_DEFS: + default: sch_def_msgtbl.tbl + output: sch_def_msgtbl.c + template: fsw/tables/sch_def_msgtbl.j2 + title: Message Definitions + _SCHED_DEF: + default: sch_def_schtbl.tbl + output: sch_def_schtbl.c + template: fsw/tables/sch_def_schtbl.j2 + title: Schedule Definitions + telemetry: + SCH_ACTIVITY_DONE_MID: + msgID: 2198 + struct: SCH_ActivityDoneMsg_t + SCH_DIAG_TLM_MID: + msgID: 2199 + struct: SCH_DiagPacket_t + SCH_HK_TLM_MID: + msgID: 2200 + struct: SCH_HkPacket_t + to: + app_name: TO + commands: + TO_CMD_MID: + commands: + AddMessageFlow: + cc: 2 + struct: TO_AddMessageFlowCmd_t + DisableChannel: + cc: 11 + struct: TO_DisableChannelCmd_t + EnableChannel: + cc: 10 + struct: TO_EnableChannelCmd_t + Noop: + cc: 0 + struct: TO_NoArgCmd_t + QueryMessageFlow: + cc: 4 + struct: TO_QueryMessageFlowCmd_t + QueryOutputChannel: + cc: 6 + struct: TO_QueryOutputChannelCmd_t + QueryPriorityQueue: + cc: 5 + struct: TO_QueryPriorityQueueCmd_t + RemoveMessageFlow: + cc: 3 + struct: TO_RemoveMessageFlowCmd_t + Reset: + cc: 1 + struct: TO_NoArgCmd_t + SendDiag: + cc: 7 + struct: TO_SendDiagCmd_t + msgID: 6303 + TO_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: TO_NoArgCmd_t + msgID: null + TO_SEND_TLM_MID: + commands: + SendTelemetry: + cc: 0 + struct: TO_NoArgCmd_t + msgID: null + config: + TO_CMD_PIPE_DEPTH: + name: TO_CMD_PIPE_DEPTH + value: 4 + TO_CMD_PIPE_NAME: + name: TO_CMD_PIPE_NAME + value: TO_CMD_PIPE + TO_CUSTOM_CHILD_TASK_FLAGS: + name: TO_CUSTOM_CHILD_TASK_FLAGS + value: OS_ENABLE_CORE_0 + TO_CUSTOM_TASK_STACK_SIZE: + name: TO_CUSTOM_TASK_STACK_SIZE + value: 131072 + TO_DATA_PIPE_DEPTH: + name: TO_DATA_PIPE_DEPTH + value: CFE_SB_MAX_PIPE_DEPTH + TO_DATA_PIPE_NAME: + name: TO_DATA_PIPE_NAME + value: TO_DATA_PIPE + TO_GROUND_BINARY_CONFIG_TABLENAME: + name: TO_GROUND_BINARY_CONFIG_TABLENAME + value: GRND_BIN_CFG + TO_GROUND_BINARY_CONFIG_TABLE_FILENAME: + name: TO_GROUND_BINARY_CONFIG_TABLE_FILENAME + value: /cf/apps/to_grnd_bin.tbl + TO_GROUND_BINARY_DUMP_TABLENAME: + name: TO_GROUND_BINARY_DUMP_TABLENAME + value: GRND_BIN_DMP + TO_GROUND_PROTOBUF_CONFIG_TABLENAME: + name: TO_GROUND_PROTOBUF_CONFIG_TABLENAME + value: GRND_PB_CFG + TO_GROUND_PROTOBUF_CONFIG_TABLE_FILENAME: + name: TO_GROUND_PROTOBUF_CONFIG_TABLE_FILENAME + value: /cf/apps/to_grnd_pb.tbl + TO_GROUND_PROTOBUF_DUMP_TABLENAME: + name: TO_GROUND_PROTOBUF_DUMP_TABLENAME + value: GRND_PB_DMP + TO_MAX_BLOCK_SIZE: + name: TO_MAX_BLOCK_SIZE + value: TO_MEM_BLOCK_SIZE_07 + TO_MEM_BLOCK_SIZE_07 + TO_MAX_CHANNELS: + name: TO_MAX_CHANNELS + value: 5 + TO_MAX_MEMPOOL_BLK_SIZES: + name: TO_MAX_MEMPOOL_BLK_SIZES + value: 8 + TO_MAX_MESSAGE_FLOWS: + name: TO_MAX_MESSAGE_FLOWS + value: 200 + TO_MAX_MSGS_OUT_PER_FRAME: + name: TO_MAX_MSGS_OUT_PER_FRAME + value: 100 + TO_MAX_PRIORITY_QUEUES: + name: TO_MAX_PRIORITY_QUEUES + value: 10 + TO_MAX_PROTOBUF_ENC_LEN: + name: TO_MAX_PROTOBUF_ENC_LEN + value: 5000 + TO_MEM_BLOCK_SIZE_01: + name: TO_MEM_BLOCK_SIZE_01 + value: 32 + TO_MEM_BLOCK_SIZE_02: + name: TO_MEM_BLOCK_SIZE_02 + value: 64 + TO_MEM_BLOCK_SIZE_03: + name: TO_MEM_BLOCK_SIZE_03 + value: 128 + TO_MEM_BLOCK_SIZE_04: + name: TO_MEM_BLOCK_SIZE_04 + value: 256 + TO_MEM_BLOCK_SIZE_05: + name: TO_MEM_BLOCK_SIZE_05 + value: 512 + TO_MEM_BLOCK_SIZE_06: + name: TO_MEM_BLOCK_SIZE_06 + value: 2048 + TO_MEM_BLOCK_SIZE_07: + name: TO_MEM_BLOCK_SIZE_07 + value: 8192 + TO_MISSION_REV: + name: TO_MISSION_REV + value: 0 + TO_NUM_BYTES_IN_MEM_POOL: + name: TO_NUM_BYTES_IN_MEM_POOL + value: TO_MAX_CHANNELS * TO_OUTPUT_QUEUE_DEPTH * TO_MAX_BLOCK_SIZE + TO_OUTPUT_QUEUE_DEPTH: + name: TO_OUTPUT_QUEUE_DEPTH + value: 10 + TO_SCH_PIPE_DEPTH: + name: TO_SCH_PIPE_DEPTH + value: 2 + TO_SCH_PIPE_NAME: + name: TO_SCH_PIPE_NAME + value: TO_SCH_PIPE + TO_SCH_PIPE_PEND_TIME: + name: TO_SCH_PIPE_PEND_TIME + value: 2000 + TO_SEND_HK_MID_MAX_MSG_COUNT: + name: TO_SEND_HK_MID_MAX_MSG_COUNT + value: 1 + TO_STARTUP_TIMEOUT_MSEC: + name: TO_STARTUP_TIMEOUT_MSEC + value: 1000 + TO_WAKEUP_MID_MAX_MSG_COUNT: + name: TO_WAKEUP_MID_MAX_MSG_COUNT + value: 1 + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/to/wh_design.yaml + elf_files: + - /home/lgomez/squeaky-weasel/software/airliner/public/build/obc/ppd/target/target/exe/cf/apps/TO.so + events: + TO_CDS_ERR_EID: + id: 9 + TO_CDS_INF_EID: + id: 4 + TO_CMD_ADD_MSG_FLOW_EID: + id: 25 + TO_CMD_ERR_EID: + id: 10 + TO_CMD_INF_EID: + id: 5 + TO_CMD_NOOP_EID: + id: 23 + TO_CMD_REMOVE_MSG_FLOW_EID: + id: 26 + TO_CMD_RESET_EID: + id: 24 + TO_CMD_SEND_DIAG_EID: + id: 27 + TO_CONFIG_TABLE_ERR_EID: + id: 8 + TO_CONFIG_TABLE_INF_EID: + id: 3 + TO_CR_POOL_ERR_EID: + id: 17 + TO_ERR_EID: + id: 6 + TO_GET_POOL_ERR_EID: + id: 18 + TO_INF_EID: + id: 1 + TO_INIT_ERR_EID: + id: 7 + TO_INIT_INF_EID: + id: 2 + TO_MSGID_ERR_EID: + id: 12 + TO_MSGLEN_ERR_EID: + id: 13 + TO_MSG_DROP_FROM_FLOW_DBG_EID: + id: 16 + TO_MSG_FLOW_INFO_EID: + id: 20 + TO_MSG_UNSUB_DBG_EID: + id: 15 + TO_MSG_WRITE_ERR_EID: + id: 14 + TO_NO_ENCODE_FUNC_EID: + id: 28 + TO_OUT_CH_INFO_EID: + id: 22 + TO_PIPE_ERR_EID: + id: 11 + TO_PQUEUE_INFO_EID: + id: 21 + TO_TLMOUTDIS_ERR_EID: + id: 33 + TO_TLMOUTDIS_INF_EID: + id: 32 + TO_TLMOUTENA_ERR_EID: + id: 31 + TO_TLMOUTENA_INF_EID: + id: 30 + TO_TLMOUTSEND_ERR_EID: + id: 34 + TO_TLMOUTSOCKET_ERR_EID: + id: 29 + TO_TLMOUTSTOP_ERR_EID: + id: 35 + TO_TLM_LISTEN_ERR_EID: + id: 19 + long_name: Telemetry Output + module_type: CFE_APP + msg_def_overrides: + - member: DestinationAddress + parent: TO_EnableChannelCmd_t + type: string + perfids: + TO_MAIN_TASK_PERF_ID: + id: null + TO_SOCKET_SEND_PERF_ID: + id: null + short_name: to + telemetry: + TO_DATA_TYPE_MID: + msgID: 2203 + TO_DIAG_MSG_FLOW_MID: + msgID: 2204 + struct: TO_MsgFlowListPkt_t + TO_DIAG_TLM_MID: + msgID: 2205 + struct: TO_ChannelDiagTlm_t + TO_HK_TLM_MID: + msgID: 2206 + struct: TO_HkTlm_t + vc: + app_name: VC + commands: + VC_CMD_MID: + commands: + Noop: + cc: 0 + struct: VC_NoArgCmd_t + Reset: + cc: 1 + struct: VC_NoArgCmd_t + StartStreaming: + cc: 2 + struct: VC_StartStreamCmd_t + StopStreaming: + cc: 3 + struct: VC_NoArgCmd_t + msgID: 6610 + VC_PROCESS_CMDS_MID: + commands: + ProcessCommands: + cc: 0 + struct: VC_NoArgCmd_t + msgID: 6611 + VC_SEND_HK_MID: + commands: + SendHK: + cc: 0 + struct: VC_NoArgCmd_t + msgID: 6612 + config: + VC_ADDRESS_LENGTH: + name: VC_ADDRESS_LENGTH + value: INET_ADDRSTRLEN + VC_BUFFER_FILL_TIMEOUT_SEC: + name: VC_BUFFER_FILL_TIMEOUT_SEC + value: 2 + VC_BUFFER_FILL_TIMEOUT_USEC: + name: VC_BUFFER_FILL_TIMEOUT_USEC + value: 0 + VC_BUFFER_TIMEOUTS_ALLOWED: + name: VC_BUFFER_TIMEOUTS_ALLOWED + value: 2 + VC_CMD_PIPE_DEPTH: + name: VC_CMD_PIPE_DEPTH + value: 4 + VC_CMD_PIPE_NAME: + name: VC_CMD_PIPE_NAME + value: VC_CMD_PIPE + VC_CONFIG_TABLE_FILENAME: + name: VC_CONFIG_TABLE_FILENAME + value: /cf/apps/vc_config.tbl + VC_DATA_PIPE_DEPTH: + name: VC_DATA_PIPE_DEPTH + value: 4 + VC_DATA_PIPE_NAME: + name: VC_DATA_PIPE_NAME + value: VC_DATA_PIPE + VC_DESTINATION_IP: + name: VC_DESTINATION_IP + value: 127.0.0.1 + VC_DESTINATION_PORT: + name: VC_DESTINATION_PORT + value: 3001 + VC_DEVICE_PATH: + name: VC_DEVICE_PATH + value: /dev/video0 + VC_FRAMERATE: + name: VC_FRAMERATE + value: 30 + VC_FRAME_HEIGHT: + name: VC_FRAME_HEIGHT + value: 240 + VC_FRAME_WIDTH: + name: VC_FRAME_WIDTH + value: 320 + VC_MAX_BUFFER_SIZE: + name: VC_MAX_BUFFER_SIZE + value: 28800 + VC_MAX_DEVICES: + name: VC_MAX_DEVICES + value: 2 + VC_MAX_DEVICE_PATH: + name: VC_MAX_DEVICE_PATH + value: OS_MAX_LOCAL_PATH_LEN + VC_MAX_OUTPUT_CHANNELS: + name: VC_MAX_OUTPUT_CHANNELS + value: 5 + VC_MAX_PACKET_SIZE: + name: VC_MAX_PACKET_SIZE + value: 65527 + VC_MAX_RETRY_ATTEMPTS: + name: VC_MAX_RETRY_ATTEMPTS + value: 2 + VC_MAX_RETRY_SLEEP_USEC: + name: VC_MAX_RETRY_SLEEP_USEC + value: 10 + VC_MISSION_REV: + name: VC_MISSION_REV + value: 0 + VC_SB_TIMEOUT: + name: VC_SB_TIMEOUT + value: CFE_SB_PEND_FOREVER + VC_SCH_PIPE_DEPTH: + name: VC_SCH_PIPE_DEPTH + value: 2 + VC_SCH_PIPE_NAME: + name: VC_SCH_PIPE_NAME + value: VC_SCH_PIPE + VC_SCH_PIPE_PEND_TIME: + name: VC_SCH_PIPE_PEND_TIME + value: 2000 + VC_SCH_PIPE_SEND_HK_RESERVED: + name: VC_SCH_PIPE_SEND_HK_RESERVED + value: 1 + VC_SCH_PIPE_WAKEUP_RESERVED: + name: VC_SCH_PIPE_WAKEUP_RESERVED + value: 1 + VC_SOURCE_IP: + name: VC_SOURCE_IP + value: 0 + VC_SOURCE_PORT: + name: VC_SOURCE_PORT + value: 0 + VC_STARTUP_TIMEOUT_MSEC: + name: VC_STARTUP_TIMEOUT_MSEC + value: 1000 + VC_STREAMING_TASK_FLAGS: + name: VC_STREAMING_TASK_FLAGS + value: OS_ENABLE_CORE_0 + VC_STREAMING_TASK_NAME: + name: VC_STREAMING_TASK_NAME + value: VC_STREAM + VC_STREAMING_TASK_PRIORITY: + name: VC_STREAMING_TASK_PRIORITY + value: 91 + VC_V4L_BUFFER_REQUEST: + name: VC_V4L_BUFFER_REQUEST + value: 4 + VC_V4L_BUFFER_TYPE: + name: VC_V4L_BUFFER_TYPE + value: V4L2_BUF_TYPE_VIDEO_CAPTURE + VC_V4L_IO_METHOD: + name: VC_V4L_IO_METHOD + value: V4L2_MEMORY_USERPTR + VC_V4L_MEMORY_TYPE: + name: VC_V4L_MEMORY_TYPE + value: V4L2_MEMORY_USERPTR + VC_V4L_VIDEO_FIELD_ORDER: + name: VC_V4L_VIDEO_FIELD_ORDER + value: V4L2_FIELD_NONE + VC_V4L_VIDEO_FORMAT: + name: VC_V4L_VIDEO_FORMAT + value: V4L2_PIX_FMT_MJPEG + definition: /home/lgomez/squeaky-weasel/software/airliner/public/apps/vc/wh_design.yaml + events: + VC_CHA_INF_EID: + id: 6 + VC_CMD_ERR_EID: + id: 9 + VC_CMD_INF_EID: + id: 4 + VC_DEV_INF_EID: + id: 5 + VC_INIT_ERR_EID: + id: 7 + VC_INIT_INF_EID: + id: 1 + VC_MSGID_ERR_EID: + id: 11 + VC_MSGLEN_ERR_EID: + id: 12 + VC_NOOP_INF_EID: + id: 2 + VC_PIPE_ERR_EID: + id: 10 + VC_RESET_INF_EID: + id: 3 + VC_UNINIT_ERR_EID: + id: 8 + long_name: Video Control + module_type: CFE_APP + perfids: + VC_DEVICE_GET_PERF_ID: + id: 107 + VC_MAIN_TASK_PERF_ID: + id: 108 + VC_SOCKET_SEND_PERF_ID: + id: 109 + short_name: vc + telemetry: + FLOW_FRAME_MID: + msgID: 2513 + VC_HK_TLM_MID: + msgID: 2512 + struct: VC_HkTlm_t + xtce_config: + global: + CommandMetaData: + BaseContainer: + container_ref: cfs/cfs-cmd + size: 64 + TelemetryMetaData: + BaseContainer: + container_ref: cfs + size: 96 diff --git a/config/obc/ppd/pyliner/server_overlay/etc/yamcs.pyliner.yaml b/config/obc/ppd/pyliner/server_overlay/etc/yamcs.pyliner.yaml new file mode 100644 index 000000000..ed36f5fe2 --- /dev/null +++ b/config/obc/ppd/pyliner/server_overlay/etc/yamcs.pyliner.yaml @@ -0,0 +1,65 @@ +#Configuration tested on YAMCS 5.4.0 +services: + - class: org.yamcs.archive.XtceTmRecorder + #- class: org.yamcs.parameter.SystemParametersCollector + #args: + # provideJvmVariables: true + # provideFsVariables: true + #- class: org.yamcs.ProcessorCreatorService + #args: + # name: realtime + # type: realtime + - class: org.yamcs.tctm.cfs.CfsEventDecoder + args: + msgIds: [0x0815, 0x0a15] #Always confirm this ID with CFE_EVS configuration + byteOrder: LITTLE_ENDIAN + appNameMax: 40 + +dataLinks: + - name: tcp_cpd + class: org.yamcs.tctm.UdpTcDataLink + stream: tc_realtime + host: 127.0.0.1 + port: 5110 + commandPostprocessorClassName: org.yamcs.tctm.cfs.CfsCommandPostprocessor + commandPostprocessorArgs: + swapChecksumFc: true + + - name: tm_cpd + class: org.yamcs.tctm.UdpTmDataLink + stream: tm_realtime + host: 127.0.0.1 + port: 5112 + maxLength: 32768 #32KB is the default for CCSDS + packetPreprocessorClassName: org.yamcs.tctm.cfs.CfsPacketPreprocessor + packetPreprocessorArgs: + checkSequence: false + byteOrder: LITTLE_ENDIAN + useLocalGenerationTime: false + #errorDetection: + #tcoService: + timestampFormat: CFE_SB_TIME_32_16_SUBS + timeEncoding: + epoch: CUSTOM + epochUTC: "1970-01-01T00:00:00Z" + timeIncludesLeapSeconds: false + +mdb: + # Configuration of the active loaders + # Valid loaders are: sheet, xtce or fully qualified name of the class + - type: "xtce" + spec: "mdb/cfs-ccsds.xml" + subLoaders: + - type: "xtce" + spec: "mdb/ppd.xml" + - type: "xtce" + spec: "mdb/cpd.xml" + +# Configuration for streams created at server startup +streamConfig: + tm: + - name: "tm_realtime" + - name: "tm_dump" + cmdHist: ["cmdhist_realtime", "cmdhist_dump"] + event: ["events_realtime", "events_dump"] + tc: ["tc_realtime"] diff --git a/config/obc/ppd/pyliner/server_overlay/etc/yamcs.yaml b/config/obc/ppd/pyliner/server_overlay/etc/yamcs.yaml new file mode 100644 index 000000000..8478ac9ca --- /dev/null +++ b/config/obc/ppd/pyliner/server_overlay/etc/yamcs.yaml @@ -0,0 +1,28 @@ +#Configuration tested on YAMCS 5.4.0 +services: + - class: org.yamcs.http.HttpServer + args: + port: 8090 + webSocket: + maxFrameLength: 262144 # We need this much for rendering SCH tables in Studio. + +# This is where Yamcs will persist its data. Paths are resolved relative to where Yamcs is running +# from (by default: target/yamcs). This means that `mvn clean` will remove also persisted data. +# Change this property to an absolute path in case you want to persist your data. +dataDir: yamcs-data + +instances: + - pyliner + +# Secret key unique to a particular Yamcs installation. +# This is used to provide cryptographic signing. +secretKey: changeme + + +#The bucket with name of "displays" must ALWAYS be called "displays". The YAMCS Webapp looks for a bucket with ths exact name when loading displays from the filesystem. +#See yamcs/yamcs-web/src/main/java/org/yamcs/web/WebPlugin.java for details. +buckets: + - name: cfdpUp + path: cfdp_upload + - name: displays + path: Displays diff --git a/config/obc/ppd/pyliner/server_overlay/mdb/SpaceSystem.xsd b/config/obc/ppd/pyliner/server_overlay/mdb/SpaceSystem.xsd new file mode 100644 index 000000000..c9d99d902 --- /dev/null +++ b/config/obc/ppd/pyliner/server_overlay/mdb/SpaceSystem.xsd @@ -0,0 +1,5918 @@ + + + + + + This XML Schema Definition (XSD) defines syntax with concrete semantics for describing space or remote device telemetry and commanding in a platform and program independent manner. + + + + + The top-level SpaceSystem is the root element for the set of metadata necessary to monitor and command a space device, such as a satellite. A SpaceSystem defines a namespace. Metadata areas include: packets/minor frames layout, telemetry, calibration, alarm, algorithms, streams and commands. A SpaceSystem may have child SpaceSystems, forming a SpaceSystem tree. See SpaceSystemType. + + + + This key ensures a unique parameter name at the system level. + + + + + + + This key ensures a unique parameter type name at the system level. + + + + + + + This key ensures a unique metaCommand name at the system level. + + + + + + + This key ensures a unique algorithm name at the system level. + + + + + + + This key ensures a unique stream name at the system level. + + + + + + + This key ensures a unique service name at the system level. + + + + + + + This key ensures a container stream name at the system level. + + + + + + + + + + + This key ensures a unique argument type name at the system level. + + + + + + + This key ensures a unique BlockMetaCommand name at the system level. + + + + + + + + SpaceSystem is a collection of SpaceSystem(s) including space assets, ground assets, multi-satellite systems and sub-systems. A SpaceSystem is the root element for the set of data necessary to monitor and command an arbitrary space device - this includes the binary decomposition the data streams going into and out of a device. + + + + + + + The Header element contains optional descriptive information about this SpaceSystem or the document as a whole when specified at the root SpaceSystem. + + + + + This element contains descriptions of the telemetry created on the space asset/device and sent to other data consumers. + + + + + This element contains descriptions of the commands and their associated constraints and verifications that can be sent to the space asset/device. + + + + + + Additional SpaceSystem elements may be used like namespaces to segregate portions of the space asset/device into convenient groupings or may be used to specialize a product line generic SpaceSystem to a specific asset instance. + + + + + + Optional descriptive attribute for document owner convenience. + + + + + + + + + Describe command related metadata. Items defined in this area may refer to items defined in TelemetryMetaData. See TelemetryMetaDataType. + + + + + A list of parameter types. + + + + + Parameters referenced by MetaCommands. This Parameter Set is located here so that MetaCommand data can be built independently of TelemetryMetaData. + + + + + A list of argument types. MetaCommand definitions can contain arguments and parameters. Arguments are user provided to the specific command definition. Parameters are provided/calculated/determined by the software creating the command instance. As a result, arguments contain separate type information. In some cases, arguments have different descriptive characteristics. + + + + + A list of command definitions with their arguments, parameters, and container encoding descriptions. + + + + + Similar to the ContainerSet for telemetry, the CommandContainerSet contains containers that can be referenced/shared by MetaCommand definitions. + + + + + Contains an unordered set of Streams. + + + + + Contains an unordered set of Algorithms. + + + + + + + All the data about telemetry is contained in TelemetryMetaData + + + + + A list of parameter types + + + + + A list of Parameters for this Space System. + + + + + Holds the list of all potential container definitions for telemetry. Containers may parts of packets or TDM, and then groups of the containers, and then an entire entity -- such as a packet. In order to maximize re-used for duplication, the pieces may defined once here, and then assembled as needed into larger structures, also here. + + + + + Messages are an alternative method of uniquely identifying containers within a Service. A message provides a test in the form of MatchCriteria to match to a container. A simple example might be: [When minorframeID=21, the message is the 21st minorframe container. The collection of messages to search thru will be bound by a Service. + + + + + + + + + + + This schema defines the dictionary for containers, which in turn describe the physical composition of data in a communication system + + + + Identical to ArgumentRefEntryType but supports argument instance references. + + + + + + + + + + Identical to ArrayParameterRefEntryType but supports argument instance references. + + + + + + Only used for subsetting an array. The array's true dimension sizes are set in the Type. + + + + The dimension here if used for subsetting must be less than the ones in the type. It's not a subset if its the same size. + + + + + + + + + + + Identical to ArrayParameterRefEntryType but supports argument instance references. + + + + + + Only used for subsetting an array. The array's true dimension sizes are set in the Type. + + + + The dimension here if used for subsetting must be less than the ones in the type. It's not a subset if its the same size. + + + + + + + + + + + Identical to ContainerRefEntryType but supports argument instance references. + + + + + + + + + + Identical to ContainerSegmentRefEntryType but supports argument instance references. + + + + + + + + + + + + Identical to FixedValueEntryType but supports argument instance references. + + + + + + An optional name for the fixed/constant field in the sequence. + + + + + The fixed/constant value that should be encoded into the sequence. This value provided should have sufficient bit length to accomodate the size in bits. If the value is larger, the most significant unnecessary bits are dropped. The value provided should be in network byte order for encoding. + + + + + The number of bits that this fixed/constant value should occupy in the sequence. + + + + + + + + Identical to IndirectParameterRefEntryType but supports argument instance references. + + + + + + + + + + + + + Identical to ParameterRefEntryType but supports argument instance references. + + + + + + + + + + Identical to ParameterSegmentRefEntryType but supports argument instance references. + + + + + + + + + + + + Identical to StreamRefEntryType but supports argument instance references. + + + + + + + + + + + + Describe an entry that is an array parameter. Specify the dimension sizes if you subsetting the array (the number of dimensions shall match the number defined in the parameter’s type definition), otherwise the ones in the ParameterType are assumed. See SequenceEntryType. + + + + + + Only used for subsetting an array. The array's maximum dimension sizes are set in the type. When a DimensionList is not used, the array is the full size provided in the type. + + + + The dimension here if used for subsetting must be less than the ones in the type. It's not a subset if its the same size. + + + + + + + + + + Supplies an optional non-reference-able name and short description for alarms. Also includes an optional ancillary data for any special local flags, note that these may not necessarily transfer to another recipient of an instance document. + + + + + + + The alarm definition may be named. + + + + + An optional brief description of this alarm definition. + + + + + + Describe a child/parent container inheritance relationship. Describe constraints with RestrictionCriteria, conditions that must be true for this container to be an extension of the parent container. A constraint can be used to convey the identifying features of the telemetry format such as the CCSDS application id or minor-frame id. See RestrictionCriteriaType and SequenceContainerType. + + + + + Contains the conditions that must evaluate to true in order for this container to be an extension of the parent container. + + + + + + Reference to the container that this container extends. + + + + + + An abstract block of data; used as the base type for more specific container types + + + + + + RateInStream is used to: a) generate alarms when the Container is updated too frequently or too infrequently, b) provide some 'guidelines' for generating forward link containers, c) provide some guidelines for spacecraft simulators to generate telemetry containers. If necessary, these rates may be defined on a per stream basis. + The software should check that any Stream names referenced in the RateInStreamSet actually exist. + + + + + + May be used to indicate error detection and correction, change byte order, provide the size (when it can't be derived), or perform some custom processing. + + + + + + + + + + + + + + Holds a reference to a container + + + + name of container + + + + + + An entry that is simply a reference to another container. + + + + + + + + + + An entry that is only a portion of a container indicating that the entire container must be assembled from other container segments. It is assumed that container segments happen sequentially in time, that is the first part of a container is first, however (and there's always a however), if this is not the case the order of this container segment may be supplied with the order attribute where the first segment order="0". Each instance of a container cannot overlap in the overall sequence with another instance + + + + + + + + + + + + Unordered Set of Containers + + + + + SequenceContainers define sequences of parameters or other containers. + + + + + + + Contains an ordered list of Entries. Used in Sequence Container + + + + + Specify a Parameter to be a part of this container layout definition. + + + + + Specify a portion of a Parameter to be a part of this container layout definition. This is used when the Parameter is reported in fractional parts in the container before being fully updated. + + + + + Specify the content of another Container to be a part of this container layout definition. + + + + + Specify a portion of another Container to be a part of this container layout definition. + + + + + Specify a portion of a Stream to be a part of this container layout definition. + + + + + Specify a previous (not last reported) value of a Parmeter to be a part of this container layout definition. + + + + + Specify an Array Type Parameter to be a part of this container layout definition when the Container does not populate the entire space of the Array contents. If the entire space of the Array is populated, a tolerant implementation will accept ParameterRefEntry also. + + + + + + + An entry whose name is given by the value of a ParamameterInstance. This entry may be used to implement dwell telemetry streams. The value of the parameter in ParameterInstance must use either the name of the Parameter or its alias. If it's an alias name, the alias namespace is supplied as an attribute. + + + + + + + + + + + + + Describe the absolute or relative bit location of an entry in a container. The "referenceLocation" attribute specifies the starting bit anchor. If no referenceLocation value is given, the entry is assumed to begin at the first bit position after the previous entry. Each container starts at bit 0, thus "containerStart" is an offset from 0. Negative container start bits are before the container and are implementation dependent – these should be flagged as likely errors. "containerEnd" is given as a positive offset from the end of the container, thus a container end of 0 is exactly at the end of the container. Negative container end addresses are after the container and are implementation dependent – these should be flagged as likely errors. Positive "previouEntry" values are offsets from the previous entry – zero (0) is the default which means it follows contiguously from the last occupied bit of the previous entry. A value of one means it is offset 1-bit from the previous entry, and a value of negative 1 (-1) means it overlaps the previous entry by one bit, and so forth. The "nextEntry" attribute value is proposed for deprecation and should be avoided. See SequenceEntryType. + + + + + + Defines the relative reference used to interpret the start bit position. The default is 0 bits from the end of the previousEntry, which makes the entry contiguous. + + + + + + + + Identical to LocationInContainerInBitsType but supports argument instance references. + + + + + + + + + + Holds a reference to a message + + + + name of message + + + + + + An entry that is a single Parameter + + + + + + + + + + An entry that is only a portion of a parameter value indicating that the entire parameter value must be assembled from other parameter segments. It is assumed that parameter segments happen sequentially in time, that is the first part if a telemetry parameter first, however (and there's always a however), if this is not the case the order of this parameter segment may be supplied with the order attribute where the first segment order="0". + + + + + + + + + + + + Describes the binary layout/packing of data and also related properties, including an entry list of parameters, parameter segments, array parameters, stream segments, containers, and container segments. Sequence containers may extend other sequence containers (see BaseContainerType). The parent container’s entries are placed before the entries in the child container forming one entry list. An inheritance chain may be formed using this mechanism, but only one entry list is being created. Sequence containers may be marked as "abstract", when this occurs an instance of it cannot itself be created. The idle pattern is part of any unallocated space in the container. See EntryListType. + + + + + + + List of item entries to pack/encode into this container definition. + + + + + Optional inheritance for this container from another named container. + + + + + + Abstract container definitions that are not instantiated, rather only used as bases to inherit from to create specialized container definitions. + + + + + The idle pattern is part of any unallocated space in the container. This is uncommon. + + + + + + + + Defines an abstract schema type used to create other entry types. Describe an entry’s location in the container (See LocationInContainerInBitsType). The location may be fixed or dynamic, absolute or relative. Entries may be included depending on the value of a condition (See IncludeConditionType), and entries may also repeat (see RepeatEntryType). The entry’s IncludeCondition resolves to true, it is fully-resolved when its size is computable after RepeatEntry has been accounted for and then offset by LocationInContainer. See EntryListType, IncludeConditionType, RepeatEntryType and LocationInContainerInBitsType. + + + + + The start bit 0 position for each container is local to the container, but does include space occupied by inherited containers. When a container is "included", as opposed to inherited, then the interpreting implementation takes into account the start bit position of the referring container when finally assembling the start bits for the post-processed entry content. The default start bit for any entry is 0 bits from the previous entry, making the content contiguous when this element is not used. + + + + + May be used when this entry repeats itself in the sequence container. When an entry repeats, it effectively specifies that the same entry is reported more than once in the container and has the same physical meaning. This should not be construed to be equivalent to arrays. + + + + + This entry will only be included in the sequence when this condition is true, otherwise it is always included. When the include condition evaluates to false, it is as if the entry does not exist such that any start bit interpretations cannot take into account the space that would have been occupied if this included condition were true. + + + + + Optional timing information associated with this entry. + + + + + Optional ancillary data associated with this element. + + + + + + Optional short description for this entry element. + + + + + + Identical to a SequenceEntryType but supports argument instance references. + + + + + The start bit 0 position for each container is local to the container, but does include space occupied by inherited containers. When a container is "included", as opposed to inherited, then the interpreting implementation takes into account the start bit position of the referring container when finally assembling the start bits for the post-processed entry content. The default start bit for any entry is 0 bits from the previous entry, making the content contiguous when this element is not used. + + + + + May be used when this entry repeats itself in the sequence container. When an entry repeats, it effectively specifies that the same entry is reported more than once in the container and has the same physical meaning. This should not be construed to be equivalent to arrays. + + + + + This entry will only be included in the sequence when this condition is true, otherwise it is always included. When the include condition evaluates to false, it is as if the entry does not exist such that any start bit interpretations cannot take into account the space that would have been occupied if this included condition were true. + + + + + Ancillary data associated with this entry. + + + + + + Optional short description for this entry element. + + + + + + Holds a set of services, logical groups of containers OR messages (not both). + + + + + + + + + + + + + An entry that is a portion of a stream (streams are by definition, assumed continuous) It is assumed that stream segments happen sequentially in time, that is the first part if a steam first, however, if this is not the case the order of the stream segments may be supplied with the order attribute where the first segment order="0". + + + + + + + + + + + + + + + + + The ContainerRef should point to ROOT container that will describe an entire packet/minor frame or chunk of telemetry. + + + + + + + + + + + + + + + + + + + + + + + Define the expected appearance (rate) of a container in a stream where the rate is defined on either a perSecond or perContainer update basis. Many programs and platforms have variable reporting rates for containers and these can be commanded. As a result, this element is only useful to some users and generally does not affect the processing of the received containers themselves. See ContainerType. + + + + The measurement unit basis for the minimum and maximum appearance count values. + + + + + The minimum rate for the specified basis for which this container should appear in the stream. + + + + + The maximum rate for the specified basis for which this container should appear in the stream. + + + + + + Define the expected appearance (rate) of a container in a named stream where the rate is defined on either a perSecond or perContainer update basis. Many programs and platforms have variable reporting rates for containers and these can be commanded. As a result, this element is only useful to some users and generally does not affect the processing of the received containers themselves. See ContainerType and RateInStreamType. + + + + + + Reference to a named stream for which this rate specification applies. + + + + + + + + The location may be relative to the start of the container (containerStart), relative to the end of the previous entry (previousEntry), relative to the end of the container (containerEnd), or relative to the entry that follows this one (nextEntry). If going forward (containerStart and previousEntry) then the location refers to the start of the Entry. If going backwards (containerEnd and nextEntry) then, the location refers to the end of the entry. + + + + + + + + + + + + + + + + + Define one or more conditions (constraints) for container inheritance. A container is instantiable if its constraints are true. Constraint conditions may be a comparison, a list of comparisons, a boolean expression, or a graph of containers that are instantiable (if all containers are instantiable the condition is true). See BaseContainerType, ComparisonType, ComparisonListType, BooleanExpressionType and NextContainerType. + + + + + + + Reference to the named container that must follow this container in the stream sequence. + + + + + + + + + + + This schema defines the dictionary for telemetry + + + + Describe an absolute time parameter type relative to a known epoch (such as TAI). The string representation of this time should use the [ISO 8601] extended format CCYY-MM-DDThh:mm:ss where "CC" represents the century, "YY" the year, "MM" the month and "DD" the day, preceded by an optional leading "-" sign to indicate a negative number. If the sign is omitted, "+" is assumed. The letter "T" is the date/time separator and "hh", "mm", "ss" represent hour, minute and second respectively. Additional digits can be used to increase the precision of fractional seconds if desired i.e. the format ss.ss... with any number of digits after the decimal point is supported. See TAIType, IntegerDataEncoding and AbsoluteTimeDataType. + + + + + + + + Describe a complex data type analogous to a C-struct. Each field of the data type is called a Member. Each Member is part of the MemberList which forms the list of items to be placed under this data type’s name. The MemberList defines a data block and block’s size is defined by the DataEncodings of each Member’s type reference. The data members are ordered and contiguous in the MemberList element (packed). Each member may be addressed by the dot syntax similar to C such as P.voltage if P is the referring parameter and voltage is of a member of P’s aggregate type. See MemberType, MemberListType, DataEncodingType, NameReferenceType, and AggregateDataType. + + + + + + + + Describe an array parameter type. The size and number of dimensions are described here. See ArrayParameterRefEntryType, NameReferenceType and ArrayDataType. + + + + + + + Describe the dimensions of this array. + + + + + + + + + Describe a binary engineering/calibrated parameter type (sometimes called a “blob type”). It may be of fixed or variable length, and has an optional encoding and decoding algorithm that may be defined to transform the data between space and ground. See BinaryDataEncodingType, IntegerValueType, InputAlgorithmType and BinaryDataType. + + + + + + + Optionally describe an alarm monitoring specification that is effective whenever a contextual alarm definition does not take precedence. + + + + + Optionally describe one or more alarm monitoring specifications that are effective whenever a contextual match definition evaluates to true. The first match that evaluates to true takes precedence. + + + + + + + + + Describe a boolean parameter type which has two values only: ‘True’ (1) or ‘False’ (0). The values one and zero may be mapped to a specific string using the attributes oneStringValue and zeroStringValue. This type is a simplified form of the EnumeratedDataType. See IntegerDataEncoding and BooleanDataType. + + + + + + + Optionally describe an alarm monitoring specification that is effective whenever a contextual alarm definition does not take precedence. + + + + + Optionally describe one or more alarm monitoring specifications that are effective whenever a contextual match definition evaluates to true. The first match that evaluates to true takes precedence. + + + + + + + + + Describe an enumerated parameter type. The enumeration list consists of label/value pairs. See EnumerationListType, IntegerDataEncodingType and EnumeratedDataType. + + + + + + + Describe labels for this parameter that should be in an alarm state. The default definition applies when there are no context alarm definitions or all the context alarm definitions evaluate to false in their matching criteria. + + + + + Describe labels for this parameter that should be in an alarm state when another parameter and value combination evaluates to true using the described matching criteria. + + + + + + + + + Describe an ordered collection of context enumeration alarms, duplicates are valid. Process the contexts in list order. See EnumerationContextAlarmType. + + + + + Describe the alarm matching context criteria and the alarm definition itself. + + + + + + + Describe a floating point parameter type. Several encodings are supported. Calibrated integer to float relationships should be described with this data type. Use the data encoding to define calibrators. Joins integer as one of the numerics. See FloatDataEncodingType, IntegerDataEncodingType and FloatDataType. + + + + + + + Default alarm definitions are those which do not adjust definition logic based on the value of other parameters. Other parameters may participate in the determination of an alarm condition for this parameter, but the definition logic of the alarm on this parameter is constant. If the alarming logic on this parameter changes based on the value of other parameters, then it is a ContextAlarm and belongs in the ContextAlarmList element. + + + + + Context alarm definitions are those which adjust the definition logic for this parameter based on the value of other parameters. A context which evaluates to being in effect, based on the testing of another parameter, takes precedence over the default alarms in the DefaultAlarm element. If the no context alarm evaluates to being in effect, based on the testing of another parameter, then the default alarm definitions from the DefaultAlarm element will remain in effect. If multiple contexts evaluate to being in effect, then the first one that appears will take precedence. + + + + + + + + + Describe an integer parameter type. Several are supported. Calibrated integer to integer relationships should be described with this data type. Use the integer data encoding to define calibrators. Joins float as one of the numerics. See IntegerDataEncoding and IntegerDataType. + + + + + + + Default alarm definitions are those which do not adjust definition logic based on the value of other parameters. Other parameters may participate in the determination of an alarm condition for this parameter, but the definition logic of the alarm on this parameter is constant. If the alarming logic on this parameter changes based on the value of other parameters, then it is a ContextAlarm and belongs in the ContextAlarmList element. + + + + + Context alarm definitions are those which adjust the definition logic for this parameter based on the value of other parameters. A context which evaluates to being in effect, based on the testing of another parameter, takes precedence over the default alarms in the DefaultAlarm element. If the no context alarm evaluates to being in effect, based on the testing of another parameter, then the default alarm definitions from the DefaultAlarm element will remain in effect. If multiple contexts evaluate to being in effect, then the first one that appears will take precedence. + + + + + + + + + + + + + + An ordered collection of numeric alarms associated with a context. A context is an alarm definition on a parameter which is valid only in the case of a test on the value of other parameters. Process the contexts in list order. Used by both FloatParameterType and IntegerParameterType. See NumericContextAlarmType. + + + + + A contextual alarm definition for the parameter that uses this type that is valid when a test against the value of one or more other parameters evaluates to true. + + + + + + + A reference to an instance of a Parameter. Used when the value of a parameter is required for a calculation or as an index value. A positive value for instance is forward in time, a negative value for count is backward in time, a 0 value for count means use the current value of the parameter or the first value in a container. + + + + + + + + + + + Describes extended properties/attributes of Parameter definitions. + + + + + Optional. Normally used when the database is built in a flat, non-hierarchical format. + + + + + Optional condition that must be true for this Parameter to be valid. + + + + + When present, this set of elements describes physical address location(s) of the parameter where it is stored. Typically this is on the data source, although that is not constrained by this schema. + + + + + This time will override any Default value for TimeAssociation. + + + + + + This attribute describes the nature of the source entity for which this parameter receives a value. Implementations assign different attributes/properties internally to a parameter based on the anticipated data source. + + + + + A Parameter marked as 'readOnly' true is non-settable by users and applications/services that do not represent the data source itself. Note that a slight conceptual overlap exists here between the 'dataSource' attribute and this attribute when the data source is 'constant'. For a constant data source, then 'readOnly' should be 'true'. Application implementations may choose to implicitly enforce this. Some implementations have both concepts of a Parameter that is settable or non-settable and a Constant in different parts of their internal data model. + + + + + A Parameter marked to persist should retain the latest value through resets/restarts to the extent that is possible or defined in the implementation. The net effect is that the initial/default value on a Parameter is only seen once or when the system has a reset to revert to initial/default values. + + + + + + Describe the properties of a telemetry parameter, including its data type (parameter type). The bulk of properties associated with a telemetry parameter are in its parameter type. The initial value specified here, overrides the initial value in the parameter type. A parameter may be local, in which case its parameter type would have no data encodings. Ideally such a definition would also set data source in parameter properties to ‘local’ but the syntax does not enforce this. See BaseDataType, BaseTimeDataType, and NameReferenceType. + + + + + + + Specify additional properties for this Parameter used by the implementation of tailor the behavior and attributes of the Parameter. When not specified, the defaults on the ParameterProperties element attributes are assumed. + + + + + + Specify the reference to the parameter type from the ParameterTypeSet area using the path reference rules, either local to this SpaceSystem, relative, or absolute. + + + + + Specify as: integer data type using xs:integer, float data type using xs:double, string data type using xs:string, boolean data type using xs:boolean, binary data type using xs:hexBinary, enum data type using label name, relative time data type using xs:duration, absolute time data type using xs:dateTime. Values must not exceed the characteristics for the data type or this is a validation error. Takes precedence over an initial value given in the data type. Values are calibrated unless there is an option to override it. + The value type must match the Parameter type + + + + + + + + Describe an unordered collection of parameter type definitions. These types named for the engineering/calibrated type of the parameter. See BaseDataType and BaseTimeDataType. + + + + + Describe a parameter type that has an engineering/calibrated value in the form of a character string. + + + + + Describe a parameter type that has an engineering/calibrated value in the form of an enumeration. + + + + + Describe a parameter type that has an engineering/calibrated value in the form of an integer. + + + + + Describe a parameter type that has an engineering/calibrated value in the form of a binary (usually hex represented). + + + + + Describe a parameter type that has an engineering/calibrated value in the form of a decimal. + + + + + Describe a parameter type that has an engineering/calibrated value in the form of a boolean enumeration. + + + + + Describe a parameter type that has an engineering/calibrated value in the form of a duration in time. + + + + + Describe a parameter type that has an engineering/calibrated value in the form of an instant in time. + + + + + Describe a parameter type that has an engineering/calibrated value in the form of an array of a primitive type. + + + + + Describe a parameter type that has an engineering/calibrated value in the form of a structure of parameters of other types. + + + + + + + A reference to a Parameter. Uses Unix ‘like’ naming across the SpaceSystem Tree (e.g., SimpleSat/Bus/EPDS/BatteryOne/Voltage). To reference an individual member of an array use the zero based bracket notation commonly used in languages like C, C++, and Java. + + + + + + One or more physical addresses may be associated with each Parameter. Examples of physical addresses include a location on the spacecraft or a location on a data collection bus. + + + + + Contains the address (e.g., channel information) required to process the spacecraft telemetry streams. May be an onboard id, a mux address, or a physical location. + Contains the address (channel information) required to process the spacecraft telemetry streams + + + + + + + Describe the physical address(s) that this parameter is collected from. Examples of physical addresses include a memory location on the spacecraft or a location on a data collection bus, with the source identified with a descriptive name for the region of memory, such as RAM, Flash, EEPROM, and other possibilities that can be adapted for program specific usage. + + + + + A sub-address may be used to further specify the location if it fractionally occupies the address. Additional possibilities exist for separating partitions of memory or other address based storage mechanisms. This specification does not specify spacecraft specific hardware properties, so usage of addressing information is largely program and platform specific. + + + + + + A descriptive name for the location, such as a memory type, where this address is located. + + + + + The address within the memory location. This specification does not specify program and hardware specific attributes, such as address size and address region starting location. These are part of the spacecraft hardware properties. + + + + + + A service is a logical grouping of container and/or messages. + + + + + + + + Describes a string parameter type. Three forms are supported: fixed length, variable length and variable length using a prefix. See StringDataEncodingType and StringDataType. + + + + + + + Default alarm definitions are those which do not adjust definition logic based on the value of other parameters. Other parameters may participate in the determination of an alarm condition for this parameter, but the definition logic of the alarm on this parameter is constant. If the alarming logic on this parameter changes based on the value of other parameters, then it is a ContextAlarm and belongs in the ContextAlarmList element. + + + + + Context alarm definitions are those which adjust the definition logic for this parameter based on the value of other parameters. A context which evaluates to being in effect, based on the testing of another parameter, takes precedence over the default alarms in the DefaultAlarm element. If the no context alarm evaluates to being in effect, based on the testing of another parameter, then the default alarm definitions from the DefaultAlarm element will remain in effect. If multiple contexts evaluate to being in effect, then the first one that appears will take precedence. + + + + + + + + + Describes a relative time parameter type. Relative time parameters are time offsets (e.g. 10 second, 1.24 milliseconds, etc.) See IntegerDataEncodingType, FloatDataEncoding and RelativeTimeDataType. + + + + + + + Default alarm definitions are those which do not adjust definition logic based on the value of other parameters. Other parameters may participate in the determination of an alarm condition for this parameter, but the definition logic of the alarm on this parameter is constant. If the alarming logic on this parameter changes based on the value of other parameters, then it is a ContextAlarm and belongs in the ContextAlarmList element. + + + + + Context alarm definitions are those which adjust the definition logic for this parameter based on the value of other parameters. A context which evaluates to being in effect, based on the testing of another parameter, takes precedence over the default alarms in the DefaultAlarm element. If the no context alarm evaluates to being in effect, based on the testing of another parameter, then the default alarm definitions from the DefaultAlarm element will remain in effect. If multiple contexts evaluate to being in effect, then the first one that appears will take precedence. + + + + + + + + + A telemetered Parameter is one that will have values in telemetry. A derived Parameter is one that is calculated, usually by an Algorithm. A constant Parameter is one that is used as a constant in the system (e.g. a vehicle id). A local Parameter is one that is used purely by the software locally (e.g. a ground command counter). A ground Parameter is one that is generated by an asset which is not the spacecraft. + + + + + + + + + + + + Describes a time association consisting of an instance of an absolute time parameter (parameterRef) and this entry. Because telemetry parameter instances are oftentimes "time-tagged" with a timing signal either provided on the ground or on the space system. This data element allows one to specify which of possibly many AbsoluteTimeParameters to use to "time-tag" parameter instances with. See AbsoluteTimeParameterType. + + + + + + If true, then the current value of the AbsoluteTime will be projected to current time. In other words, if the value of the AbsoluteTime parameter was set 10 seconds ago, then 10 seconds will be added to its value before associating this time with the parameter. + + + + + The offset is used to supply a relative time offset from the time association and to this parameter + + + + + Specify the units the offset is in, the default is si_second. + + + + + + + + + + + + + + + + This schema defines the dictionary for commanding + + + + Describe an absolute time argument type relative to a known epoch (such as TAI). The string representation of this time should use the [ISO 8601] extended format CCYY-MM-DDThh:mm:ss where "CC" represents the century, "YY" the year, "MM" the month and "DD" the day, preceded by an optional leading "-" sign to indicate a negative number. If the sign is omitted, "+" is assumed. The letter "T" is the date/time separator and "hh", "mm", "ss" represent hour, minute and second respectively. Additional digits can be used to increase the precision of fractional seconds if desired i.e. the format ss.ss... with any number of digits after the decimal point is supported. See TAIType, IntegerDataEncoding and AbsoluteTimeDataType. + + + + + + + + Describe an array argument type. The size and number of dimension are described here. See ArrayParameterRefEntryType, NameReferenceType and ArrayDataType. + + + + + + + Describe the dimensions of this array. + + + + + + + + + Describe a complex data type analogous to a C-struct. Each field of the data type is called a Member. Each Member is part of the MemberList which forms the list of items to be placed under this data type’s name. The MemberList defines a data block and block’s size is defined by the DataEncodings of each Member’s type reference. The data members are ordered and contiguous in the MemberList element (packed). Each member may be addressed by the dot syntax similar to C such as P.voltage if P is the referring parameter and voltage is of a member of P’s aggregate type. See MemberType, MemberListType, DataEncodingType, NameReferenceType, and AggregateDataType. + + + + + + + + Argument Assignments specialize a MetaCommand or BlockMetaCommand when inheriting from another MetaCommand. General argument values can be restricted to specific values to further specialize the MetaCommand. Use it to ‘narrow’ a MetaCommand from its base MetaCommand by specifying values of arguments for example, a power command may be narrowed to a power on’ command by assigning the value of an argument to ‘on’. See ArgumentAssignmentType and MetaCommandType. + + + + + Specialize this command definition when inheriting from a more general MetaCommand by restricting the specific values of otherwise general arguments. + + + + + + + Describe an assignment of an argument with a calibrated/engineering value. See ArgumentAssignmentListType. + + + + The named argument from the base MetaCommand to assign/restrict with a value. + + + + + Specify value as a string compliant with the XML schema (xs) type specified for each XTCE type: integer=xs:integer; float=xs:double; string=xs:string; boolean=xs:boolean; binary=xs:hexBinary; enum=xs:string from EnumerationList; relative time=xs:duration; absolute time=xs:dateTime. Supplied value must be within the ValidRange specified for the type. + + + + + + Identical to ComparisonType but supports argument instance references. + + + + + This parameter instance is being compared to the value in the parent element using the comparison defined there also. + + + + + This argument instance is being compared to the value in the parent element using the comparison defined there also. + + + + + + Comparison operator to use with equality being the common default. + + + + + Specify as: integer data type using xs:integer, float data type using xs:double, string data type using xs:string, boolean data type using xs:boolean, binary data type using xs:hexBinary, enum data type using label name, relative time data type using xs:duration, absolute time data type using xs:dateTime. Values must not exceed the characteristics for the data type or this is a validation error. Takes precedence over an initial value given in the data type. Values are calibrated unless there is an option to override it. + + + + + + Identical to ComparisonCheckType but supports argument instance references. + + + + + + + + Left hand side parameter instance. + + + + + Left hand side argument instance. + + + + + + Comparison operator. + + + + + + + Right hand side parameter instance. Parameter is assumed to be of the same type as the comparison Argument or Parameter. + + + + + Right hand side argument instance. Argument is assumed to be of the same type as the comparison Argument or Parameter. + + + + + + Specify as: integer data type using xs:integer, float data type using xs:double, string data type using xs:string, boolean data type using xs:boolean, binary data type using xs:hexBinary, enum data type using label name, relative time data type using xs:duration, absolute time data type using xs:dateTime. Values must not exceed the characteristics for the data type or this is a validation error. Takes precedence over an initial value given in the data type. Values are calibrated unless there is an option to override it. + + + + + + + + + + Identical to ComparisonListType but supports argument instance references. + + + + + List of Comparison elements must all be true for the comparison to evaluate to true. + + + + + + + Identical to ArgumentDiscreteLookupType but supports argument instance references. + + + + + + Value to use when the lookup conditions are true. + + + + + + + + Identical to DiscreteLookupListType but supports argument instance references. + + + + + Describe a lookup condition set using discrete values from arguments and/or parameters. + + + + + + + Identical to DynamicValueType but supports argument instance references. + + + + + + Retrieve the value by referencing the value of an Argument. + + + + + Retrieve the value by referencing the value of a Parameter. + + + + + + A slope and intercept may be applied to scale or shift the value selected from the argument or parameter. + + + + + + + Identical to InputAlgorithmType but supports argument instance references. + + + + + + + The InputSet describes the list of arguments and/or parameters that should be made available as input arguments to the algorithm. + + + + + + + + + Identical to InputSetType but supports argument instance references. + + + + + Reference a parameter to serve as an input to the algorithm. + + + + + Reference an argument to serve as an input to the algorithm. + + + + + + + An argument instance is the name of an argument as the reference is always resolved locally to the metacommand. + + + + Give the name of the argument. There is no path, this is a local reference. + + + + + Typically the calibrated/engineering value is used and that is the default. + + + + + + Defines a list of Arguments for a command definition. + + + + + Defines an Argument for a command definition. Arguments are local to the MetaCommand, BlockMetaCommand, and those that inherit from the definition. + Need to ensure that the named types actually exist + + + + + + + Identical to BooleanExpressionType but supports argument instance references. + + + + + Condition elements describe a test similar to the Comparison element except that the arguments/parameters used have additional flexibility. + + + + + This element describes tests similar to the ComparisonList element except that the arguments/parameters used are more flexible. + + + + + This element describes tests similar to the ComparisonList element except that the arguments/parameters used are more flexible. + + + + + + + Identical to ANDedConditionsType but supports argument instance references. + + + + + + + Condition elements describe a test similar to the Comparison element except that the arguments/parameters used have additional flexibility for the compare. + + + + + This element describes tests similar to the ComparisonList element except that the arguments/parameters used are more flexible and the and/or for multiple checks can be specified. + + + + + + + + + Identical to ORedConditionsType but supports argument instance references. + + + + + + + Condition elements describe a test similar to the Comparison element except that the arguments/parameters used have additional flexibility for the compare. + + + + + This element describes tests similar to the ComparisonList element except that the arguments/parameters used are more flexible and the and/or for multiple checks can be specified. + + + + + + + + + Identical to MatchCriteriaType but supports argument instance references. + + + + + A simple comparison check involving a single test of an argument or parameter value. + + + + + A series of simple comparison checks with an implicit 'and' in that they all must be true for the overall condition to be true. + + + + + An arbitrarily complex boolean expression that has additional flexibility on the terms beyond the Comparison and ComparisonList elements. + + + + + An escape to an externally defined algorithm. + + + + + + + An Argument has a name and can take on values with the underlying value type described by the ArgumentTypeRef. Describe the properties of a command argument referring to a data type (argument type). The bulk of properties associated with a command argument are in its argument type. The initial value specified here, overrides the initial value in the argument type. See BaseDataType, BaseTimeDataType and NameReferenceType. + + + + + + Specify the reference to the argument type from the ArgumentTypeSet area using the path reference rules, either local to this SpaceSystem, relative, or absolute. + + + + + Specify as: integer data type using xs:integer, float data type using xs:double, string data type using xs:string, boolean data type using xs:boolean, binary data type using xs:hexBinary, enum data type using label name, relative time data type using xs:duration, absolute time data type using xs:dateTime. Values must not exceed the characteristics for the data type or this is a validation error. Takes precedence over an initial value given in the data type. Values are calibrated unless there is an option to override it. + The value type must match the Argument type + + + + + + + + Describe an unordered collection of argument type definitions. These types named for the engineering/calibrated type of the argument. See BaseDataType and BaseTimeDataType. + + + + + Describe an argument type that has an engineering/calibrated value in the form of a character string. + + + + + Describe an argument type that has an engineering/calibrated value in the form of an enumeration. + + + + + Describe an argument type that has an engineering/calibrated value in the form of an integer. + + + + + Describe an argument type that has an engineering/calibrated value in the form of a binary (usually hex represented). + + + + + Describe an argument type that has an engineering/calibrated value in the form of a decimal. + + + + + Describe an argument type that has an engineering/calibrated value in the form of a boolean enumeration. + + + + + Describe an argument type that has an engineering/calibrated value in the form of a duration in time. + + + + + Describe an argument type that has an engineering/calibrated value in the form of an instant in time. + + + + + Describe an argument type that has an engineering/calibrated value in the form of an array of a primitive type. + + + + + Describe an argument type that has an engineering/calibrated value in the form of a structure of arguments of other types. + + + + + + + When specified, a BaseMetaCommand element identifies that this MetaCommand inherits (extends) another MetaCommand. It’s required ArgumentAssignmentList narrows or this command from the parent. This is typically used when specializing a generic MetaCommand to a specific MetaCommand. See MetaCommandType. + + + + + Argument Assignments specialize a MetaCommand or BlockMetaCommand when inheriting from another MetaCommand. General argument values can be restricted to specific values to further specialize the MetaCommand. + + + + + + Reference to the MetaCommand definition that this MetaCommand extends. + + + + + + Defines a binary engineering/calibrated argument type (often called “blob type”). The binary data may be of fixed or variable length, and has an optional encoding and decoding algorithm that may be defined to transform the data between space and ground. See BinaryDataEncodingType, IntegerValueType, InputAlgorithmType, and BinaryDataType. + + + + + + + + Describe an ordered grouping of MetaCommands into a list, duplicates are valid. The block contains argument values fully specified. See MetaCommandStepListType. + + + + + + + List of the MetaCommands to include in this BlockMetaCommand. + + + + + + + + + Defines a boolean argument type which has two values only: ‘True’ (1) or ‘False’ (0). The values one and zero may be mapped to a specific string using the attributes oneStringValue and zeroStringValue. This type is a simplified form of the EnumeratedDataType. See IntegerDataEncoding and BooleanDataType. + + + + + + + + Describe an entry list for a CommandContainer which is associated with a MetaCommand. The entry list for a MetaCommand CommandContainer element operates in a similar fashion as the entry list element for a SequenceContainer element. It adds fixed value and argument entries to the entry list not present in sequence containers. See MetaCommandType, CommandContainerType and EntryListType. + + + + + Specify a Parameter to be a part of this container layout definition. + + + + + Specify a portion of a Parameter to be a part of this container layout definition. This is used when the Parameter is reported in fractional parts in the container before being fully updated. + + + + + Specify the content of another Container to be a part of this container layout definition. + + + + + Specify a portion of another Container to be a part of this container layout definition. + + + + + Specify a portion of a Stream to be a part of this container layout definition. + + + + + Specify a previous (not last reported) value of a Parmeter to be a part of this container layout definition. + + + + + Specify an Array Type Parameter to be a part of this container layout definition when the Container does not populate the entire space of the Array contents. If the entire space of the Array is populated, a tolerant implementation will accept ParameterRefEntry also. + + + + + Specify an Argument to be a part of this container layout definition. + + + + + Specify an Array Type Argument to be a part of this container layout definition when the Container does not populate the entire space of the Array contents. If the entire space of the Array is populated, a tolerant implementation will accept ArgumentRefEntry also. + + + + + Specify an immutable value to be a part of this container layout definition. + + + + + + + Contains an unordered Set of Command Containers + + + + + + + + Describe a MetaCommand command container. The command container may contain arguments, parameters, other basic containers, and fixed values. Arguments are supplied by the user of a commanding application; parameters are supplied by the controlling system. Parameters and arguments map source data types to encodings. See MetaCommandType. + + + + + + + List of item entries to pack/encode into this container definition. + + + + + When a MetaCommand inherits/extends another MetaCommand, this references the CommandContainer from the BaseMetaCommand. + + + + + + + + + A command verifier is used to check that the command has been successfully executed. Command Verifiers may be either a Custom Algorithm or a Boolean Check or the presence of a Container for a relative change in the value of a Parameter. The CheckWindow is a time period where the verification must test true to pass. + + + + + + + + Verification is a list of comparisons. + + + + + Verification is a new instance of the referenced container. For example, sending a command to download memory then receiving a packet with the memory download would be verified upon receipt of the packet. + + + + + Verification is a telemetry parameter value change on the ground. For example, a command counter. + + + + + Verification is outside the scope of regular command and telemetry processing. + + + + + Verification is a boolean expression of conditions. + + + + + Verification is a single comparison. + + + + + + + Define a time window for checking for verification. + + + + + Define a time window algorithmically for verification. + + + + + + + + + + Describes an enumerated argument type. The enumeration list consists of label/value pairs. See EnumerationListType, IntegerDataEncodingType and EnumeratedDataType. + + + + + + + + Describe a floating point argument type. Several encodings are supported. Calibrated integer to float relationships should be described with this data type. Use the data encoding to define calibrators. Joins integer as one of the numerics. See FloatDataEncodingType, IntegerDataEncodingType and FloatDataType. + + + + + + + Provides additional platform/program specific ranging information. + + + + + + + + + Describes an integer argument type. Several encodings supported. Calibrated integer to integer relationships should be described with this data type. Use the integer data encoding to define calibrators. Joins float as one of the numerics. See IntegerDataEncoding and IntegerDataType. + + + + + + + Provides additional platform/program specific ranging information. + + + + + + + + + Describes an unordered collection of command definitions. Duplicates are invalid based on the name attribute of MetaCommand and BlockMetaCommand. See MetaCommandType and BlockMetaCommandType. + + + + + All atomic commands to be sent on this mission are listed here. In addition this area has verification and validation information. + + + + + + + + + Used to include a MetaCommand defined in another sub-system in this sub-system. + + + + + Used to define a command that includes more than one atomic MetaCommand definition. + + + + + + + Describe the list of MetaCommand definitions that form the block command. Contains an ordered list of MetaCommandSteps where each step is a MetaCommand with associated arguments, duplicates are valid. See BlockMetaCommandType. + + + + + A MetaCommand with specific specified argument values to include in the BlockMetaCommand. + + + + + + + Describe a MetaCommand step, consisting MetaCommand reference and argument list. See MetaCommandStepListType and NameReferenceType. + + + + + + + + + Describe a command which consists of an abstract portion (MetaCommand) and an optional packaging portion (MetaCommand CommandContainer). An argument list is provided. MetaCommand may extend other MetaCommands and their CommandContainer may extend other CommandContainer or SequenceContainers. A MetaCommand’s CommandContainer is private except as referred to in BaseMetaCommand (they are not visible to other containers and cannot be used in an entry list). MetaCommands may also define various other behavioral aspects of a command such as command verifiers. See CommandContainerType, ArgumentListType, BaseMetaCommandType and BaseContainerType. + + + + + + + Optional inheritance for this MetaCommand from another named MetaCommand. + + + + + Optional. Normally used when the database is built in a flat, non-hierarchical format. May be used by implementations to group MetaCommands together. + + + + + Many commands have one or more options. These are called command arguments. Command arguments may be of any of the standard data types. MetaCommand arguments are local to the MetaCommand, but may be referenced in inherited MetaCommand definitions, generally to apply Argument Assignments to the values. + + + + + Tells how to package/encode this command definition in binary form. + + + + + List of constraints to check when sending this command. + + + + + Some Command and Control Systems may require special user access or confirmations before transmitting commands with certain levels. The level is inherited from the Base MetaCommand. + + + + + Some Command and Control Systems may require special user access or confirmations before transmitting commands with certain levels. In addition to the default, Significance can be defined in contexts where it changes based on the values of parameters. + + + + + An Interlock is a type of Constraint, but not on Command instances of this MetaCommand; Interlocks apply instead to the next command. An Interlock will block successive commands until this command has reached a certain stage (through verifications). Interlocks are scoped to a SpaceSystem basis. + + + + + Functional list of conditions/changes to check after sending this command to determine success or failure. + + + + + List of parameters to set new values upon completion of sending this command. + + + + + List of parameters to suspend alarm processing/detection upon completion of sending this command. + + + + + + Abstract MetaCommand definitions that are not instantiated, rather only used as bases to inherit from to create specialized command definitions. + + + + + + + + Describes a relative time argument type. Relative time parameters are time offsets (e.g. 10 second, 1.24 milliseconds, etc.) See IntegerDataEncodingType, FloatDataEncoding and RelativeTimeDataType. + + + + + + + + Significance provides some cautionary information about the potential consequence of each MetaCommand. + + + + If none is supplied, then the current SpaceSystem is assumed to be the one at risk by the issuance of this command + + + + + + + + Describes a string parameter type. Three forms are supported: fixed length, variable length and variable length using a prefix. See StringDataEncodingType and StringDataType. + + + + + + + + + + A verifier that means the SpaceSystem has accepted the command + + + + + + + + Used by CommandVerifiers to limit the time allocated to check for the verification. See CheckWindowAlgorithmsType. + + + + + + + + Used by CommandVerifiers to limit the time allocated to check for the verification. See CommandVerifierType. + + + + + + + + + A possible set of verifiers that all must be true for the command be considered completed. + + + + + + + + + + + + Describe a significance level for a MetaCommand definition where the significance level depends on matching a context value. See ContextMatchType and SignificanceType. + + + + + Describe the context matching value and source that will enable the Significance listed in the Significance element. + + + + + Describe the signficance of this MetaCommand definition. See SignificanceType. + + + + + + + Describe an ordered list of ContextSignificance elements where the significance on the first context match to test true is used as the significance of the MetaCommand. If there is a DefaultSignificance, it is overrideen by the matching context. See ContextSignificantType and MetaCommandType. + + + + + Describe a significance level for a MetaCommand definition where the significance level depends on matching a context value. See ContextMatchType and SignificanceType. + + + + + + + A verifier that indicates that the command is being executed. An optional Element indicates how far along the command has progressed either as a fixed value or an (possibly scaled) ParameterInstance value. + + + + + + + + + + + + When true, indicates that the command failed. timeToWait is how long to wait for the FailedVerifier to test true. + + + + + + + + + + + + Describe a type of constraint on the next command, rather than this command. Interlocks apply only to the next command. An interlock will block successive commands until this command has reached a certain stage of verifier. Interlocks are scoped to a SpaceSystem basis: they by default apply to the SpaceSystem the MetaCommand is defined in but this may be overridden. See MetaCommandType and VerifierSetType. + + + + The name of a SpaceSystem this Interlock applies to. By default, it only applies to the SpaceSystem that contains this MetaCommand. + + + + + The verification stage of the command that releases the interlock, with the default being complete. + + + + + Only applies when the verificationToWaitFor attribute is 'queued' or 'executing'. + + + + + A flag that indicates that under special circumstances, this Interlock can be suspended. + + + + + + Sets a Parameter to a new value (either from a derivation or explicitly) after the command has been verified (all verifications have passed). + Value type must match Parameter type. + + + + + + + Specify a MathOperation to use to set the Parameter value. See MathOperationType. + + + + + Specify value as a string compliant with the XML schema (xs) type specified for each XTCE type: integer=xs:integer; float=xs:double; string=xs:string; boolean=xs:boolean; binary=xs:hexBinary; enum=xs:string from EnumerationList; relative time= xs:duration; absolute time=xs:dateTime. Supplied value must be within the ValidRange specified for the Parameter and appropriate for the type. + + + + + + This attribute provides more specific control over when the Parameter value is set. By default, it is when the command have all verifications complete. See VerifierEnumerationType. + + + + + + + + Parameters that are set with a new value after the command has been sent. Appended to the Base Command list + + + + + + + + Will suspend all Alarms associated with this Parameter for the given suspense time after the given verifier + + + + + + + + + + + Sometimes it is necessary to suspend alarms - particularly 'change' alarms for commands that will change the value of a Parameter + + + + + + + + A parameter change in value or specified delta change in value. + + + + + + + + + A verifer that means the command is scheduled for execution by the SpaceSystem. + + + + + + + + A verifier that simply means the SpaceSystem has received the command. + + + + + + + + Sent from range means the command has been transmitted to the spacecraft by the network that connects the ground system to the spacecraft. Obviously, this verifier must come from something other than the spacecraft. + + + + + + + + Time units the time association decimal value is in. + + + + + + + + + + + + + + Transferred to range means the command has been received to the network that connects the ground system to the spacecraft. Obviously, this verifier must come from something other than the spacecraft. + + + + + + + + A CommandTransmission constraint is used to check that the command can be run in the current operating mode and may block the transmission of the command if the constraint condition is true. + + + + + + Pause during timeOut, fail when the timeout passes + + + + + + Indicates whether the constraints for a Command may be suspended. + + + + + + + + Appended to the TramsmissionConstraint List of the base command. Constraints are checked in order. + + + + + + + + An enumerated list of verifier types + + + + + + + + + + + + + + + + Describe a collection of unordered verifiers. A command verifier is a conditional check on the telemetry from a SpaceSystem that that provides positive indication on the processing state of a command. There are eight different verifiers each associated with difference states in command processing: TransferredToRange, TransferredFromRange, Received, Accepted, Queued, Execution, Complete, and Failed. There may be multiple ‘complete’ and 'execution' verifiers. If the MetaCommand is part of an inheritance relation (BaseMetaCommand), the 'complete' and 'execution' verifier sets are appended to any defined in the parent MetaCommand. All others will override a verifier defined in a BaseMetaCommand. Duplicate verifiers in the list of CompleteVerifiers and ExecutionVerifiers before and after appending to the verifiers in BaseMetaCommand should be avoided. See MetaCommandType and BaseMetaCommandType for additional information. + + + + + + + + + + + + + + + + + This schema defines the structure for an Algorithm. An Algorithm may be one of a growing set of pre-defined algorithms or a named escape into a user defined algorithm where (depending on the system) the name of the algorithm may be a java class, a function in a shared library, an external program or some other reference to an outside algorithm. At some later date, this schema may also allow the logic of the user defined algorithm to be defined within the instance document itself (perhaps using MathML?). + + + + This optional element may be used to enter Pseudo or actual code for the algorithm. The language for the algorithm is specified with the language attribute + + + + + + + + + + A base type for the various triggers, purely to improve the mappings created by data binding compilers. + + + + + Describe checksum information. + + + + + Assumed to return the computed checksum. + + + + + + + + Qualified list of name checksum algorithms. If custom is chosen, InputAlgorithm must be set. + + + + + + + + + + + + + + + + + + + Document a custom checksum algorithm + + + + + + + + + + Names and provides a value for a constant input to the algorithm. There are two attributes to Constant, constantName and value. constantName is a variable name in the algorithm to be executed. value is the value of the constant to be used. + + + + + + + Describe an ordered list of calibrators with a context match. Useful when different calibrations must be used depending on a matching value. The first context that matches determines which calibrator to use. See IntegerDataEncodingType and FloatDataEncodingType. + + + + + Describe a calibrator that depends on a matching value using a ContextMatch. When the context matches for the calibrator, the default calibrator is overridden, if it exists. + + + + + + + This is the external algorithm. Multiple entries are provided so that the same database may be used for multiple implementation s + + + + + + + + + + + + A set of labeled inputs is added to the SimpleAlgorithmType + + + + + + + The InputSet describes the list of parameters that should be made available as input arguments to the algorithm. + + + + + + + + + A set of labeled outputs are added to the SimpleInputAlgorithmType + + + + + + + + + + + + + Input output algorithm is extended with a set of labeled triggers. See InputOutputAlgorithmType. + + + + + + + + + First telemetry container from which the output parameter should be calculated. + + + + + Algorithm processing priority. If more than one algorithm is triggered by the same container, the lowest priority algorithm should be calculated first. + + + + + + + + Names an input parameter to the algorithm. There are two attributes to InputParm, inputName and parameterName. parameterName is a parameter reference name for a parameter that will be used in this algorithm. inputName is an optional "friendly" name for the input parameter. + + + + + + + + + + + + + + + + Describe a postfix (Reverse Polish Notation (RPN)) notation based mathmatical equations. See MathOperationType. + + + + + + + The contents of the Math Operation as an algorithm definition in RPN. See TriggeredMathOperationType. + + + + + + + + + Describe a reference to container that triggers an event when the telemetry container referred to is updated (processed). See TriggerSetType. + + + + + + Reference to the Container whose update/receipt triggers this algorithm to evaluate. + + + + + + + + Describe a periodic time basis to trigger an event. See TriggerSetType. + + + + + + The periodic rate in time in which this algorithm is triggered to evaluate. + + + + + + + + Describe a reference to parameter that triggers an event when the telemetry parameter referred to is updated (processed) with a new value. See TriggerSetType. + + + + + + Reference to the Parameter whose update triggers this algorithm to evaluate. + + + + + + + + Names an output parameter to the algorithm. There are two attributes to OutputParm, outputName and parameterName. parameterName is a parameter reference name for a parameter that will be updated by this algorithm. outputName is an optional "friendly" name for the output parameter. + + + + + + + + + + + + + + + The simplest form of algorithm, a SimpleAlgorithmType contains an area for a free-form pseudo code description of the algorithm plus a Set of references to external algorithms. External algorithms are usually unique to a ground system type. Multiple external algorithms are possible because XTCE documents may be used across multiple ground systems. + + + + + + + + + + + + + + + + + + + + + + + A trigger is used to initiate the processing of some algorithm. A trigger may be based on an update of a Parameter, receipt of a Container, or on a time basis. Triggers may also have a maximum rate that limits how often the trigger can be invoked. + + + + + This element instructs the trigger to invoke the algorithm evaluation when a Parameter update is received. + + + + + This element instructs the trigger to invoke the algorithm evaluation when a Container is received. + + + + + This element instructs the trigger to invoke the algorithm evaluation using a timer. + + + + + + Triggers may optionally be named. + + + + + This attribute is a maximum rate that constrains how quickly this trigger may evaluate the algorithm to avoid flooding the implementation. The default is once per second. Setting to 0 results in no maximum. + + + + + + + + Supplies an optional non-reference-able name and short description for calibrators. Also includes an optional ancillary data for any special local flags, note that these may not necessarily transfer to another recipient of an instance document. + + + + + Optional additional ancillary information for this calibrator/algorithm + + + + + + Optional name for this calibrator/algorithm + + + + + Optional description for this calibrator/algorithm + + + + + + Describe a calibrator to transform a source data type raw/uncalibrated value (e.g. an integer count from a spacecraft) to an engineering unit/calibrated value for users (e.g. a float). + + + + + + + Describes a calibrator in the form of a piecewise defined function + + + + + Describes a calibrator in the form of a polynomial function + + + + + Describes a calibrator in the form of a user/program/implementation defined function + + + + + + + + + Describe a change value used to test verification status. See CommandVerifierType. + + + + Value as a floating point number. + + + + + + Describe a mathematical function for calibration where the mathematical function is defined using the MathOperationType. + + + + + + Describe a postfix (aka Reverse Polish Notation (RPN)) expression for mathematical equations. It uses a stack where operands (either fixed values or ParameterInstances) are pushed onto the stack from first to last in the XML. As the operators are specified, each pops off operands as it evaluates them, and pushes the result back onto the stack. For example, the stack, 4 8 /, would result as 0.5. In this case postfix is used to avoid having to specify parenthesis. To convert from infix to postfix, use Dijkstra's "shunting yard" algorithm. + + + + Use a constant in the calculation. + + + + + Use the value of this parameter in the calculation. It is the calibrator's value only. If the raw value is needed, specify it explicitly using ParameterInstanceRefOperand. Note this element has no content. + + + + + All operators utilize operands on the top values in the stack and leaving the result on the top of the stack. Ternary operators utilize the top three operands on the stack, binary operators utilize the top two operands on the stack, and unary operators use the top operand on the stack. + + + + + This element is used to reference the last received/assigned value of any Parameter in this math operation. + + + + + + + + + Describe a polynomial equation for calibration. This is a calibration type where a curve in a raw vs calibrated plane is described using a set of polynomial coefficients. Raw values are converted to calibrated values by finding a position on the curve corresponding to the raw value. The first coefficient belongs with the X^0 term, the next coefficient belongs to the X^1 term and so on. See CalibratorType. + + + + + + + A single term in the polynomial function. + Generally only up to second order powers are reflexive. Implementations may limit the maximum number of terms supported. + + + + + + + + + Describe a spline function for calibration using a set of at least 2 points. Raw values are converted to calibrated values by finding a position on the line corresponding to the raw value. The line may be interpolated and/or extrapolated as needed. The interpolation order may be specified for all the points and overridden on individual points. The algorithm triggers on the input parameter. See CalibratorType. + + + + + + + Describes a single point of the spline or piecewise function. + + + + + + The interpolation order to apply to the overall spline function. Order 0 is no slope between the points (flat). Order 1 is linear interpolation. Order 2 would be quadratic and in this special case, 3 points would be required, etc. + + + + + Extrapolation allows the closest outside point and the associated interpolation to extend outside of the range of the points in the spline function. + + + + + + + + + + This schema provides a language for defining binary stream data. + + + + After searching for the frame sync marker for some number of bits, it may be desirable to invert the incoming data, and then look for frame sync. In some cases this will require an external algorithm + + + + + + + + + A stream type where some level of custom processing (e.g. convolutional, encryption, compression) is performed. Has a reference to external algorithms for encoding and decoding algorithms. + Must check to ensure that the attributes encodedStreamRef and decodedStreamRef point to valid Streams + + + + + + + + Algorithm outputs may be used to set decoding quality parameters. + + + + + + + + + + + + + + + + + The pattern of bits used to look for frame synchronization. + + + + + + + The top level type definition for all data streams that are frame based. + + + + + + + + This Container (usually abstract) is the container that is in the fixed frame stream. Normally, this is a general container type from which many specific containers are inherited. + + + + + + + This is a reference to a connecting stream - say a custom stream. + + + + + + + + + For streams that contain a series of frames with a fixed frame length where the frames are found by looking for a marker in the data. This marker is sometimes called the frame sync pattern and sometimes the Asynchronous Sync Marker (ASM). This marker need not be contiguous although it usually is. + + + + + + + + + Allowed slip (in bits) in either direction for the sync pattern + + + + + + + + + Describe a sync pattern and an optional reference to an algorithm used to invert the stream if the frame sync pattern is not found. See FixedFrameStreamType. + + + + + + + The pattern of bits used to look for frame synchronization. See SyncPatternType. + + + + + + + + + A PCM Stream Type is the high level definition for all Pulse Code Modulated (PCM) (i.e., binary) streams. + + + + + + + + + + + + + + + + + + + + + + Holds a reference to a stream + + + + name of reference stream + + + + + + Contains an unordered set of Streams. + + + + + + + + + + A Sync Strategy specifies the strategy on how to find frames within a stream of PCM data. The sync strategy is based upon a state machine that begins in the 'Search' state until the first sync marker is found. Then it goes into the 'Verify' state until a specified number of successive good sync markers are found. Then, the state machine goes into the 'Lock' state, in the 'Lock' state frames are considered good. Should a sync marker be missed in the 'Lock' state, the state machine will transition into the 'Check' state, if the next sync marker is where it's expected within a specified number of frames, then the state machine will transition back to the 'Lock' state, it not it will transition back to 'Search'. + + + + + + + + + Maximum number of bit errors in the sync pattern (marker). + + + + + + The pattern of bits used to look for frame synchronization. + + + + CCSDS ASM for non-turbocoded frames = 1acffc1d + + + + + + + truncate the mask from the left + + + + + truncate the pattern from the left + + + + + + For streams that contain a series of frames with a variable frame length where the frames are found by looking for a series of one's or zero's (usually one's). The series is called the flag. in the PCM stream that are usually made to be illegal in the PCM stream by zero or one bit insertion. + + + + + + + + + + + + + + + + + + + + + + + + A base schema type for describing an absolute time data type. Contains an absolute (to a known epoch) time. Use the [ISO 8601] extended format CCYY-MM-DDThh:mm:ss where "CC" represents the century, "YY" the year, "MM" the month and "DD" the day, preceded by an optional leading "-" sign to indicate a negative number. If the sign is omitted, "+" is assumed. The letter "T" is the date/time separator and "hh", "mm", "ss" represent hour, minute and second respectively. Additional digits can be used to increase the precision of fractional seconds if desired i.e. the format ss.ss... with any number of digits after the decimal point is supported. See AbsoluteTimeParameterType and AbsoluteTimeArgumentType. See AbsouteTimeParameterType, AbsoluteTimeArgumentType and BaseTimeDataType. + + + + + + Default/Initial value is always given in calibrated form. + + + + + + + + A base schema type for describing an absolute time data type. Contains an absolute (to a known epoch) time. Use the [ISO 8601] extended format CCYY-MM-DDThh:mm:ss where "CC" represents the century, "YY" the year, "MM" the month and "DD" the day, preceded by an optional leading "-" sign to indicate a negative number. If the sign is omitted, "+" is assumed. The letter "T" is the date/time separator and "hh", "mm", "ss" represent hour, minute and second respectively. Additional digits can be used to increase the precision of fractional seconds if desired i.e. the format ss.ss... with any number of digits after the decimal point is supported. See AbsoluteTimeParameterType and AbsoluteTimeArgumentType. See AbsouteTimeParameterType, AbsoluteTimeArgumentType and BaseTimeDataType. + + + + + + Default/Initial value is always given in calibrated form. + + + + + + + + A base schema type for describing a complex data type analogous to a C-struct. Each field of the data type is called a Member. Each Member is part of the MemberList which forms the list of items to be placed under this data type’s name. The MemberList defines a data block and block’s size is defined by the DataEncodings of each Member’s type reference. The data members are ordered and contiguous in the MemberList element (packed). Each member may be addressed by the dot syntax similar to C such as P.voltage if P is the referring parameter and voltage is of a member of P’s aggregate type. See MemberType, MemberListType, DataEncodingType, NameReferenceType, AggregateParameterType and AggregateArgumentType. + + + + + + + Ordered list of the members of the aggregate/structure. Members are contiguous. + + + + + + + + + A base schema type for describing an array data type. The number of and size of each dimension is defined in its two child types. See NameReferenceType, ArrayArgumentType and ArrayParameterType. + + + + + + Reference to the data type that represents the type of the elements for this array. + + + + + + + + An abstract schema type used by within the schema to derive the other simple/primitive engineering form data types: BooleanDataType, BinaryDataType, StringDataType, EnumeratedDataType, FloatDataType and IntegerDataType. The encoding elements are optional because they describe the raw wire encoded form of the data type. Encoding is only necessary when the type is telemetered in some form. Local variables and derived typically do not require encoding. + + + + + + + When appropriate, describe the units of measure that are represented by this parameter value. + + + + + + Binary encoding is typically a "pass through" raw encoding form where one of the more common encodings is not required for the parameter. A custom transformation capability is available if needed. + + + + + Float encoding is a common encoding where the raw binary is in a form that gets interpreted as a decimal numeric value. + + + + + Integer encoding is a common encoding where the raw binary is in a form that gets interpreted as an integral value, either signed or unsigned. + + + + + String encoding is a common encoding where the raw binary is in a form that gets interpreted as a character sequence. + + + + + + + Must be derived from a like type (e.g,, String from String). No circular derivations. + Used to derive one Data Type from another - will inherit all the attributes from the baseType any of which may be redefined in this type definition. + + + + + + + + Identical to BaseDataType but supports argument instance references. + + + + + + + When appropriate, describe the units of measure that are represented by this argument value. + + + + + + Binary encoding is typically a "pass through" raw encoding form where one of the more common encodings is not required for the argument. A custom transformation capability is available if needed. + + + + + Float encoding is a common encoding where the raw binary is in a form that gets interpreted as a decimal numeric value. + + + + + Integer encoding is a common encoding where the raw binary is in a form that gets interpreted as an integral value, either signed or unsigned. + + + + + String encoding is a common encoding where the raw binary is in a form that gets interpreted as a character sequence. + + + + + + + Must be derived from a like type (e.g,, String from String). No circular derivations. + Used to derive one Data Type from another - will inherit all the attributes from the baseType any of which may be redefined in this type definition. + + + + + + + + Identical to BaseTimeDataType but supports argument instance references. + + + + + + + Describes how the raw base counts of the time type are encoded/decoded. + + + + + Describes origin (epoch or reference) of this time type. + + + + + + Extend another absolute or relative time type. + + + + + + + + An abstract schema type used within the schema to derive other time based data types: RelativeTimeDataType and AbsoluteTimeDataType. An absolute time data type is a telemetered source/destination data type. A data encoding must be set. An optional epoch may be set. Time types are an exception to other primitives because, if the time data type is not telemetered, it still must have a data encoding set. See DataEncodingType, AbsoluteTimeDataType and RelativeTimeDataType. + + + + + + + Describes how the raw base counts of the time type are encoded/decoded. + + + + + Describes origin (epoch or reference) of this time type. + + + + + + Extend another absolute or relative time type. + + + + + + + + Identical to BinaryDataType but supports argument instance references. + + + + + + Default/Initial value is always given in calibrated form. Extra bits are truncated from the MSB (leftmost). + + + + + + + + A base schema type for describing a binary data engineering/calibrated type (often called “blob type”). The binary data may be of fixed or variable length, and has an optional encoding and decoding algorithm that may be defined to transform the data between space and ground. See BaseDataType, BinaryParameterType and BinaryArgumentType. + + + + + + Default/Initial value is always given in calibrated form. Extra bits are truncated from the MSB (leftmost). + + + + + + + + Identical to BooleanDataType but supports argument instance references. + + + + + + Initial value must match either the oneStringValue or the zeroStringValue + Default/Initial value is always given in calibrated form. + + + + + Enumeration string representing the 1 value, with the default being 'True'. + + + + + Enumeration string representing the 0 value, with the default being 'False'. + + + + + + + + A base schema type for describing a boolean data type which has two values only: ‘True’ (1) or ‘False’ (0). The values one and zero may be mapped to a specific string using the attributes oneStringValue and zeroStringValue. This type is a simplified form of the EnumeratedDataType. See BaseDataType, BooleanParameterType and BooleanArgumentType. + + + + + + Initial value must match either the oneStringValue or the zeroStringValue + Default/Initial value is always given in calibrated form. + + + + + Enumeration string representing the 1 value, with the default being 'True'. + + + + + Enumeration string representing the 0 value, with the default being 'False'. + + + + + + + + For partial entries of an array, the starting and ending index for each dimension, OR the Size must be specified. Indexes are zero based. + + + + + zero based index + + + + + + + + Identical to DimensionType but supports argument instance references. + + + + + zero based index + + + + + + + + Where the Dimension list is in this form: Array[1stDim][2ndDim][lastDim]. The last dimension is assumed to be the least significant - that is this dimension will cycle through its combination before the next to last dimension changes. The order MUST ascend or the array will need to be broken out entry by entry. + + + + + For an ArrayParameterType of size N, their should be N Dimensions + An array made up by multiple Entries should not have indexes that overlap, but should be continuous. + + + + + + + Identical to DimensionListType but supports argument instance references. + + + + + For an ArrayParameterType of size N, their should be N Dimensions + An array made up by multiple Entries should not have indexes that overlap, but should be continuous. + + + + + + + Identical to EnumeratedDataType but supports argument instance references. + + + + + + + Unordered list of label/value pairs where values cannot be duplicated. + Check that values do not overlap in the mappings. + + + + + + Default/Initial value is always given in calibrated form. Use the label, it must be in the enumeration list to be valid. + Label must be in the enumeration list to be valid. + + + + + + + + Describes an enumerated parameter type. The enumeration list consists of label/value pairs. See EnumerationListType, EnumeratedParameterType and EnumeratedArgumentType. + + + + + + + Unordered list of label/value pairs where values cannot be duplicated. + Check that values do not overlap in the mappings. + + + + + + Default/Initial value is always given in calibrated form. Use the label, it must be in the enumeration list to be valid. + Label must be in the enumeration list to be valid. + + + + + + + + + + + + + Identical to FloatDataType but supports argument instance references. + + + + + + + This element provides the implementation with assistance rendering the value as a string for users. + + + + + + Default/Initial value is always given in calibrated form. + + + + + Optional hint to the implementation about the size of the engineering/calibrated data type to use internally. Generally this can be determined by examination of the space required to capture the full range of the encoding, but it is not always clear when calibrators are in use. A tolerant implementation will endeavor to always make sufficient size engineering data types to capture the entire range of possible values. + + + + + + + + A base schema type for describing a floating point engineering/calibrated data type. Several encodings are supported. Calibrated integer to float relationships should be described with this data type. Use the data encoding to define calibrators. Joins integer as one of the numerics. See BaseDataType, FloatParameterType and FloatArgumentType. + + + + + + + This element provides the implementation with assistance rendering the value as a string for users. + + + + + The Valid Range provides additional boundary/constraint information beyond that of the data encoding in the range of possible values that are meaningful to this parameter. Not to be construed as an alarm definition, violations of the valid range make a parameter value "unreasonable", as opposed to reasonable to be reported, but in a state which should be of concern. + + + + + + + By default and general recommendation, the valid range is specified in engineering/calibrated values, although this can be adjusted. + + + + + + + + + + Initial value is always given in calibrated form + + + + + Optional hint to the implementation about the size of the engineering/calibrated data type to use internally. Generally this can be determined by examination of the space required to capture the full range of the encoding, but it is not always clear when calibrators are in use. A tolerant implementation will endeavor to always make sufficient size engineering data types to capture the entire range of possible values. + + + + + + + + Identical to IntegerDataType but supports argument instance references. + + + + + + + This element provides the implementation with assistance rendering the value as a string for users. + + + + + + Default/Initial value is always given in calibrated form. Default is base 10 form; binary, octal, or hexadecimal values may be given by preceding value with 0[b|B], 0[o|O|, 0[x|X] respectively. + + + + + Optional hint to the implementation about the size of the engineering/calibrated data type to use internally. Generally this can be determined by examination of the space required to capture the full range of the encoding, but it is not always clear when calibrators are in use. A tolerant implementation will endeavor to always make sufficient size engineering data types to capture the entire range of possible values. + + + + + Flag indicating if the engineering/calibrated data type used should support signed representation. This should not be confused with the encoding type for the raw value. The default is true. + + + + + + + + Describe an integer engineering/calibrated data type. Several encodings are supported. See BaseDataType, IntegerParameterType and IntegerArgumentType. + + + + + + + This element provides the implementation with assistance rendering the value as a string for users. + + + + + The Valid Range provides additional boundary/constraint information beyond that of the data encoding in the range of possible values that are meaningful to this parameter. Not to be construed as an alarm definition, violations of the valid range make a parameter value "unreasonable", as opposed to reasonable to be reported, but in a state which should be of concern. + + + + + + + By default and general recommendation, the valid range is specified in engineering/calibrated values, although this can be adjusted. + + + + + + + + + + Default/Initial value is always given in calibrated form. Default is base 10 form; binary, octal, or hexadecimal values may be given by preceding value with 0[b|B], 0[o|O|, 0[x|X] respectively. + + + + + Optional hint to the implementation about the size of the engineering/calibrated data type to use internally. Generally this can be determined by examination of the space required to capture the full range of the encoding, but it is not always clear when calibrators are in use. A tolerant implementation will endeavor to always make sufficient size engineering data types to capture the entire range of possible values. + + + + + Flag indicating if the engineering/calibrated data type used should support signed representation. This should not be confused with the encoding type for the raw value. The default is true. + + + + + + + + Describe a member field in an AggregateDataType. Each member has a name and a type reference to a data type for the aggregate member name. If this aggregate is a Parameter aggregate, then the typeRef is a parameter type reference. If this aggregate is an Argument aggregate, then the typeRef is an argument type reference. References to an array data type is currently not supported. Circular references are not allowed. See MemberListType. AggregateParameterType and AggregateArgumentType. + ensure no circular references + + + + + + + Used to set the initial calibrated values of Parameters. Will overwrite an initial value defined for the ParameterType. For integer types base 10 (decimal) form is assumed unless: if proceeded by a 0b or 0B, value is in base two (binary form, if proceeded by a 0o or 0O, values is in base 8 (octal) form, or if proceeded by a 0x or 0X, value is in base 16 (hex) form. Floating point types may be specified in normal (100.0) or scientific (1.0e2) form. Time types are specified using the ISO 8601 formats described for XTCE time data types. Initial values for string types, may include C language style (\n, \t, \", \\, etc.) escape sequences. + The value type must match the Parameter type + + + + + + + + Order is important only if the name of the AggregateParameter or Aggregate Argument is directly referenced in SequenceContainers. In this case the members are assued to be added sequentially (in the order listed here) into the Container. + + + + + + + + Used to contain a relative time value. Used to describe a relative time. Normally used for time offsets. A Relative time is expressed as PnYn MnDTnH nMnS, where nY represents the number of years, nM the number of months, nD the number of days, 'T' is the date/time separator, nH the number of hours, nM the number of minutes and nS the number of seconds. The number of seconds can include decimal digits to arbitrary precision. For example, to indicate a duration of 1 year, 2 months, 3 days, 10 hours, and 30 minutes, one would write: P1Y2M3DT10H30M. One could also indicate a duration of minus 120 days as: -P120D. An extension of Schema duration type. + + + + + + + + + + Used to contain a relative time value. Used to describe a relative time. Normally used for time offsets. A Relative time is expressed as PnYn MnDTnH nMnS, where nY represents the number of years, nM the number of months, nD the number of days, 'T' is the date/time separator, nH the number of hours, nM the number of minutes and nS the number of seconds. The number of seconds can include decimal digits to arbitrary precision. For example, to indicate a duration of 1 year, 2 months, 3 days, 10 hours, and 30 minutes, one would write: P1Y2M3DT10H30M. One could also indicate a duration of minus 120 days as: -P120D. An extension of Schema duration type. + + + + + + + + + + Identical to StringDataType but supports argument instance references. + + + + + + + + + Initial values for string types, may include C language style (\n, \t, \", \\, etc.) escape sequences. + + + + + restriction pattern is a regular expression + + + + + + + + + Defines a base schema type for StringParameterType and StringArgumentType, adding initial value, restriction pattern, character width, and size range in characters. The initial value if set is the initial value of all instances of the child types. The restriction pattern is a regular expression enforcing the string value to this pattern. The character width is on the local data type side. And the size range in character restricts the character set. For telemetered values, if the restriction pattern of size range in character is not met, the item is invalid. See BaseDataType, StringParameterType, StringArgumentType, CharacterWidthType and IntegerRangeType. + + + + + + + The size in bits may be greater than or equal to minInclusive. It may be less than or equal to maxInclusive. They both may be set indicating a closed range. + + + + + + Initial values for string types, may include C language style (\n, \t, \", \\, etc.) escape sequences. + + + + + restriction pattern is a regular expression + + + + + + + + + Describe an ordered collection of units that form a unit-expression. Units may be described for both calibrated/engineering values and also potentially uncalibrated/raw values. See UnitType. + + + + + Describe the exponent, factor, form, and description for a unit. The attributes are optional because different programs use this element in different ways, depending on vendor support. + + + + + + + Numerical ranges that define the universe of valid values for this argument. A single range is the most common, although it is possible to define multiple ranges when the valid values are not contiguous. + + + + + A valid range constrains the whole set of possible values that could be encoded by the data type to a more "valid" or "reasonable" set of values. This should be treated as a boundary check in an implementation to validate the input or output value. Typically, only 1 range is used. In cases where multiple ranges are used, then the value is valid when it is valid in any of the provided ranges. Implementations may also use these ranges to enhance user interface displays and other visualization widgets as appropriate for the type. + + + + + + By default and general recommendation, the valid range is specified in engineering/calibrated values, although this can be adjusted. + + + + + + Numerical ranges that define the universe of valid values for this argument. A single range is the most common, although it is possible to define multiple ranges when the valid values are not contiguous. + + + + + A valid range constrains the whole set of possible values that could be encoded by the data type to a more "valid" or "reasonable" set of values. This should be treated as a boundary check in an implementation to validate the input or output value. Typically, only 1 range is used. In cases where multiple ranges are used, then the value is valid when it is valid in any of the provided ranges. Implementations may also use these ranges to enhance user interface displays and other visualization widgets as appropriate for the type. + + + + + + By default and general recommendation, the valid range is specified in engineering/calibrated values, although this can be adjusted. + + + + + + + + Defines two bit-order types: most significant bit first and least significant bit first. See DataEncodingType. + + + + + + + + + Identical to BinaryDataEncodingType but supports argument instance references. + + + + + + + Number of bits this value occupies on the stream being encoded/decoded. + + + + + Used to convert binary data to an application data type + + + + + Used to convert binary data from an application data type to binary data + + + + + + + + + Describe binary data that is unmolested in the decoding/encoding or cannot be represented in any of the other data encoding formats. Optionally use the FromBinaryTransformAlgorithm and ToBinaryTransformAlgorithm element to describe the transformation process. See InputAlgorithmType for the transformation structure. + + + + + + + Number of bits this value occupies on the stream being encoded/decoded. + + + + + Used to convert binary data to an application data type + + + + + Used to convert binary data from an application data type to binary data + + + + + + + + + + + + + + + + + + Cyclic Redundancy Check (CRC) definition. The polynomial coefficients for the CRC +are defined as a truncated hex value. The coefficient for the nth bit of an n-bit CRC will always be 1 and is not +represented in the truncated hex value. For example, the truncated hex value of CRC-32 (width=32 bits) used in the +Ethernet specification is 0x04C11DB7, where each non-zero bit of the truncated hex represents a coefficient of 1 in +the polynomial and the bit position represents the exponent. There may also be an initial remainder "InitRemainder" +and a final XOR "FinalXOR" to fully specify the CRC. reflectData and reflectRemainder may also be specified to +reverse the bit order in the incoming data and/or the result. + + + + + + + + + + + + + + + + Describes how a particular piece of data is sent or received from some non-native, off-platform device. (e.g. a spacecraft) + + + + + + + + + + Describe the data encoding for a time data type. It includes the units and other attributes scale and offset. Use scale and offset to describe a y=mx+b relationship (where m is the slope/scale and b is the intercept/offset) to make adjustments to the encoded time value so that it matches the time units. For binary encoded time use transform algorithms to convert time data formats that are too difficult to describe in XTCE. See AbsoluteTimeDataType and RelativeTimeDataType. + + + + + Binary encoding is typically a "pass through" raw encoding form where one of the more common encodings is not required for the parameter. A custom transformation capability is available if needed. + + + + + Float encoding is a common encoding where the raw binary is in a form that gets interpreted as a decimal numeric value. + + + + + Integer encoding is a common encoding where the raw binary is in a form that gets interpreted as an integral value, either signed or unsigned. + + + + + String encoding is a common encoding where the raw binary is in a form that gets interpreted as a character sequence. + + + + + + Time units, with the default being in seconds. + + + + + Linear slope used as a shorter form of specifying a calibrator to convert between the raw value and the engineering units. + + + + + Linear intercept used as a shorter form of specifying a calibrator to convert between the raw value and the engineering units. + + + + + + Epochs may be specified as an xs date where time is implied to be 00:00:00, xs dateTime, or string enumeration of common epochs. The enumerations are TAI (used by CCSDS and others), J2000, UNIX (also known as POSIX), and GPS. + + + + + + For common encodings of floating point data + + + + + + + Calibrator to be applied to the raw uncalibrated value to arrive at the engineering/calibrated value when no Context Calibrators are provided or evaluate to true, based on their MatchCriteria. + + + + + Calibrator to be applied to the raw uncalibrated value to arrive at the engineering/calibrated value when a MatchCriteria evaluates to true. + + + + + + Specifies real/decimal numeric value to raw encoding method, with the default being "IEEE754_1985". + + + + + Number of bits to use for the float raw encoding method, with 32 being the default. Not every number of bits is valid for each encoding method. + Verify the number of bits for encoding is valid for the encoding method. + + + + + A changeThreshold may optionally be specified to inform systems of the minimum change in value that is significant. This is used by some systems to limit the telemetry processing and/or recording requirements. If the value is unspecified or zero, any change is significant. + + + + + + + + + + At the time of this writing, 16 bit encoding size is only valid in cases of IEEE754 and vendor specific MILSTD_1750A variation that is not a part of the standard. This is not meant to preclude use in the event that future floating point formats may also define this value. + + + + + At the time of this writing, 32 bit encoding size is only valid in cases of IEEE754_1985, IEEE754, MILSTD_1750A, DEC, IBM, and TI. This is not meant to preclude use in the event that future floating point formats may also define this value. The IEEE754 enumeration and the IEEE754_1985 enumeration are allowed in this case and the interpretation is the same. + + + + + At the time of this writing, 40 bit encoding size is only valid in the case of TI. This is not meant to preclude use in the event that future floating point formats may also define this value. + + + + + At the time of this writing, 48 bit encoding size is only valid in the case of MILSTD_1750A. This is not meant to preclude use in the event that future floating point formats may also define this value. + + + + + At the time of this writing, 64 bit encoding size is only valid in cases of IEEE754_1985, IEEE754, DEC, and IBM. This is not meant to preclude use in the event that future floating point formats may also define this value. The IEEE754 enumeration and the IEEE754_1985 enumeration are allowed in this case and the interpretation is the same. + + + + + At the time of this writing, 80 bit encoding size is only valid in the case of IEEE754_1985. This is not meant to preclude use in the event that future floating point formats may also define this value. + + + + + At the time of this writing, 128 bit encoding size is only valid in the case of IEEE754_1985 and IEEE754. This is not meant to preclude use in the event that future floating point formats may also define this value. The IEEE754 enumeration and the IEEE754_1985 enumeration are allowed in this case and the interpretation is the same. + + + + + + + + + + + + + + + + + + + + + + + + For all major encodings of integer data + + + + + + + Calibrator to be applied to the raw uncalibrated value to arrive at the engineering/calibrated value when no Context Calibrators are provided or evaluate to true, based on their MatchCriteria. + + + + + Calibrator to be applied to the raw uncalibrated value to arrive at the engineering/calibrated value when a MatchCriteria evaluates to true. + + + + + + Specifies integer numeric value to raw encoding method, with the default being "unsigned". + + + + + Number of bits to use for the raw encoding, with 8 being the default. + + + + + A changeThreshold may optionally be specified to inform systems of the minimum change in value that is significant. This is used by some systems to limit the telemetry processing and/or recording requirements, such as for an analog-to-digital converter that dithers in the least significant bit. If the value is unspecified or zero, any change is significant. + + + + + + + + + + + + + + + + + + Like PASCAL strings, the size of the string is given as an integer at the start of the string. SizeTag must be an unsigned Integer + + + + + + + + + + + + Bit position starts with 'zero'. + + + + + + + + + + This is the simplest case of a string data type where the encoding size of the string does not change. + + + + + + Size in bits of this string data type for both the memory allocation in the implementing software and also the size in bits for this parameter when it appears in a container. + + + + + + + + The termination character that represents the end of the string contents. For C and most strings, this is null (00), which is the default. + + + + + In some string implementations, the size of the string contents (not the memory allocation size) is determined by a leading numeric value. This is sometimes referred to as Pascal strings. If a LeadingSize is specified, then the TerminationChar element does not have a functional meaning. + + + + + + + Identical to VariableStringType but supports argument instance references. + + + + + + Determine the container size in bits by interrogating an instance of a parameter or argument. + + + + + Determine the container size in bits by interrogating an instance of a parameter or argument and selecting a specified value based on tests of the value of that parameter or argument. + + + + + + In some string implementations, the size of the string contents (not the memory allocation size) is determined by a leading numeric value. This is sometimes referred to as Pascal strings. If a LeadingSize is specified, then the TerminationChar element does not have a functional meaning. + + + + + The termination character that represents the end of the string contents. For C and most strings, this is null (00), which is the default. + + + + + + The upper bound of the size of this string data type so that the implementation can reserve/allocate enough memory to capture all reported instances of the string. + + + + + + Describe a variable string whose length may change between samples. + + + + + + Determine the container size in bits by interrogating an instance of a parameter. + + + + + Determine the container size in bits by interrogating an instance of a parameter and selecting a specified value based on tests of the value of that parameter. + + + + + + In some string implementations, the size of the string contents (not the memory allocation size) is determined by a leading numeric value. This is sometimes referred to as Pascal strings. If a LeadingSize is specified, then the TerminationChar element does not have a functional meaning. + + + + + The termination character that represents the end of the string contents. For C and most strings, this is null (00), which is the default. + + + + + + The upper bound of the size of this string data type so that the implementation can reserve/allocate enough memory to capture all reported instances of the string. + + + + + + Identical to StringDataEncodingType but supports argument instance references. + + + + + + + Static length strings do not change in overall length between samples. They may terminate before the end of their buffer using a terminating character, or by various lookups, or calculations. But they have a maximum fixed size, and the data itself is always within that maximum size. + + + + + Variable length strings are those where the space occupied in a container can vary. If the string has variable content but occupies the same amount of space when encoded should use the SizeInBits element. Specification of a variable length string needs to consider that the implementation needs to allocate space to store the string. Specify the maximum possible length of the string data type for memory purposes and also specify the bit size of the string to use in containers with the dynamic elements. + + + + + + The character set encoding of this string data type. + + + + + + + + Describe common encodings of string data: UTF-8 and UTF-16. See StringDataType. + + + + + + + Static length strings do not change in overall length between samples. They may terminate before the end of their buffer using a terminating character, or by various lookups, or calculations. But they have a maximum fixed size, and the data itself is always within that maximum size. + + + + + Variable length strings are those where the space occupied in a container can vary. If the string has variable content but occupies the same amount of space when encoded should use the SizeInBits element. Specification of a variable length string needs to consider that the implementation needs to allocate space to store the string. Specify the maximum possible length of the string data type for memory purposes and also specify the bit size of the string to use in containers with the dynamic elements. + + + + + + The character set encoding of this string data type. + + + + + + + + Defines string encodings. US-ASCII (7-bit), ISO-8859-1 (8-bit Extended ASCII), Windows-1252 (8-bit Extended ASCII), UTF-8 (Unicode), UTF-16 (Unicode with Byte Order Mark), UTF-16LE (Unicode Little Endian), UTF-16BE (Unicode Big Endian). See StringDataEncodingType. + + + + + + + + + With UTF-16, encoded bits must be prepended with a Byte Order Mark. This mark indicates whether the data is encoded in big or little endian. + + + + + With UTF-16LE, encoded bits will always be represented as little endian. Bits are not prepended with a Byte Order Mark. + + + + + With UTF-16BE, encoded bits will always be represented as big endian. Bits are not prepended with a Byte Order Mark. + + + + + With UTF-32, encoded bits must be prepended with a Byte Order Mark. This mark indicates whether the data is encoded in big or little endian. + + + + + With UTF-32LE, encoded bits will always be represented as little endian. Bits are not prepended with a Byte Order Mark. + + + + + With UTF-32BE, encoded bits will always be represented as big endian. Bits are not prepended with a Byte Order Mark. + + + + + + + + + This element describes how a numeric value should be represented in engineering/calibrated form. The defaults reflect the most common form. + + + + + + + Union values of common epoch definitions for document convenience. + + + + + + + + + + + + + + + An unordered collection of algorithms + + + + + + + + + Contains an unordered collection of Alias elements to describe alternate names or IDs for this named item. + Applications should enforce uniqueness of individual nameSpace attribute values. Aliases are usually unique within the same nameSpace attribute value, depending on the physical meaning of that nameSpace. There are some cases where Alias values can be duplicated in a single nameSpace value. + + + + + An alternate name, ID number, and sometimes flight software variable name in the code for this item. + + + + + + + Used to contain an alias (alternate) name or ID for the object. For example, a parameter may have a mnemonic, an on-board id, and special IDs used by various ground software applications; all of these are alias's. Some ground system processing equipment has some severe naming restrictions on parameters (e.g., names must less then 12 characters, single case or integral id's only); their alias's provide a means of capturing each name in a "nameSpace". Note: the name is not reference-able (it cannot be used in a name reference substituting for the name of the item of interest). See NameDescriptionType. + + + + Aliases should be grouped together in a "namespace" so that they can be switched in and out of data extractions. The namespace generally identifies the purpose of the alternate name, whether for software variable names, additional operator names, or whatever the purpose. + + + + + The alternate name or ID to use. The alias does not have the restrictions that apply to name attributes. This is useful for capturing legacy identifiers for systems with unusual naming conventions. It is also useful for capturing variable names in software, amongst other things. + + + + + + Use for any other data associated with a named item. May be used to include administrative data (e.g., version, CM or tags) or potentially any MIME type. Data may be included or given as an href. + + + + + + Identifier for this Ancillary Data characteristic, feature, or data. + + + + + Optional text encoding method for the element text content of this element. The default is "text/plain". + + + + + Optional Uniform Resource Identifier for this characteristic, feature, or data. + + + + + + + + Describe an unordered collection of ancillary data. AncillaryData elements capture platform/program/implementation specific data about the parent element object that is non-standard and would not fit into the schema. See AncillaryDataType. + + + + + Optional list of AncillaryData elements associated with this item. + + + + + + + Describe two or more conditions that are logically anded together. Conditions may be a mix of Condition and ORedCondition. See ORedConditionType and BooleanExpressionType. + + + + + + + Condition elements describe a test similar to the Comparison element except that the parameters used have additional flexibility for the compare. + + + + + This element describes tests similar to the ComparisonList element except that the parameters used are more flexible and the and/or for multiple checks can be specified. + + + + + + + + + Describe an unordered collection of authors. See AuthorType. + + + + + Contains information about an author, maintainer, or data source regarding this document. + + + + + + + Type definition that describes the format of the contents of the Author element. + + + + + + A base type for boolean expression related elements that improves the mapping produced by data binding tools. + + + + + A simple restriction on string for hexadecimal numbers. Must be in 0b or 0B form. + + + + + + + + Holds an arbitrarily complex boolean expression + + + + + Condition elements describe a test similar to the Comparison element except that the parameters used have additional flexibility. + + + + + This element describes tests similar to the ComparisonList element except that the parameters used are more flexible. + + + + + This element describes tests similar to the ComparisonList element except that the parameters used are more flexible. + + + + + + + Describe a byte order: big/little or byte list. + + + + + + Common byte orderings: most significant byte first (also known as big endian) and least significant byte first (also known as little endian). + + + + + + + + + Describe a byte order using a byte list. The list is viewed as representing memory, the first item in the list is address 0. For mostSignificantByteFirst/big endian, the high order byte is the first byte in the list and has the highest significance followed by the less significant bytes ending with the least significant byte. For leastSignificantByteFirst/little endian, the first byte starts with the least significant byte which is first in the least and ends at the highest significant byte. For example given the value 0x0A0B0C0D the following example orderings can be formed. For mostSignificantByteFirst/big endian the significances would be listed as 3 (0x0A), 2 (0x0B), 1 (0x0C), 0 (0x0D) with ‘3’ being first in the list, and for leastSignificantByteFirst/little endian as 0 (0x0D), 1 (0x0C), 2 (0x0B), 3 (0x0A) with ‘0’ being first in the list. See DataEncodingType. + + + + + + + + Describe the comparison between the instance (value) of a parameter against either a specified value or another parameter instance. + + + + + + + Left hand side parameter instance. + + + + + Comparison operator. + + + + + + Right hand side parameter instance. Parameter is assumed to be of the same type as the comparison Parameter. + + + + + Right hand side value. Specify as: integer data type using xs:integer, float data type using xs:double, string data type using xs:string, boolean data type using xs:boolean, binary data type using xs:hexBinary, enum data type using label name, relative time data type using xs:duration, absolute time data type using xs:dateTime. Values must not exceed the characteristics for the data type or this is a validation error. Takes precedence over an initial value given in the data type. Values are calibrated unless there is an option to override it. + + + + + + + + + + All comparisons must be true + + + + + List of Comparison elements must all be true for the comparison to evaluate to true. + + + + + + + Operators to use when testing a boolean condition for a validity check + + + + + + + + + + + + + A simple ParameterInstanceRef to value comparison. The string supplied in the value attribute needs to be converted to a type matching the Parameter being compared to. Numerical values are assumed to be base 10 unless proceeded by 0x (hexadecimal), 0o (octal), or 0b (binary). The value is truncated to use the least significant bits that match the bit size of the Parameter being compared to. + + + + + + Operator to use for the comparison with the common equality operator as the default. + + + + + Specify value as a string compliant with the XML schema (xs) type specified for each XTCE type: integer=xs:integer; float=xs:double; string=xs:string; boolean=xs:boolean; binary=xs:hexBinary; enum=xs:string from EnumerationList; relative time= xs:duration; absolute time=xs:dateTime. Supplied value must be within the ValidRange specified for the type. + + + + + + + + Context calibrations are applied when the ContextMatch is true. Context calibrators overide Default calibrators + + + + + + + + + A MatchCriteriaType used for Context selection. + + + + + + + + Describe a custom, algorithmic alarm condition. The algorithm is assumed to return a boolean value: true or false. See AlarmType. + + + + + + + Algorithm returns a boolean. + + + + + + + + + Describe a percentage complete that is fixed from 0 to 100, or as value from a parameter. See ExecutionVerifierType. + + + + + 0 to 100 percent + + + + + + + + + + + Uses a parameter instance to obtain the value. The parameter value may be optionally adjusted by a Linear function or use a series of boolean expressions to lookup the value. Anything more complex and a DynamicValue with a CustomAlgorithm may be used. + + + + + + + Defines an abstract schema type used as basis for NameDescriptionType and OptionalNameDescriptionType, includes an attribute for a short description and an element for a longer unbounded description. This type also provides alias set and ancillary data set See AliasSetType and AncillaryDataSetType. + + + + + Optional long form description to be used for explanatory descriptions of this item and may include HTML markup using CDATA. Long Descriptions are of unbounded length. + + + + + Used to contain an alias (alternate) name or ID for this item. See AliasSetType for additional explanation. + + + + + Use for any non-standard data associated with this named item. See AncillaryDataSetType for additional explanation. + + + + + + Optional short description to be used for explanation of this item. It is recommended that the short description be kept under 80 characters in length. + + + + + + Describe an ordered table of integer values and associated conditions, forming a lookup table. The list may have duplicates. The table is evaluated from first to last, the first condition to be true returns the value associated with it. See DiscreteLookupType. + + + + + Describe a lookup condition set using discrete values from parameters. + + + + + + + Uses a parameter instance to obtain the value. The parameter value may be optionally adjusted by a Linear function or use a series of boolean expressions to lookup the value. Anything more complex and a DynamicValue with a CustomAlgorithm may be used + + + + + Retrieve the value by referencing the value of a Parameter. + + + + + A slope and intercept may be applied to scale or shift the value selected from the argument or parameter. + + + + + + + Describe error detection/correction algorithm. + + + + + + + + + + A simple union type combining integer, octal, binary, and hexadecimal types + + + + + + Schema for a Header record. A header contains general information about the system or subsystem. + + + + + The AuthorSet contains optional contact information for this document. + + + + + The NoteSet contains optional technical information related to the content of this document. + + + + + The HistorySet contains optional evolutionary information for data contained in this document. + + + + + + This attribute contains an optional version descriptor for this document. + + + + + This attribute contains an optional date to be associated with this document. + + + + + This attribute contains optional classification status for use by programs for which that is applicable. + + + + + This attribute contains an optional additional instructions attribute to be interpreted by programs that use this attribute. + + + + + This attribute contains a flag describing the state of this document in the evolution of the project using it. + + + + + + A simple restriction on string for hexadecimal numbers. Must be in 0x or 0X form. + + + + + + + + Describe an unordered collection of History elements. Usage is user defined. See HistoryType. + + + + + Contains a history record related to the evolution of this document. + + + + + + + + + + Contains an Integer value; value may be provided directly or via the value in a parameter. + + + + + Use a fixed integer value. + + + + + Determine the value by interrogating an instance of a parameter. + + + + + Determine the value by interrogating an instance of a parameter and selecting a specified value based on tests of the value of that parameter. + + + + + + + Identical to IntegerValueType but supports argument instance references. + + + + + Use a fixed integer value. + + + + + Determine the value by interrogating an instance of an argument or parameter. + + + + + Determine the value by interrogating an instance of an argument or parameter and selecting a specified value based on tests of the value of that argument or parameter. + + + + + + + The Long Description is intended to be used for explanatory descriptions of the object and may include HTML markup. Long Descriptions are of unbounded length + + + + + + Mathematical operators used in the math operation. Behavior of each operator on the stack is described using notation (before -- after), where "before" represents the stack before execution of the operator and "after" represent the stack after execution. + + + + + addition (x1 x2 -- x1+x2) + + + + + subtraction (x1 x2 -- x1-x2) + + + + + multiplication (x1 x2 -- x1*x2) + + + + + division (x1 x2 -- x1/x2) + An undefined condition exists if x2 is 0 + + + + + modulo (x1 x2 -- x3) Divide x1 by x2, giving the modulo x3 + An undefined condition exists if x2 is 0. Implementations should verify modulo versus remainder behavior. + + + + + power function (x1 x2 -- x1**x2) + An undefined condition exists if an imaginary number is the result. Imaginary numbers are not supported + + + + + reverse power function (x1 x2 -- x2**x1) + + + + + natural (base e) logarithm (x -- ln(x)) + An undefined condition exists if x is less than or equal to 0 + + + + + base-10 logarithm (x-- log(x)) + An undefined condition exists if x is less than or equal to 0 + + + + + exponentiation (x -- exp(x)) + + + + + inversion (x -- 1/x) + An undefined condition exists if x is less than 0 + + + + + factorial (x -- x!) + An undefined condition exists if x is less than 0 + + + + + tangent (x -- tan(x)) radians + + + + + cosine (x -- cos(x)) radians + + + + + sine (x -- sin(x)) radians + + + + + arctangent (x -- atan(x)) radians + + + + + arctangent (x1 x2 -- atan2(x2, x1)) radians + An undefined condition exists if x1 and x2 are 0 + + + + + arccosine (x -- acos(x)) radians + + + + + arcsine (x -- asin(x)) radians + + + + + hyperbolic tangent (x -- tanh(x)) + + + + + hyperbolic cosine (x -- cosh(x)) + + + + + hyperbolic sine (x -- sinh(x)) + + + + + hyperbolic arctangent (x -- atanh(x)) + An undefined condition exists if x is outside the range [-1.0,+1.0] + + + + + hyperbolic arccosine (x -- acosh(x)) + An undefined condition exists if n is less than 1 + + + + + hyperbolic arcsine (x -- asinh(x)) + + + + + swap the top two stack items (x1 x2 -- x2 x1) + + + + + Remove top item from the stack (x -- ) + + + + + Duplicate top item on the stack (x -- x x) + + + + + Duplicate top item on the stack (x1 x2 -- x1 x2 x1) + + + + + signed bitwise left shift (x1 x2 -- x1 << x2) + Limitation from SEI INT13-C. Use bitwise operators only on unsigned operands + + + + + signed bitwise right shift (x1 x2 -- x1 >> x2) + Limitation from SEI INT13-C. Use bitwise operators only on unsigned operands + + + + + bitwise and (x1 x2 -- x1 & x2) + Limitation from SEI INT13-C. Use bitwise operators only on unsigned operands + + + + + bitwise or (x1 x2 -- x1 | x2) + Limitation from SEI INT13-C. Use bitwise operators only on unsigned operands + + + + + logical and (x1 x2 -- x1 && x2) + The result of this can only be 0 or 1 + + + + + logical or (x1 x2 -- x1 || x2) + The result of this can only be 0 or 1 + + + + + logical not (x1 x2 -- x1 ! x2) + The result of this can only be 0 or 1 + + + + + absolute value (x1 -- abs(x1)) + + + + + Euclidean division quotient (x1 -- div(x1)) + + + + + integer part (x1 -- int(x1)) + + + + + greater than x,y (x1 x2 -- x1 > x2) + The result of this can only be 0 or 1 + + + + + greater than or equal x,y (x1 x2 -- x1 >= x2) + The result of this can only be 0 or 1 + + + + + less than x,y (x1 x2 -- x1 < x2) + The result of this can only be 0 or 1 + + + + + less than or equal x,y (x1 x2 -- x1 <= x2) + The result of this can only be 0 or 1 + + + + + equal x,y (x1 x2 -- x1 == x2) + The result of this can only be 0 or 1 + + + + + not equal x,y (x1 x2 -- x1 != x2) + The result of this can only be 0 or 1 + + + + + minimum of x,y (x1 x2 -- min(x1, x2)) + + + + + maximum of x,y (x1 x2 -- max(x1, x2)) + + + + + Bitwise exclusive or (XOR) (x1 x2 -- x1 xor x2) + Limitation from SEI INT13-C. Use bitwise operators only on unsigned operands + + + + + Bitwise not operation (x1 x2 -- x1 ~ x2) The result of this can only be 0 or 1 + Limitation from SEI INT13-C. Use bitwise operators only on unsigned operands + + + + + + + Contains either a simple Comparison, a ComparisonList, an arbitrarily complex BooleanExpression or an escape to an externally defined algorithm + + + + + A simple comparison check involving a single test of a parameter value. + + + + + A series of simple comparison checks with an implicit 'and' in that they all must be true for the overall condition to be true. + + + + + An arbitrarily complex boolean expression that has additional flexibility on the terms beyond the Comparison and ComparisonList elements. + + + + + An escape to an externally defined algorithm. + + + + + + + Postfix (aka Reverse Polish Notation (RPN)) notation is used to describe mathmatical equations. It uses a stack where operands (either fixed values or ParameterInstances) are pushed onto the stack from first to last in the XML. As the operators are specified, each pops off operands as it evaluates them, and pushes the result back onto the stack. In this case postfix is used to avoid having to specify parenthesis. To convert from infix to postfix, use Dijkstra's "shunting yard" algorithm. + + + + + + + + Defines a name where all characters are allowed except '.', '[', ']', ':', ' ', and '/'. See NameDescriptionType. + + + + + + + + Defines a base schema type definition used by many other schema types throughout schema. Use it to describe a name with optional descriptions, aliases, and ancillary data. See NameType, LongDescriptionType, ShortDescriptionType, AliasSetType and AncillaryDataSetType. + + + + + + The name of this defined item. See NameType for restriction information. + + + + + + + + Describe a reference to a named item in an XTCE instance document. The named must be of schema type NameType. All name references use a Unix style file system name format where the SpaceSystem names form a path in the SpaceSystem tree. The following characters are reserved for the path: '/', ‘..’ and ‘.’ (multiple consecutive ‘/’s are treated as one). The path portion is similar to the directory path used in file system names and the path characters have similar meaning (e.g., SimpleSat/Bus/EPDS/BatteryOne/Voltage). There are three overall forms for name references: absolute path, relative path and just the name. The first two forms are called qualified name references; the last form is called an unqualified name reference. The unqualified form refers to an item in the SpaceSystem the reference is used in. The unqualified form refers to an item in the SpaceSystem the reference is used in. It is illegal for a name reference to point to no item (“a dangling name reference”). + + + + + + + + Contains an unordered collection of Notes. Usage is user defined. See NoteType. + + + + + Contains a program defined technical note regarding this document. + + + + + + + + + + This type describes how a numeric value should be represented in engineering/calibrated form. The defaults reflect the most common form. + + + + Describes how the engineering/calibrated value of this number should be displayed with respect to the radix. Default is base 10. + + + + + Describes how the engineering/calibrated value of this number should be displayed with respect to the minimum number of fractional digits. The default is 0. + + + + + Describes how the engineering/calibrated value of this number should be displayed with respect to the maximum or upper bound of the number of digits. There is no default. No value specified should be interpreted as no upper bound such that all requires digits are used to fully characterize the value. + + + + + Describes how the engineering/calibrated value of this number should be displayed with respect to the minimum number of integer digits. The default is 1. + + + + + Describes how the engineering/calibrated value of this number should be displayed with respect to the maximum or upper bound of the integer digits. There is no default. No value specified should be interpreted as no upper bound such that all requires digits are used to fully characterize the value. + + + + + Describes how the engineering/calibrated value of this number should be displayed with respect to negative values. This attribute specifies the character or characters that should be appended to the numeric value to indicate negative values. The default is none. + + + + + Describes how the engineering/calibrated value of this number should be displayed with respect to positive values. This attribute specifies the character or characters that should be appended to the numeric value to indicate positive values. The default is none. Zero is considered to be specific to the implementation/platform and is not implied here. + + + + + Describes how the engineering/calibrated value of this number should be displayed with respect to negative values. This attribute specifies the character or characters that should be prepended to the numeric value to indicate negative values. The default is a minus character "-". + + + + + Describes how the engineering/calibrated value of this number should be displayed with respect to positive values. This attribute specifies the character or characters that should be prepended to the numeric value to indicate positive values. The default is none. Zero is considered to be specific to the implementation/platform and is not implied here. + + + + + Describes how the engineering/calibrated value of this number should be displayed with respect to larger values. Groupings by thousand are specific to locale, so the schema only specifies whether they will be present and not which character separators are used. The default is false. + + + + + Describes how the engineering/calibrated value of this number should be displayed with respect to notation. Engineering, scientific, or traditional decimal notation may be specified. The precise characters used is locale specific for the implementation/platform. The default is "normal" for the traditional notation. + + + + + + A simple restriction on string for hexadecimal numbers. Must be in 0o or 0O form. + + + + + + + + The type definition used by most elements that have an optional name with optional descriptions. + + + + + + Optional name of this defined item. See NameType for restriction information. + + + + + + + + Describe two or more conditions that are logically ored together. Conditions may be a mix of Condition and ANDedCondition. See ORedConditionType and BooleanExpressionType. + + + + + + + Condition elements describe a test similar to the Comparison element except that the parameters used have additional flexibility for the compare. + + + + + This element describes tests similar to the ComparisonList element except that the parameters used are more flexible and the and/or for multiple checks can be specified. + + + + + + + + + Describe an unordered collection of parameters where duplicates defined by the Parameter name attribute are invalid. The ParameterSet exists in both the TelemetryMetaData and the CommandMetaData element so that each may be built independently but from a single namespace. See TelemetryMetaDataType and CommandMetaDataType. + + + + + Defines a named and typed Parameter. + Need to ensure that the named types actually exist + + + + + Used to include a Parameter defined in another sub-system in this sub-system. + + + + + + + Specifies the number base + + + + + + + + + + + Defines whether the defined range between the minimum and maximum is the outside or inside the range being defined. The default, outside matches values less than the minimum and greater than the maximum. Inside matches values between the minimum and maximum. + + + + + + + + + Most time values are relative to another time e.g. seconds are relative to minutes, minutes are relative to hours. This type is used to describe this relationship starting with the least significant time Parameter to and progressing to the most significant time parameter. + + + + + + Epochs may be specified as an xs date where time is implied to be 00:00:00, xs dateTime, or string enumeration of common epochs. The enumerations are TAI (used by CCSDS and others), J2000, UNIX (also known as POSIX), and GPS. + + + + + + + Used to describe a relative time. Normally used for time offsets. A Relative time is expressed as PnYn MnDTnH nMnS, where nY represents the number of years, nM the number of months, nD the number of days, 'T' is the date/time separator, nH the number of hours, nM the number of minutes and nS the number of seconds. The number of seconds can include decimal digits to arbitrary precision. For example, to indicate a duration of 1 year, 2 months, 3 days, 10 hours, and 30 minutes, one would write: P1Y2M3DT10H30M. One could also indicate a duration of minus 120 days as: -P120D. An extension of Schema duration type. + + + + + + Hold a structure that can be repeated X times, where X is the Count + + + + + Value (either fixed or dynamic) that contains the count of repeated structures. + + + + + + + + Identical to RepeatType but supports argument instance references. + + + + + Value (either fixed or dynamic) that contains the count of repeated structures. + + + + + + + + A reference to a Service + + + + + + + + + + It is strongly recommended that the short description be kept under 80 characters in length + + + + + + A spline, or piecewise defined function, is a set on points from which a curve may be drawn to interpolate raw to calibrated values + + + + The order of a SplineCalibrator refers to the interpolation function. Order 0 is a flat line from the defined point (inclusive) to the next point (exclusive). Order 1 is linear interpolation between two points. Order 2 is quadratic fit and requires at least 3 points (unusual case). This order is generally not needed, but may be used to override the interpolation order for this point. + + + + + The raw encoded value. + + + + + The engineering/calibrated value associated with the raw value for this point. + + + + + + A term in a polynomial expression. + + + + The coefficient in a single term of a polynomial expression. + + + + + The exponent in a single term of a polynomial expression. Should negative exponents be required, use a Math Calibrator style of definition for this type. + + + + + + base time units. days, months, years have obvoius ambiguity and should be avoided + + + + + + + + + + + + Describe the exponent, factor, form, and description for a unit. The unit itself is in element Unit in UnitSet. See UnitSetType. The attributes are optional because different programs use this element in different ways, depending on vendor support. + + + + Optional attribute used in conjunction with the "factor" attribute where some programs choose to specify the unit definition with these machine processable algebraic features. For example, a unit text of "meters" may have a "power" attribute of 2, resulting "meters squared" as the actual unit. This is not commonly used. The most common method for "meters squared" is to use the text content of the Unit element in a form like "m^2". + + + + + Optional attribute used in conjunction with the "power" attribute where some programs choose to specify the unit definition with these machine processable algebraic features. For example, a unit text of "meters" may have a "factor" attribute of 2, resulting "2 times meters" as the actual unit. This is not commonly used. The most common method for "2 times meters" is to use the text content of the Unit element in a form like "2*m". + + + + + A description of the unit, which may be for expanded human readability or for specification of the nature/property of the unit. For example, meters per second squared is of a nature/property of acceleration. + + + + + The default value "calibrated" is most common practice to specify units at the engineering/calibrated value, it is possible to specify an additional Unit element for the raw/uncalibrated value. + + + + + + + + + + + + + + + + + Describe a value and an associated string label, see EnumerationListType. + + + + Numeric raw/uncalibrated value to associate with a string enumeration label. + + + + + If max value is given, the label maps to a range where value is less than or equal to maxValue. The range is inclusive. + + + + + String enumeration label to apply to this value definition in the enumeration. + + + + + An optional additional string description can be specified for this enumeration label to provide extended information if desired. + + + + + + + + Describe up to six levels: Normal, Watch, Warning, Distress, Critical, and Severe of conditions the alarm will trigger when true. The types are conditions available are a single comparison, a comparison list, a discrete lookup list, and custom algorithm. See MatchCriteriaType. + + + + + An alarm state of least concern. Considered to be below the most commonly used Warning level. + + + + + An alarm state of concern that represents the most commonly used minimum concern level for many software applications. + + + + + An alarm state of concern in between the most commonly used Warning and Critical levels. + + + + + An alarm state of concern that represents the most commonly used maximum concern level for many software applications. + + + + + An alarm state of highest concern. Considered to be above the most commonly used Critical level. + + + + + + + Describe up to six ranges where either less severe ranges are a subset of more severe ranges (outside), or more severe ranges are a subset of less severe ranges (inside). In both forms, the undefined least severe range is normal. Range values are in calibrated engineering units. See FloatRangeType. + + + + + + + A range of least concern. Considered to be below the most commonly used Warning level. + + + + + A range of concern that represents the most commonly used minimum concern level for many software applications. + + + + + A range of concern in between the most commonly used Warning and Critical levels. + + + + + A range of concern that represents the most commonly used maximum concern level for many software applications. + + + + + A range of highest concern. Considered to be above the most commonly used Critical level. + + + + + + A value of outside specifies that the most severe range is outside all the other ranges: -severe -critical -distress -warning -watch normal +watch +warning +distress +critical +severe. A value of inside "inverts" these bands: -green -watch -warning -distress -critical severe +critical +distress +warning +watch. The most common form used is "outside" and is the default. + + + + + + + + Defines a base schema type used to build up the other data type specific alarm types. The definition includes a count to go into alarm (minViolations – the counts to go out of alarm is the same), a condition style alarm and a custom alarm. See AlarmConditionType, CustomAlgorithmType, BinaryAlarmConditionType, BooleanAlarmType, BinaryContextAlarmType, EnumerationAlarmType, NumericAlarmType, StringAlarmType, TimeAlarmType, TimeAlarmConditionType. + + + + + + + + A MatchCriteria may be specified for each of the 5 alarm levels. Each level is optional and the alarm should be the highest level to test true. + + + + + An escape for ridiculously complex alarm conditions. Will trigger on changes to the containing Parameter. + + + + + + + The number of successive instances that meet the alarm conditions for the alarm to trigger. The default is 1. + + + + + Optionally specify the number of successive instances that do not meet the alarm conditions to leave the alarm state. If this attribute is not specified, it is treated as being equal to minViolations (symmetric). + + + + + + + + Describe any number of alarm ranges, each with its own level (normal, warning, watch, distress, critical, severe) and range form (inside or outside). Ranges may overlap, be disjoint and so forth. Ranges within the value sprectrum non-specified are non-normal. The most severe range level of value within the ranges is the level of the alarm. Range values are in calibrated engineering units. See FloatRangeType. + + + + + + + Describe any number of alarm ranges, each with its own level (normal, warning, watch, distress, critical, severe) and range form (inside or outside). Ranges may overlap, be disjoint and so forth. Ranges within the value sprectrum non-specified are non-normal. The most severe range level of value within the ranges is the level of the alarm. Range values are in calibrated engineering units. See FloatRangeType. + + + + + + + + + Defines to type of update rates: perSecond and perContainerUpdate. See RateInStreamType. + + + + + + + + + Describe alarm conditions specific to the binary data type, extends the basic AlarmType. + + + + + + + + Alarm conditions for Boolean types + + + + + + + + Describe an ordered collection of context binary alarms, duplicates are valid. Process the contexts in list order. See BinaryContextAlarmType. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Describe an alarm when the parameter value's rate-of-change is either too fast or too slow. The change may be with respect to time (the default) or with respect to samples (delta alarms). Use the changeType attribute to select the type: changePerSecond (time) or changePerSample (delta). The change may also be ether relative (as a percentage change) or absolute as set by the changeBasis attribute. (Delta alarms are typically absolute but percentage is conceivable). The alarm also requires the spanOfInterest in both samples and seconds to have passed before it is to trigger. For time based rate of change alarms, the time specified in spanOfInterestInSeconds is used to calculate the change. For sample based rate of change alarms, the change is calculated over the number of samples specified in spanOfInterestInSamples. A typical delta alarm would set: changeType=changePerSample, changeBasis=absoluteChange, spanOfInterestInSamples=1. A typical time based version would set: changeType=changePerSecond, changeBasis=percentageChange, and spaceOfInterestInSeconds=1. To set the ranges use maxInclusive, the following definition applies: | Normal.maxInclusive | <= | Watch.maxInclusive | <= | Warning.maxInclusive | <= | Distress.maxInclusive | <= | Critical.maxInclusive | <= | Severe.maxInclusive |. And it is further assumed the absolute value of each range and sampled value it taken to evaluate the alarm. See NumericAlarmType. + + + + + + + + + + + + + Defines absoluteChange and percentageChange for use in rate of change alarms. Used by ChangeAlarmRangesType. + + + + + + + + + Defines six levels: Normal, Watch, Warning, Distress, Critical and Severe. Typical implementations color the "normal" level as green, "warning" level as yellow, and "critical" level as red. These level definitions are used throughout the alarm definitions. Some systems provide a greater fidelity with the additional levels provided here. The "normal" level is not typically needed because "normal" should be construed as none of the concern levels evaluating to true. For cases where definiing "normal" is needed, refer to the specific alarm definition types. + + + + + + + + + + + + + Defines the criticality level of a command. Criticality levels follow ISO 14950. + + + + + Normal command. Corresponds to ISO 14950 Level D telecommand criticality. + + + + + Command that is not a critical command but is essential to the success of the mission and, if sent at the wrong time, could cause momentary loss of the mission. Corresponds to ISO 14950 Level C telecommand criticality. + + + + + Command that, if executed at the wrong time or in the wrong configuration, could cause irreversible loss or damage for the mission. Corresponds to ISO 14950 Level B telecommand criticality. Some space programs have called this "restricted" and may be implemented with a secondary confirmation before transmission. + + + + + Command that is not expected to be used for nominal or foreseeable contingency operations, that is included for unforeseen contingency operations, and that could cause irreversible damage if executed at the wrong time or in the wrong configuration. Corresponds to ISO 14950 Level A telecommand criticality. Some space programs have called this "prohibited". + + + + + In the event that a program uses this value, that program will need to define the meaning of this value to their system. + + + + + In the event that a program uses this value, that program will need to define the meaning of this value to their system. + + + + + + + Defines a changePerSecond and changePerSample for use in rate of change alarms. Used by ChangeAlarmRangesType. + + + + + + + + + Describe a discrete value lookup and the value associated when the lookup evaluates to true. + + + + + + Value to use when the lookup conditions are true. + + + + + + + + Describe an alarm level and its enumeration label to trigger from. See EnumeratedAlarmType and EnumeratedParameterType. + + + + Defines six levels: Normal, Watch, Warning, Distress, Critical and Severe. Typical implementations color the "normal" level as green, "warning" level as yellow, and "critical" level as red. In the case of enumeration alarms, the "normal" is assumed by implementations to be any label not otherwise in an alarm state. + + + + + The enumeration label is the engineering/calibrated value for enumerated types. + + + + + + + + Describe an alarm state for an enumeration label where the label is engineer/calibrated value. Note that labels may represent multiple raw/uncalbrated values. + + + + + + + Describe a context that when true the alarm condition may be evaluated. See ContextMatchType and EnumerationAlarmType. + + + + + + + Describe a context in terms of a parameter and value that when true enables the context alarm definition. + + + + + + + + + Describe alarm conditions specific to the enumeration data type, extends the basic AlarmType with an EnumerationAlarmList. The alarms are described using the label (engineering/calibrated value) of the enumerated parameter. Enumeration labels may represent several raw/uncalibrated values, so as a result, a single alarm definition here may represent multiple raw values in the enumerated parameter. It is not necessary to define an alarm for raw/uncalibrated values that do not map to an enumeration. Implementations should implicitly define this as an alarm case, of which the manifestation of that is program/implementation specific. See EnumeratedParameterType. + An additional check needs to be performed to ensure that the enumeration values in the alarms are valid enumeration values for the Parameter + + + + + + + List of alarm state definitions for this enumerated type. + + + + + + Alarm state name for when no enumeration alarms evaluate to true. This defaults to "normal", which is almost always the case. Setting it to another alarm state permits a form of "inverted logic" where the alarm list can specify the normal states instead of the alarm states. + + + + + + + + + + + + + + + Describe a floating point based range, several types of ranges are supported -- one sided and two sided, inclusive or exclusive. It would not make sense to set two mins or maxes. Used in a number of locations related to ranges: ValidFloatRangeSetType or AlarmRangeType for example. + Verify that the combination provided is usable. + + + + Minimum decimal/real number value including itself. + + + + + Minimum decimal/real number value excluding itself. + + + + + Maximum decimal/real number value including itself. + + + + + Maximum decimal/real number value excluding itself. + + + + + + Describe an integral based range: minInclusive and maxInclusive. Used in a number of locations related to ranges: ValidIntegerRangeSetType for example. + + + + Minimum integer value including itself. + + + + + Maximum integer value including itself. + + + + + + A slope and intercept may be applied to scale or shift the value of the parameter in the dynamic value + + + + + + + The alarm multi-range element type permits users to define multiple alarm ranges in a sequence that goes beyond the more typical "inside" and "outside" range definitions. It can be thought of as a "barber pole" definition. + + + + + + A value of outside specifies that the most severe range is outside all the other ranges: -severe -critical -distress -warning -watch normal +watch +warning +distress +critical +severe. A value of inside "inverts" these bands: -green -watch -warning -distress -critical severe +critical +distress +warning +watch. The most common form used is "outside" and is the default. + + + + + The level of concern for this alarm definition. + + + + + + + + Describe alarm conditions specific to the numeric data types, extends the basic AlarmType with StaticAlarmRanges and ChangeAlarmRanges. See FloatParameterType and IntegerParameterType. + + + + + + + StaticAlarmRanges are used to trigger alarms when the parameter value passes some threshold value. + + + + + ChangeAlarmRanges are used to trigger alarms when the parameter value changes by a rate or quantity from a reference. + + + + + Similar to but more lenient form of StaticAlarmRanges. + + + + + + + + + Describe a parameter dependent context, that when evaluates to true, enables the use of this alarm definition. See ContextMatchType and NumericAlarmType. + + + + + + + Contains the evaluation criteria for a parameter dependent test, that when evaluates to true, enables this alarm definition. + + + + + + + + + Describe a string alarm condition based on matching a regular expression. The level and regular expression are described. The specific implementation of the regular expression syntax is not specified in the schema at this time. See StringAlarmListType. + + + + + + + Describe an ordered collection of string alarms, where duplicates are valid. Evaluate the alarms in list order. The first to evaluate to true takes precedence. See StringAlarmLevelType. + + + + + + + + Describe alarms specific to the string data type, extends the basic AlarmType, while adding a StringAlarmList and defaultAlarmLevel attribute. The string alarm list is evaluated in list order. See ConcernsLevelsType and StringAlarmListType. + + + + + + + + + + + + + Describe a context that when true the alarm may be evaluated. See ContextMatchType and StringAlarmType. + + + + + + + + + + + + An ordered collection of numeric alarms associated with a context. Process the contexts in list order. See StringContextAlarmType. + + + + + + + + Alarms associated with time data types + + + + + + + StaticAlarmRanges are used to trigger alarms when the parameter value passes some threshold value + + + + + ChangePerSecondAlarmRanges are used to trigger alarms when the parameter value's rate-of-change passes some threshold value. An alarm condition that triggers when the value changes too fast (or too slow) + + + + + + + + + + + + + + + + + + + + + Context alarms are applied when the ContextMatch is true. Context alarms override Default alarms + + + + + + + + + + + + XTCE-specific replacement for xtce:NonNegativeLongType which more cleanly maps to native data types. + + + + + + + + XTCE-specific replacement for xtce:PositiveLongType which more cleanly maps to native data types. + + + + + + + + Optionally specify if this information pertains to something other than the calibrated/engineering value. + + + + + + + + + + \ No newline at end of file diff --git a/config/obc/ppd/pyliner/server_overlay/mdb/cfs-ccsds.xml b/config/obc/ppd/pyliner/server_overlay/mdb/cfs-ccsds.xml new file mode 100644 index 000000000..48e9c7f30 --- /dev/null +++ b/config/obc/ppd/pyliner/server_overlay/mdb/cfs-ccsds.xml @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 160 + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/config/obc/ppd/pyliner/set-vars.cmake b/config/obc/ppd/pyliner/set-vars.cmake new file mode 100644 index 000000000..b8a43ba54 --- /dev/null +++ b/config/obc/ppd/pyliner/set-vars.cmake @@ -0,0 +1,35 @@ +############################################################################# +# +# Copyright (c) 2017 Windhover Labs, L.L.C. All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in +# the documentation and/or other materials provided with the +# distribution. +# 3. Neither the name Windhover Labs nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS +# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED +# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +############################################################################# + +set(PSP ${PROJECT_SOURCE_DIR}/core/psp/pc-linux-wh) +set(OSAL ${PROJECT_SOURCE_DIR}/core/osal/posix-fast) diff --git a/config/obc/ppd/pyliner/target/CMakeLists.txt b/config/obc/ppd/pyliner/target/CMakeLists.txt new file mode 100644 index 000000000..a6d1722fb --- /dev/null +++ b/config/obc/ppd/pyliner/target/CMakeLists.txt @@ -0,0 +1 @@ +include(../set-vars.cmake) \ No newline at end of file diff --git a/config/obc/ppd/pyliner/target/gdbinit b/config/obc/ppd/pyliner/target/gdbinit new file mode 100644 index 000000000..fad990b6a --- /dev/null +++ b/config/obc/ppd/pyliner/target/gdbinit @@ -0,0 +1 @@ +handle SIG63 nostop noprint pass noignore \ No newline at end of file diff --git a/config/obc/ppd/pyliner/wh_config.yaml b/config/obc/ppd/pyliner/wh_config.yaml new file mode 100644 index 000000000..e9277fda4 --- /dev/null +++ b/config/obc/ppd/pyliner/wh_config.yaml @@ -0,0 +1,12 @@ +--- +config_base: ${PROJECT_SOURCE_DIR} +cpu_id: ppd +commander: + server_overlay: ${PROJECT_SOURCE_DIR}/config/obc/ppd/sitl/server_overlay +modules: + core: + modules: + osal: + definition: ${PROJECT_SOURCE_DIR}/public/core/osal/posix-fast/wh_design.yaml + psp: + definition: ${PROJECT_SOURCE_DIR}/public/core/psp/pc-linux-wh/wh_design.yaml diff --git a/config/obc/ppd/wh_config.yaml b/config/obc/ppd/wh_config.yaml index fc8f639ca..d16c90d68 100644 --- a/config/obc/ppd/wh_config.yaml +++ b/config/obc/ppd/wh_config.yaml @@ -1,6 +1,8 @@ --- -config_base: ${PROJECT_SOURCE_DIR} -cpu_id: PPD +config_base: ${PROJECT_SOURCE_DIR} +cpu_id: ppd +commander: + server_overlay: ${PROJECT_SOURCE_DIR}/config/obc/ppd/server_overlay modules: core: modules: @@ -14,20 +16,20 @@ modules: member: DestinationAddress type: string commands: - TO_CMD_MID: + TO_CMD_MID: msgID: 0x189f - commands: - EnableChannel: + commands: + EnableChannel: cc: 10 - struct: TO_EnableChannelCmd_t - DisableChannel: + struct: TO_EnableChannelCmd_t + DisableChannel: cc: 11 struct: TO_DisableChannelCmd_t - events: - TO_TLMOUTSOCKET_ERR_EID: + events: + TO_TLMOUTSOCKET_ERR_EID: id: 29 - TO_TLMOUTENA_INF_EID: + TO_TLMOUTENA_INF_EID: id: 30 TO_TLMOUTENA_ERR_EID: id: 31 @@ -39,4 +41,3 @@ modules: id: 34 TO_TLMOUTSTOP_ERR_EID: id: 35 - diff --git a/core/base/cfe/cdr/ES/ApplicationControl_General.bob b/core/base/cfe/cdr/cfe_es/ApplicationControl_General.bob similarity index 99% rename from core/base/cfe/cdr/ES/ApplicationControl_General.bob rename to core/base/cfe/cdr/cfe_es/ApplicationControl_General.bob index f8189e4a0..a1c3fae00 100644 --- a/core/base/cfe/cdr/ES/ApplicationControl_General.bob +++ b/core/base/cfe/cdr/cfe_es/ApplicationControl_General.bob @@ -2,7 +2,7 @@ ($(CPUID)) CFE-ES - App Control - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/ConfigureUpdTcDataLink.opi b/core/base/cfe/cdr/cfe_es/ConfigureUpdTcDataLink.opi similarity index 99% rename from core/base/cfe/cdr/ES/ConfigureUpdTcDataLink.opi rename to core/base/cfe/cdr/cfe_es/ConfigureUpdTcDataLink.opi index 091cbf330..d8f6f06aa 100644 --- a/core/base/cfe/cdr/ES/ConfigureUpdTcDataLink.opi +++ b/core/base/cfe/cdr/cfe_es/ConfigureUpdTcDataLink.opi @@ -17,7 +17,7 @@ 6 130 - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/Console.bob b/core/base/cfe/cdr/cfe_es/Console.bob similarity index 99% rename from core/base/cfe/cdr/ES/Console.bob rename to core/base/cfe/cdr/cfe_es/Console.bob index 7aa16114a..28ad274a1 100644 --- a/core/base/cfe/cdr/ES/Console.bob +++ b/core/base/cfe/cdr/cfe_es/Console.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Console - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/DeleteCDS.bob b/core/base/cfe/cdr/cfe_es/DeleteCDS.bob similarity index 98% rename from core/base/cfe/cdr/ES/DeleteCDS.bob rename to core/base/cfe/cdr/cfe_es/DeleteCDS.bob index 79d8ad28d..c3a95a847 100644 --- a/core/base/cfe/cdr/ES/DeleteCDS.bob +++ b/core/base/cfe/cdr/cfe_es/DeleteCDS.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Delete CDS - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/DumpCDSReg.bob b/core/base/cfe/cdr/cfe_es/DumpCDSReg.bob similarity index 98% rename from core/base/cfe/cdr/ES/DumpCDSReg.bob rename to core/base/cfe/cdr/cfe_es/DumpCDSReg.bob index d25e35484..fe50826b8 100644 --- a/core/base/cfe/cdr/ES/DumpCDSReg.bob +++ b/core/base/cfe/cdr/cfe_es/DumpCDSReg.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Dump CDS Reg - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/Main.bob b/core/base/cfe/cdr/cfe_es/Main.bob similarity index 99% rename from core/base/cfe/cdr/ES/Main.bob rename to core/base/cfe/cdr/cfe_es/Main.bob index 7fb726b40..de2a1e503 100644 --- a/core/base/cfe/cdr/ES/Main.bob +++ b/core/base/cfe/cdr/cfe_es/Main.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Main - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/PerfCollectionControl_ES.bob b/core/base/cfe/cdr/cfe_es/PerfCollectionControl_ES.bob similarity index 99% rename from core/base/cfe/cdr/ES/PerfCollectionControl_ES.bob rename to core/base/cfe/cdr/cfe_es/PerfCollectionControl_ES.bob index 01a64a5ee..4fa8baa14 100644 --- a/core/base/cfe/cdr/ES/PerfCollectionControl_ES.bob +++ b/core/base/cfe/cdr/cfe_es/PerfCollectionControl_ES.bob @@ -2,7 +2,7 @@ - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/PerfCollection_ES.bob b/core/base/cfe/cdr/cfe_es/PerfCollection_ES.bob similarity index 99% rename from core/base/cfe/cdr/ES/PerfCollection_ES.bob rename to core/base/cfe/cdr/cfe_es/PerfCollection_ES.bob index e961db502..9956d7515 100644 --- a/core/base/cfe/cdr/ES/PerfCollection_ES.bob +++ b/core/base/cfe/cdr/cfe_es/PerfCollection_ES.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Perf - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/PerfRecord_ES.bob b/core/base/cfe/cdr/cfe_es/PerfRecord_ES.bob similarity index 98% rename from core/base/cfe/cdr/ES/PerfRecord_ES.bob rename to core/base/cfe/cdr/cfe_es/PerfRecord_ES.bob index eff1e20bf..c7ea09cda 100644 --- a/core/base/cfe/cdr/ES/PerfRecord_ES.bob +++ b/core/base/cfe/cdr/cfe_es/PerfRecord_ES.bob @@ -2,7 +2,7 @@ - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/QueryAllApps.bob b/core/base/cfe/cdr/cfe_es/QueryAllApps.bob similarity index 98% rename from core/base/cfe/cdr/ES/QueryAllApps.bob rename to core/base/cfe/cdr/cfe_es/QueryAllApps.bob index 2e09a5393..87fb8c1d2 100644 --- a/core/base/cfe/cdr/ES/QueryAllApps.bob +++ b/core/base/cfe/cdr/cfe_es/QueryAllApps.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Query All Apps - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/QueryAllTasks.bob b/core/base/cfe/cdr/cfe_es/QueryAllTasks.bob similarity index 98% rename from core/base/cfe/cdr/ES/QueryAllTasks.bob rename to core/base/cfe/cdr/cfe_es/QueryAllTasks.bob index ede6bc4c1..57daeca13 100644 --- a/core/base/cfe/cdr/ES/QueryAllTasks.bob +++ b/core/base/cfe/cdr/cfe_es/QueryAllTasks.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Query All Tasks - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/QueryOneApp.bob b/core/base/cfe/cdr/cfe_es/QueryOneApp.bob similarity index 98% rename from core/base/cfe/cdr/ES/QueryOneApp.bob rename to core/base/cfe/cdr/cfe_es/QueryOneApp.bob index 0b7c2b93c..7fff6a043 100644 --- a/core/base/cfe/cdr/ES/QueryOneApp.bob +++ b/core/base/cfe/cdr/cfe_es/QueryOneApp.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Query App - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/ReloadApp.bob b/core/base/cfe/cdr/cfe_es/ReloadApp.bob similarity index 99% rename from core/base/cfe/cdr/ES/ReloadApp.bob rename to core/base/cfe/cdr/cfe_es/ReloadApp.bob index eb4736908..b7f577820 100644 --- a/core/base/cfe/cdr/ES/ReloadApp.bob +++ b/core/base/cfe/cdr/cfe_es/ReloadApp.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Reload App - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/RestartApp.bob b/core/base/cfe/cdr/cfe_es/RestartApp.bob similarity index 98% rename from core/base/cfe/cdr/ES/RestartApp.bob rename to core/base/cfe/cdr/cfe_es/RestartApp.bob index 620fa9982..c69c7b539 100644 --- a/core/base/cfe/cdr/ES/RestartApp.bob +++ b/core/base/cfe/cdr/cfe_es/RestartApp.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Restart App - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/SetMaxPRCount.bob b/core/base/cfe/cdr/cfe_es/SetMaxPRCount.bob similarity index 98% rename from core/base/cfe/cdr/ES/SetMaxPRCount.bob rename to core/base/cfe/cdr/cfe_es/SetMaxPRCount.bob index 5325c7905..62d43a38b 100644 --- a/core/base/cfe/cdr/ES/SetMaxPRCount.bob +++ b/core/base/cfe/cdr/cfe_es/SetMaxPRCount.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Set Max Proc Reset - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/SetSysLogMode.bob b/core/base/cfe/cdr/cfe_es/SetSysLogMode.bob similarity index 98% rename from core/base/cfe/cdr/ES/SetSysLogMode.bob rename to core/base/cfe/cdr/cfe_es/SetSysLogMode.bob index 549f2ad0d..d7f0bfcfb 100644 --- a/core/base/cfe/cdr/ES/SetSysLogMode.bob +++ b/core/base/cfe/cdr/cfe_es/SetSysLogMode.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Set SysLog Mode - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/StartApp.bob b/core/base/cfe/cdr/cfe_es/StartApp.bob similarity index 99% rename from core/base/cfe/cdr/ES/StartApp.bob rename to core/base/cfe/cdr/cfe_es/StartApp.bob index ca1327c3d..8758a18fa 100644 --- a/core/base/cfe/cdr/ES/StartApp.bob +++ b/core/base/cfe/cdr/cfe_es/StartApp.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Start App - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/StartPerfCollection.bob b/core/base/cfe/cdr/cfe_es/StartPerfCollection.bob similarity index 98% rename from core/base/cfe/cdr/ES/StartPerfCollection.bob rename to core/base/cfe/cdr/cfe_es/StartPerfCollection.bob index f2712cb3f..e2583859a 100644 --- a/core/base/cfe/cdr/ES/StartPerfCollection.bob +++ b/core/base/cfe/cdr/cfe_es/StartPerfCollection.bob @@ -3,7 +3,7 @@ CFE-ES - Start Perf - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/StopApp.bob b/core/base/cfe/cdr/cfe_es/StopApp.bob similarity index 98% rename from core/base/cfe/cdr/ES/StopApp.bob rename to core/base/cfe/cdr/cfe_es/StopApp.bob index 575ba6196..b237c38fd 100644 --- a/core/base/cfe/cdr/ES/StopApp.bob +++ b/core/base/cfe/cdr/cfe_es/StopApp.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Stop App - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/StopPerfCollection.bob b/core/base/cfe/cdr/cfe_es/StopPerfCollection.bob similarity index 98% rename from core/base/cfe/cdr/ES/StopPerfCollection.bob rename to core/base/cfe/cdr/cfe_es/StopPerfCollection.bob index e6200a2bf..6f50da078 100644 --- a/core/base/cfe/cdr/ES/StopPerfCollection.bob +++ b/core/base/cfe/cdr/cfe_es/StopPerfCollection.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Stop Perf - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/WriteErrLog.bob b/core/base/cfe/cdr/cfe_es/WriteErrLog.bob similarity index 98% rename from core/base/cfe/cdr/ES/WriteErrLog.bob rename to core/base/cfe/cdr/cfe_es/WriteErrLog.bob index 359476e88..225fdd2b1 100644 --- a/core/base/cfe/cdr/ES/WriteErrLog.bob +++ b/core/base/cfe/cdr/cfe_es/WriteErrLog.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Write Err Log - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/WriteSysLog.bob b/core/base/cfe/cdr/cfe_es/WriteSysLog.bob similarity index 98% rename from core/base/cfe/cdr/ES/WriteSysLog.bob rename to core/base/cfe/cdr/cfe_es/WriteSysLog.bob index 5258b414e..15182eaaa 100644 --- a/core/base/cfe/cdr/ES/WriteSysLog.bob +++ b/core/base/cfe/cdr/cfe_es/WriteSysLog.bob @@ -3,7 +3,7 @@ ($(CPUID)) CFE-ES - Write Sys Log - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} cfe_es true /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) diff --git a/core/base/cfe/cdr/ES/resources/scripts/AppControlInit.py b/core/base/cfe/cdr/cfe_es/resources/scripts/AppControlInit.py similarity index 100% rename from core/base/cfe/cdr/ES/resources/scripts/AppControlInit.py rename to core/base/cfe/cdr/cfe_es/resources/scripts/AppControlInit.py diff --git a/core/base/cfe/cdr/ES/resources/scripts/ReloadApplicationInit.py b/core/base/cfe/cdr/cfe_es/resources/scripts/ReloadApplicationInit.py similarity index 100% rename from core/base/cfe/cdr/ES/resources/scripts/ReloadApplicationInit.py rename to core/base/cfe/cdr/cfe_es/resources/scripts/ReloadApplicationInit.py diff --git a/core/base/cfe/cdr/ES/resources/scripts/configure_udp_tc_data_link.py b/core/base/cfe/cdr/cfe_es/resources/scripts/configure_udp_tc_data_link.py similarity index 100% rename from core/base/cfe/cdr/ES/resources/scripts/configure_udp_tc_data_link.py rename to core/base/cfe/cdr/cfe_es/resources/scripts/configure_udp_tc_data_link.py diff --git a/core/base/cfe/cdr/ES/resources/scripts/perf_init.py b/core/base/cfe/cdr/cfe_es/resources/scripts/perf_init.py similarity index 100% rename from core/base/cfe/cdr/ES/resources/scripts/perf_init.py rename to core/base/cfe/cdr/cfe_es/resources/scripts/perf_init.py diff --git a/core/base/cfe/cdr/ES/resources/scripts/reflect_filters.py b/core/base/cfe/cdr/cfe_es/resources/scripts/reflect_filters.py similarity index 100% rename from core/base/cfe/cdr/ES/resources/scripts/reflect_filters.py rename to core/base/cfe/cdr/cfe_es/resources/scripts/reflect_filters.py diff --git a/core/base/cfe/cdr/ES/resources/scripts/reflect_triggers.py b/core/base/cfe/cdr/cfe_es/resources/scripts/reflect_triggers.py similarity index 100% rename from core/base/cfe/cdr/ES/resources/scripts/reflect_triggers.py rename to core/base/cfe/cdr/cfe_es/resources/scripts/reflect_triggers.py diff --git a/core/base/cfe/cdr/ES/resources/scripts/set_actual_filters.py b/core/base/cfe/cdr/cfe_es/resources/scripts/set_actual_filters.py similarity index 100% rename from core/base/cfe/cdr/ES/resources/scripts/set_actual_filters.py rename to core/base/cfe/cdr/cfe_es/resources/scripts/set_actual_filters.py diff --git a/core/base/cfe/cdr/ES/resources/scripts/set_actual_triggers.py b/core/base/cfe/cdr/cfe_es/resources/scripts/set_actual_triggers.py similarity index 100% rename from core/base/cfe/cdr/ES/resources/scripts/set_actual_triggers.py rename to core/base/cfe/cdr/cfe_es/resources/scripts/set_actual_triggers.py diff --git a/core/base/cfe/cdr/ES/resources/scripts/set_max_resets.py b/core/base/cfe/cdr/cfe_es/resources/scripts/set_max_resets.py similarity index 100% rename from core/base/cfe/cdr/ES/resources/scripts/set_max_resets.py rename to core/base/cfe/cdr/cfe_es/resources/scripts/set_max_resets.py diff --git a/core/base/cfe/cdr/ES/resources/scripts/start_app.py b/core/base/cfe/cdr/cfe_es/resources/scripts/start_app.py similarity index 100% rename from core/base/cfe/cdr/ES/resources/scripts/start_app.py rename to core/base/cfe/cdr/cfe_es/resources/scripts/start_app.py diff --git a/core/base/cfe/cdr/ES/resources/templates/ApplicationControl_App.bob b/core/base/cfe/cdr/cfe_es/resources/templates/ApplicationControl_App.bob similarity index 99% rename from core/base/cfe/cdr/ES/resources/templates/ApplicationControl_App.bob rename to core/base/cfe/cdr/cfe_es/resources/templates/ApplicationControl_App.bob index ec7dbb657..224e90b9f 100644 --- a/core/base/cfe/cdr/ES/resources/templates/ApplicationControl_App.bob +++ b/core/base/cfe/cdr/cfe_es/resources/templates/ApplicationControl_App.bob @@ -3,7 +3,7 @@ ($(CPUID)) App Control - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/ES/resources/templates/MemoryPoolViewer.bob b/core/base/cfe/cdr/cfe_es/resources/templates/MemoryPoolViewer.bob similarity index 99% rename from core/base/cfe/cdr/ES/resources/templates/MemoryPoolViewer.bob rename to core/base/cfe/cdr/cfe_es/resources/templates/MemoryPoolViewer.bob index 46be95a57..b28957d38 100644 --- a/core/base/cfe/cdr/ES/resources/templates/MemoryPoolViewer.bob +++ b/core/base/cfe/cdr/cfe_es/resources/templates/MemoryPoolViewer.bob @@ -2,7 +2,7 @@ ($(CPUID)) CFE-ES - MemPool - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/ES/resources/templates/ReloadApp_App.bob b/core/base/cfe/cdr/cfe_es/resources/templates/ReloadApp_App.bob similarity index 98% rename from core/base/cfe/cdr/ES/resources/templates/ReloadApp_App.bob rename to core/base/cfe/cdr/cfe_es/resources/templates/ReloadApp_App.bob index 4290a98e5..a619f4567 100644 --- a/core/base/cfe/cdr/ES/resources/templates/ReloadApp_App.bob +++ b/core/base/cfe/cdr/cfe_es/resources/templates/ReloadApp_App.bob @@ -2,7 +2,7 @@ ($(CPUID)) ReloadApp - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/ES/resources/templates/StartApp_App.bob b/core/base/cfe/cdr/cfe_es/resources/templates/StartApp_App.bob similarity index 99% rename from core/base/cfe/cdr/ES/resources/templates/StartApp_App.bob rename to core/base/cfe/cdr/cfe_es/resources/templates/StartApp_App.bob index a679b4cee..74b637418 100644 --- a/core/base/cfe/cdr/ES/resources/templates/StartApp_App.bob +++ b/core/base/cfe/cdr/cfe_es/resources/templates/StartApp_App.bob @@ -2,7 +2,7 @@ ($(CPUID) - $(APP)) CFE-ES - Start App - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/AddFilter.bob b/core/base/cfe/cdr/cfe_evs/AddFilter.bob similarity index 99% rename from core/base/cfe/cdr/EVS/AddFilter.bob rename to core/base/cfe/cdr/cfe_evs/AddFilter.bob index b241f010f..4a47d0966 100644 --- a/core/base/cfe/cdr/EVS/AddFilter.bob +++ b/core/base/cfe/cdr/cfe_evs/AddFilter.bob @@ -4,7 +4,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/DeleteFilter.bob b/core/base/cfe/cdr/cfe_evs/DeleteFilter.bob similarity index 98% rename from core/base/cfe/cdr/EVS/DeleteFilter.bob rename to core/base/cfe/cdr/cfe_evs/DeleteFilter.bob index bd62e4520..2577e5218 100644 --- a/core/base/cfe/cdr/EVS/DeleteFilter.bob +++ b/core/base/cfe/cdr/cfe_evs/DeleteFilter.bob @@ -4,7 +4,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/DumpAppData.bob b/core/base/cfe/cdr/cfe_evs/DumpAppData.bob similarity index 98% rename from core/base/cfe/cdr/EVS/DumpAppData.bob rename to core/base/cfe/cdr/cfe_evs/DumpAppData.bob index eff23b275..e4f8df7d0 100644 --- a/core/base/cfe/cdr/EVS/DumpAppData.bob +++ b/core/base/cfe/cdr/cfe_evs/DumpAppData.bob @@ -4,7 +4,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/DumpEventLog.bob b/core/base/cfe/cdr/cfe_evs/DumpEventLog.bob similarity index 98% rename from core/base/cfe/cdr/EVS/DumpEventLog.bob rename to core/base/cfe/cdr/cfe_evs/DumpEventLog.bob index 9b9314c83..69b731313 100644 --- a/core/base/cfe/cdr/EVS/DumpEventLog.bob +++ b/core/base/cfe/cdr/cfe_evs/DumpEventLog.bob @@ -4,7 +4,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/EnaDisAppEventType.bob b/core/base/cfe/cdr/cfe_evs/EnaDisAppEventType.bob similarity index 99% rename from core/base/cfe/cdr/EVS/EnaDisAppEventType.bob rename to core/base/cfe/cdr/cfe_evs/EnaDisAppEventType.bob index df510354c..756f99c4a 100644 --- a/core/base/cfe/cdr/EVS/EnaDisAppEventType.bob +++ b/core/base/cfe/cdr/cfe_evs/EnaDisAppEventType.bob @@ -4,7 +4,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/EnaDisAppEvents.bob b/core/base/cfe/cdr/cfe_evs/EnaDisAppEvents.bob similarity index 98% rename from core/base/cfe/cdr/EVS/EnaDisAppEvents.bob rename to core/base/cfe/cdr/cfe_evs/EnaDisAppEvents.bob index d9ae61c73..fe2deaaff 100644 --- a/core/base/cfe/cdr/EVS/EnaDisAppEvents.bob +++ b/core/base/cfe/cdr/cfe_evs/EnaDisAppEvents.bob @@ -4,7 +4,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/EnaDisEventType.bob b/core/base/cfe/cdr/cfe_evs/EnaDisEventType.bob similarity index 99% rename from core/base/cfe/cdr/EVS/EnaDisEventType.bob rename to core/base/cfe/cdr/cfe_evs/EnaDisEventType.bob index bbef554fd..55faef9c8 100644 --- a/core/base/cfe/cdr/EVS/EnaDisEventType.bob +++ b/core/base/cfe/cdr/cfe_evs/EnaDisEventType.bob @@ -4,7 +4,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/EnaDisPorts.bob b/core/base/cfe/cdr/cfe_evs/EnaDisPorts.bob similarity index 99% rename from core/base/cfe/cdr/EVS/EnaDisPorts.bob rename to core/base/cfe/cdr/cfe_evs/EnaDisPorts.bob index 926c2a534..068cd0ad3 100644 --- a/core/base/cfe/cdr/EVS/EnaDisPorts.bob +++ b/core/base/cfe/cdr/cfe_evs/EnaDisPorts.bob @@ -4,7 +4,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/EventRecord.opi b/core/base/cfe/cdr/cfe_evs/EventRecord.opi similarity index 99% rename from core/base/cfe/cdr/EVS/EventRecord.opi rename to core/base/cfe/cdr/cfe_evs/EventRecord.opi index bcada8008..ab4230e04 100644 --- a/core/base/cfe/cdr/EVS/EventRecord.opi +++ b/core/base/cfe/cdr/cfe_evs/EventRecord.opi @@ -19,7 +19,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/Events.opi b/core/base/cfe/cdr/cfe_evs/Events.opi similarity index 99% rename from core/base/cfe/cdr/EVS/Events.opi rename to core/base/cfe/cdr/cfe_evs/Events.opi index 2c88cd830..fe4e718ea 100644 --- a/core/base/cfe/cdr/EVS/Events.opi +++ b/core/base/cfe/cdr/cfe_evs/Events.opi @@ -19,7 +19,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/Main.bob b/core/base/cfe/cdr/cfe_evs/Main.j2 similarity index 99% rename from core/base/cfe/cdr/EVS/Main.bob rename to core/base/cfe/cdr/cfe_evs/Main.j2 index 036518a30..31fa9ae4d 100644 --- a/core/base/cfe/cdr/EVS/Main.bob +++ b/core/base/cfe/cdr/cfe_evs/Main.j2 @@ -4,7 +4,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/ResetAppCounter.bob b/core/base/cfe/cdr/cfe_evs/ResetAppCounter.bob similarity index 98% rename from core/base/cfe/cdr/EVS/ResetAppCounter.bob rename to core/base/cfe/cdr/cfe_evs/ResetAppCounter.bob index a324bfdd0..9e6d861bc 100644 --- a/core/base/cfe/cdr/EVS/ResetAppCounter.bob +++ b/core/base/cfe/cdr/cfe_evs/ResetAppCounter.bob @@ -4,7 +4,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/ResetFilter.bob b/core/base/cfe/cdr/cfe_evs/ResetFilter.bob similarity index 99% rename from core/base/cfe/cdr/EVS/ResetFilter.bob rename to core/base/cfe/cdr/cfe_evs/ResetFilter.bob index fa50d80b5..e69ba77fe 100644 --- a/core/base/cfe/cdr/EVS/ResetFilter.bob +++ b/core/base/cfe/cdr/cfe_evs/ResetFilter.bob @@ -4,7 +4,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/SetFilter.bob b/core/base/cfe/cdr/cfe_evs/SetFilter.bob similarity index 99% rename from core/base/cfe/cdr/EVS/SetFilter.bob rename to core/base/cfe/cdr/cfe_evs/SetFilter.bob index d69522985..1fd7104be 100644 --- a/core/base/cfe/cdr/EVS/SetFilter.bob +++ b/core/base/cfe/cdr/cfe_evs/SetFilter.bob @@ -4,7 +4,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/SetLogMode.bob b/core/base/cfe/cdr/cfe_evs/SetLogMode.bob similarity index 98% rename from core/base/cfe/cdr/EVS/SetLogMode.bob rename to core/base/cfe/cdr/cfe_evs/SetLogMode.bob index fc21bd98d..5e38e909b 100644 --- a/core/base/cfe/cdr/EVS/SetLogMode.bob +++ b/core/base/cfe/cdr/cfe_evs/SetLogMode.bob @@ -4,7 +4,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/SetMessageFormat.bob b/core/base/cfe/cdr/cfe_evs/SetMessageFormat.bob similarity index 98% rename from core/base/cfe/cdr/EVS/SetMessageFormat.bob rename to core/base/cfe/cdr/cfe_evs/SetMessageFormat.bob index 50df1de70..2c8cc3ba7 100644 --- a/core/base/cfe/cdr/EVS/SetMessageFormat.bob +++ b/core/base/cfe/cdr/cfe_evs/SetMessageFormat.bob @@ -4,7 +4,7 @@ cfe_evs true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/EVS/resources/scripts/JS/AddAppEventFilter.js b/core/base/cfe/cdr/cfe_evs/resources/scripts/JS/AddAppEventFilter.js similarity index 100% rename from core/base/cfe/cdr/EVS/resources/scripts/JS/AddAppEventFilter.js rename to core/base/cfe/cdr/cfe_evs/resources/scripts/JS/AddAppEventFilter.js diff --git a/core/base/cfe/cdr/EVS/resources/scripts/JS/DeleteAppEventFilter.js b/core/base/cfe/cdr/cfe_evs/resources/scripts/JS/DeleteAppEventFilter.js similarity index 100% rename from core/base/cfe/cdr/EVS/resources/scripts/JS/DeleteAppEventFilter.js rename to core/base/cfe/cdr/cfe_evs/resources/scripts/JS/DeleteAppEventFilter.js diff --git a/core/base/cfe/cdr/EVS/resources/scripts/JS/ResetAppEventFilter.js b/core/base/cfe/cdr/cfe_evs/resources/scripts/JS/ResetAppEventFilter.js similarity index 100% rename from core/base/cfe/cdr/EVS/resources/scripts/JS/ResetAppEventFilter.js rename to core/base/cfe/cdr/cfe_evs/resources/scripts/JS/ResetAppEventFilter.js diff --git a/core/base/cfe/cdr/EVS/resources/scripts/JS/SetAppEventFilter.js b/core/base/cfe/cdr/cfe_evs/resources/scripts/JS/SetAppEventFilter.js similarity index 100% rename from core/base/cfe/cdr/EVS/resources/scripts/JS/SetAppEventFilter.js rename to core/base/cfe/cdr/cfe_evs/resources/scripts/JS/SetAppEventFilter.js diff --git a/core/base/cfe/cdr/EVS/resources/scripts/JS/events_init.js b/core/base/cfe/cdr/cfe_evs/resources/scripts/JS/events_init.js similarity index 100% rename from core/base/cfe/cdr/EVS/resources/scripts/JS/events_init.js rename to core/base/cfe/cdr/cfe_evs/resources/scripts/JS/events_init.js diff --git a/core/base/cfe/cdr/EVS/resources/scripts/Python/DeleteEventFilter.py b/core/base/cfe/cdr/cfe_evs/resources/scripts/Python/DeleteEventFilter.py similarity index 100% rename from core/base/cfe/cdr/EVS/resources/scripts/Python/DeleteEventFilter.py rename to core/base/cfe/cdr/cfe_evs/resources/scripts/Python/DeleteEventFilter.py diff --git a/core/base/cfe/cdr/EVS/resources/scripts/Python/ResetEventFilter.py b/core/base/cfe/cdr/cfe_evs/resources/scripts/Python/ResetEventFilter.py similarity index 100% rename from core/base/cfe/cdr/EVS/resources/scripts/Python/ResetEventFilter.py rename to core/base/cfe/cdr/cfe_evs/resources/scripts/Python/ResetEventFilter.py diff --git a/core/base/cfe/cdr/EVS/resources/scripts/Python/events_init.py b/core/base/cfe/cdr/cfe_evs/resources/scripts/Python/events_init.py similarity index 100% rename from core/base/cfe/cdr/EVS/resources/scripts/Python/events_init.py rename to core/base/cfe/cdr/cfe_evs/resources/scripts/Python/events_init.py diff --git a/core/base/cfe/cdr/EVS/resources/scripts/XML/ResetEvent.xml b/core/base/cfe/cdr/cfe_evs/resources/scripts/XML/ResetEvent.xml similarity index 100% rename from core/base/cfe/cdr/EVS/resources/scripts/XML/ResetEvent.xml rename to core/base/cfe/cdr/cfe_evs/resources/scripts/XML/ResetEvent.xml diff --git a/core/base/cfe/cdr/EVS/resources/templates/EventControl.j2 b/core/base/cfe/cdr/cfe_evs/resources/templates/EventControl.j2 similarity index 97% rename from core/base/cfe/cdr/EVS/resources/templates/EventControl.j2 rename to core/base/cfe/cdr/cfe_evs/resources/templates/EventControl.j2 index dbc552405..22e14a09a 100644 --- a/core/base/cfe/cdr/EVS/resources/templates/EventControl.j2 +++ b/core/base/cfe/cdr/cfe_evs/resources/templates/EventControl.j2 @@ -509,7 +509,7 @@ Yamcs.issueCommand(widget, '/cfs/$(CPUID)/cfe_evs/ResetAppFilters', { Event_ResetFilter_{{ events[event].id }} - @@ -532,7 +532,7 @@ Yamcs.issueCommand(widget, '/cfs/$(CPUID)/cfe_evs/ResetAppFilters', { Event_SetFilter_{{ events[event].id }} - @@ -555,7 +555,7 @@ Yamcs.issueCommand(widget, '/cfs/$(CPUID)/cfe_evs/ResetAppFilters', { Event_AddFilter_{{ events[event].id }} - @@ -578,7 +578,7 @@ Yamcs.issueCommand(widget, '/cfs/$(CPUID)/cfe_evs/ResetAppFilters', { Event_DeleteFilter_{{ events[event].id }} - diff --git a/core/base/cfe/cdr/SB/DumpMapInfo.bob b/core/base/cfe/cdr/cfe_sb/DumpMapInfo.bob similarity index 98% rename from core/base/cfe/cdr/SB/DumpMapInfo.bob rename to core/base/cfe/cdr/cfe_sb/DumpMapInfo.bob index 8cfe3b42e..b1717dfaf 100644 --- a/core/base/cfe/cdr/SB/DumpMapInfo.bob +++ b/core/base/cfe/cdr/cfe_sb/DumpMapInfo.bob @@ -4,7 +4,7 @@ cfe_sb true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/SB/DumpPipeInfo.bob b/core/base/cfe/cdr/cfe_sb/DumpPipeInfo.bob similarity index 98% rename from core/base/cfe/cdr/SB/DumpPipeInfo.bob rename to core/base/cfe/cdr/cfe_sb/DumpPipeInfo.bob index 2404ccfc4..bda738b46 100644 --- a/core/base/cfe/cdr/SB/DumpPipeInfo.bob +++ b/core/base/cfe/cdr/cfe_sb/DumpPipeInfo.bob @@ -4,7 +4,7 @@ cfe_sb true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/SB/DumpRoutingInfo.bob b/core/base/cfe/cdr/cfe_sb/DumpRoutingInfo.bob similarity index 98% rename from core/base/cfe/cdr/SB/DumpRoutingInfo.bob rename to core/base/cfe/cdr/cfe_sb/DumpRoutingInfo.bob index 4fd1bc21d..b17163781 100644 --- a/core/base/cfe/cdr/SB/DumpRoutingInfo.bob +++ b/core/base/cfe/cdr/cfe_sb/DumpRoutingInfo.bob @@ -4,7 +4,7 @@ cfe_sb true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/SB/EnaDisRoutes.bob b/core/base/cfe/cdr/cfe_sb/EnaDisRoutes.bob similarity index 99% rename from core/base/cfe/cdr/SB/EnaDisRoutes.bob rename to core/base/cfe/cdr/cfe_sb/EnaDisRoutes.bob index 4066c575e..92867f235 100644 --- a/core/base/cfe/cdr/SB/EnaDisRoutes.bob +++ b/core/base/cfe/cdr/cfe_sb/EnaDisRoutes.bob @@ -4,7 +4,7 @@ cfe_sb true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/SB/Main.bob b/core/base/cfe/cdr/cfe_sb/Main.bob similarity index 99% rename from core/base/cfe/cdr/SB/Main.bob rename to core/base/cfe/cdr/cfe_sb/Main.bob index 04f998748..d2d5991b2 100644 --- a/core/base/cfe/cdr/SB/Main.bob +++ b/core/base/cfe/cdr/cfe_sb/Main.bob @@ -4,7 +4,7 @@ cfe_sb true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/SB/ViewAllSubReports.bob b/core/base/cfe/cdr/cfe_sb/ViewAllSubReports.bob similarity index 99% rename from core/base/cfe/cdr/SB/ViewAllSubReports.bob rename to core/base/cfe/cdr/cfe_sb/ViewAllSubReports.bob index 16ac83807..1fb321ba6 100644 --- a/core/base/cfe/cdr/SB/ViewAllSubReports.bob +++ b/core/base/cfe/cdr/cfe_sb/ViewAllSubReports.bob @@ -4,7 +4,7 @@ cfe_sb true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/SB/ViewStatistics.bob b/core/base/cfe/cdr/cfe_sb/ViewStatistics.bob similarity index 99% rename from core/base/cfe/cdr/SB/ViewStatistics.bob rename to core/base/cfe/cdr/cfe_sb/ViewStatistics.bob index 61db5ca9d..e6943f1e9 100644 --- a/core/base/cfe/cdr/SB/ViewStatistics.bob +++ b/core/base/cfe/cdr/cfe_sb/ViewStatistics.bob @@ -4,7 +4,7 @@ cfe_sb true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/SB/ViewSubReport.bob b/core/base/cfe/cdr/cfe_sb/ViewSubReport.bob similarity index 99% rename from core/base/cfe/cdr/SB/ViewSubReport.bob rename to core/base/cfe/cdr/cfe_sb/ViewSubReport.bob index 8651ada81..6ed234da3 100644 --- a/core/base/cfe/cdr/SB/ViewSubReport.bob +++ b/core/base/cfe/cdr/cfe_sb/ViewSubReport.bob @@ -4,7 +4,7 @@ cfe_sb true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TBL/AbortTableLoad.bob b/core/base/cfe/cdr/cfe_tbl/AbortTableLoad.bob similarity index 98% rename from core/base/cfe/cdr/TBL/AbortTableLoad.bob rename to core/base/cfe/cdr/cfe_tbl/AbortTableLoad.bob index 24cced53b..365b16ad9 100644 --- a/core/base/cfe/cdr/TBL/AbortTableLoad.bob +++ b/core/base/cfe/cdr/cfe_tbl/AbortTableLoad.bob @@ -4,7 +4,7 @@ cfe_tbl true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TBL/ActivateTable.bob b/core/base/cfe/cdr/cfe_tbl/ActivateTable.bob similarity index 98% rename from core/base/cfe/cdr/TBL/ActivateTable.bob rename to core/base/cfe/cdr/cfe_tbl/ActivateTable.bob index 7c19aa9de..d17fe40ba 100644 --- a/core/base/cfe/cdr/TBL/ActivateTable.bob +++ b/core/base/cfe/cdr/cfe_tbl/ActivateTable.bob @@ -4,7 +4,7 @@ cfe_tbl true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TBL/DeleteCDS.bob b/core/base/cfe/cdr/cfe_tbl/DeleteCDS.bob similarity index 98% rename from core/base/cfe/cdr/TBL/DeleteCDS.bob rename to core/base/cfe/cdr/cfe_tbl/DeleteCDS.bob index 067db3b88..0fc929ffc 100644 --- a/core/base/cfe/cdr/TBL/DeleteCDS.bob +++ b/core/base/cfe/cdr/cfe_tbl/DeleteCDS.bob @@ -4,7 +4,7 @@ cfe_tbl true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TBL/DumpRegistry.bob b/core/base/cfe/cdr/cfe_tbl/DumpRegistry.bob similarity index 98% rename from core/base/cfe/cdr/TBL/DumpRegistry.bob rename to core/base/cfe/cdr/cfe_tbl/DumpRegistry.bob index ccb5712d0..d50b926b0 100644 --- a/core/base/cfe/cdr/TBL/DumpRegistry.bob +++ b/core/base/cfe/cdr/cfe_tbl/DumpRegistry.bob @@ -4,7 +4,7 @@ cfe_tbl true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TBL/DumpTable.bob b/core/base/cfe/cdr/cfe_tbl/DumpTable.bob similarity index 99% rename from core/base/cfe/cdr/TBL/DumpTable.bob rename to core/base/cfe/cdr/cfe_tbl/DumpTable.bob index fccd9dccb..6721dc807 100644 --- a/core/base/cfe/cdr/TBL/DumpTable.bob +++ b/core/base/cfe/cdr/cfe_tbl/DumpTable.bob @@ -4,7 +4,7 @@ cfe_tbl true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TBL/LoadTable.bob b/core/base/cfe/cdr/cfe_tbl/LoadTable.bob similarity index 98% rename from core/base/cfe/cdr/TBL/LoadTable.bob rename to core/base/cfe/cdr/cfe_tbl/LoadTable.bob index 060da0b67..97e8eb022 100644 --- a/core/base/cfe/cdr/TBL/LoadTable.bob +++ b/core/base/cfe/cdr/cfe_tbl/LoadTable.bob @@ -4,7 +4,7 @@ cfe_tbl true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TBL/Main.bob b/core/base/cfe/cdr/cfe_tbl/Main.bob similarity index 99% rename from core/base/cfe/cdr/TBL/Main.bob rename to core/base/cfe/cdr/cfe_tbl/Main.bob index c1a30b92c..87db95434 100644 --- a/core/base/cfe/cdr/TBL/Main.bob +++ b/core/base/cfe/cdr/cfe_tbl/Main.bob @@ -4,7 +4,7 @@ cfe_tbl true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TBL/ValidateTable.bob b/core/base/cfe/cdr/cfe_tbl/ValidateTable.bob similarity index 98% rename from core/base/cfe/cdr/TBL/ValidateTable.bob rename to core/base/cfe/cdr/cfe_tbl/ValidateTable.bob index 99452abe9..ebb24d832 100644 --- a/core/base/cfe/cdr/TBL/ValidateTable.bob +++ b/core/base/cfe/cdr/cfe_tbl/ValidateTable.bob @@ -4,7 +4,7 @@ cfe_tbl true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TBL/ViewRegistry.bob b/core/base/cfe/cdr/cfe_tbl/ViewRegistry.bob similarity index 99% rename from core/base/cfe/cdr/TBL/ViewRegistry.bob rename to core/base/cfe/cdr/cfe_tbl/ViewRegistry.bob index c5b1b3531..e0cceccd4 100644 --- a/core/base/cfe/cdr/TBL/ViewRegistry.bob +++ b/core/base/cfe/cdr/cfe_tbl/ViewRegistry.bob @@ -4,7 +4,7 @@ cfe_tbl true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TIME/Main.bob b/core/base/cfe/cdr/cfe_time/Main.bob similarity index 99% rename from core/base/cfe/cdr/TIME/Main.bob rename to core/base/cfe/cdr/cfe_time/Main.bob index 885d88c83..91d0d7d1a 100644 --- a/core/base/cfe/cdr/TIME/Main.bob +++ b/core/base/cfe/cdr/cfe_time/Main.bob @@ -4,7 +4,7 @@ cfe_time true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TIME/SetAdjust.bob b/core/base/cfe/cdr/cfe_time/SetAdjust.bob similarity index 99% rename from core/base/cfe/cdr/TIME/SetAdjust.bob rename to core/base/cfe/cdr/cfe_time/SetAdjust.bob index 15aefa0f7..aef8f3819 100644 --- a/core/base/cfe/cdr/TIME/SetAdjust.bob +++ b/core/base/cfe/cdr/cfe_time/SetAdjust.bob @@ -3,7 +3,7 @@ cfe_time true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TIME/SetDelay.bob b/core/base/cfe/cdr/cfe_time/SetDelay.bob similarity index 99% rename from core/base/cfe/cdr/TIME/SetDelay.bob rename to core/base/cfe/cdr/cfe_time/SetDelay.bob index dfef5e397..8810a74e3 100644 --- a/core/base/cfe/cdr/TIME/SetDelay.bob +++ b/core/base/cfe/cdr/cfe_time/SetDelay.bob @@ -3,7 +3,7 @@ cfe_time true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TIME/SetLeaps.bob b/core/base/cfe/cdr/cfe_time/SetLeaps.bob similarity index 99% rename from core/base/cfe/cdr/TIME/SetLeaps.bob rename to core/base/cfe/cdr/cfe_time/SetLeaps.bob index 38e0c454b..2311019c9 100644 --- a/core/base/cfe/cdr/TIME/SetLeaps.bob +++ b/core/base/cfe/cdr/cfe_time/SetLeaps.bob @@ -3,7 +3,7 @@ cfe_time true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TIME/SetSignal.bob b/core/base/cfe/cdr/cfe_time/SetSignal.bob similarity index 98% rename from core/base/cfe/cdr/TIME/SetSignal.bob rename to core/base/cfe/cdr/cfe_time/SetSignal.bob index 71a978916..f33e6cffc 100644 --- a/core/base/cfe/cdr/TIME/SetSignal.bob +++ b/core/base/cfe/cdr/cfe_time/SetSignal.bob @@ -3,7 +3,7 @@ cfe_time true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TIME/SetSource.bob b/core/base/cfe/cdr/cfe_time/SetSource.bob similarity index 98% rename from core/base/cfe/cdr/TIME/SetSource.bob rename to core/base/cfe/cdr/cfe_time/SetSource.bob index 7ac6178e9..5f7fa4d6b 100644 --- a/core/base/cfe/cdr/TIME/SetSource.bob +++ b/core/base/cfe/cdr/cfe_time/SetSource.bob @@ -3,7 +3,7 @@ cfe_time true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TIME/SetState.bob b/core/base/cfe/cdr/cfe_time/SetState.bob similarity index 98% rename from core/base/cfe/cdr/TIME/SetState.bob rename to core/base/cfe/cdr/cfe_time/SetState.bob index f3e1103ad..f813117f1 100644 --- a/core/base/cfe/cdr/TIME/SetState.bob +++ b/core/base/cfe/cdr/cfe_time/SetState.bob @@ -3,7 +3,7 @@ cfe_time true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TIME/SetTime.bob b/core/base/cfe/cdr/cfe_time/SetTime.bob similarity index 99% rename from core/base/cfe/cdr/TIME/SetTime.bob rename to core/base/cfe/cdr/cfe_time/SetTime.bob index 46d8e9cbc..bc3259b8f 100644 --- a/core/base/cfe/cdr/TIME/SetTime.bob +++ b/core/base/cfe/cdr/cfe_time/SetTime.bob @@ -3,7 +3,7 @@ cfe_time true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TIME/ToneData.bob b/core/base/cfe/cdr/cfe_time/ToneData.bob similarity index 99% rename from core/base/cfe/cdr/TIME/ToneData.bob rename to core/base/cfe/cdr/cfe_time/ToneData.bob index f29958fe6..c6ea11996 100644 --- a/core/base/cfe/cdr/TIME/ToneData.bob +++ b/core/base/cfe/cdr/cfe_time/ToneData.bob @@ -3,7 +3,7 @@ cfe_time true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TIME/ViewDiagnostic.bob b/core/base/cfe/cdr/cfe_time/ViewDiagnostic.bob similarity index 99% rename from core/base/cfe/cdr/TIME/ViewDiagnostic.bob rename to core/base/cfe/cdr/cfe_time/ViewDiagnostic.bob index b602165b4..0f93ad4bb 100644 --- a/core/base/cfe/cdr/TIME/ViewDiagnostic.bob +++ b/core/base/cfe/cdr/cfe_time/ViewDiagnostic.bob @@ -4,7 +4,7 @@ cfe_time true - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/core/modules/cfe/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/cfe/cdr/TIME/resources/scripts/NoOp.js b/core/base/cfe/cdr/cfe_time/resources/scripts/NoOp.js similarity index 100% rename from core/base/cfe/cdr/TIME/resources/scripts/NoOp.js rename to core/base/cfe/cdr/cfe_time/resources/scripts/NoOp.js diff --git a/core/base/cfe/cdr/TIME/resources/scripts/ResetCounters.js b/core/base/cfe/cdr/cfe_time/resources/scripts/ResetCounters.js similarity index 100% rename from core/base/cfe/cdr/TIME/resources/scripts/ResetCounters.js rename to core/base/cfe/cdr/cfe_time/resources/scripts/ResetCounters.js diff --git a/core/base/cfe/cdr/TIME/resources/scripts/format_cfe_time.py b/core/base/cfe/cdr/cfe_time/resources/scripts/format_cfe_time.py similarity index 100% rename from core/base/cfe/cdr/TIME/resources/scripts/format_cfe_time.py rename to core/base/cfe/cdr/cfe_time/resources/scripts/format_cfe_time.py diff --git a/core/base/cfe/cdr/TIME/resources/scripts/set_tone_data.py b/core/base/cfe/cdr/cfe_time/resources/scripts/set_tone_data.py similarity index 100% rename from core/base/cfe/cdr/TIME/resources/scripts/set_tone_data.py rename to core/base/cfe/cdr/cfe_time/resources/scripts/set_tone_data.py diff --git a/core/base/cfe/wh_design.yaml b/core/base/cfe/wh_design.yaml index 30b75c358..79a5f6e21 100644 --- a/core/base/cfe/wh_design.yaml +++ b/core/base/cfe/wh_design.yaml @@ -69,7 +69,7 @@ modules: long_name: Core Flight Executive - Essential Services app_name: CFE_ES module_type: CFE_CORE - events: + events: CFE_ES_INIT_INF_EID: id: 1 CFE_ES_INITSTATS_INF_EID: @@ -193,7 +193,7 @@ modules: CFE_ES_PERF_STOPCMD_ERR2_EID: id: 62 CFE_ES_PERF_FILTMSKCMD_EID: - id: 63 + id: 63 CFE_ES_PERF_FILTMSKERR_EID: id: 64 CFE_ES_PERF_TRIGMSKCMD_EID: @@ -306,8 +306,8 @@ modules: type: string - parent: CFE_ES_DumpCDSRegCmd_Payload_t member: DumpFilename - type: string - + type: string + - parent: CFE_ES_AppInfo_t member: Type type: enumeration @@ -795,12 +795,13 @@ modules: long_name: Core Flight Executive - Event Services app_name: CFE_EVS module_type: CFE_CORE - commander_templates: - _EVENT_CONTROL: - template: "cdr/EVS/resources/templates/EventControl.j2" - output: "EventControl.bob" - scope: GLOBAL - events: + commander: + templates: + _EVENT_CONTROL: + template: "cdr/cfe_evs/resources/templates/EventControl.j2" + output: "EventControl.bob" + scope: GLOBAL + events: CFE_EVS_ERR_WRLOGFILE_EID: id: 2 CFE_EVS_ERR_CRLOGFILE_EID: @@ -939,7 +940,7 @@ modules: CRITICAL: 4 - parent: CFE_EVS_Packet_Payload_t member: Message - type: string + type: string telemetry: CFE_EVS_HK_TLM_MID: msgID: 0x0801 @@ -1081,7 +1082,7 @@ modules: long_name: Core Flight Executive - Software Bus app_name: CFE_SB module_type: CFE_CORE - events: + events: CFE_SB_INIT_EID: id: 1 CFE_SB_CR_PIPE_BAD_ARG_EID: @@ -1213,7 +1214,7 @@ modules: type: enumeration enumerations: SUBSCRIPTION: 0 - UNSUBSCRIPTION: 1 + UNSUBSCRIPTION: 1 telemetry: CFE_SB_HK_TLM_MID: msgID: 0x0803 @@ -1458,7 +1459,7 @@ modules: long_name: Core Flight Executive - Table Services app_name: CFE_TBL module_type: CFE_CORE - events: + events: CFE_TBL_INIT_INF_EID: id: 1 # Removed 2-9 @@ -1789,7 +1790,7 @@ modules: long_name: Core Flight Executive - Time Services app_name: CFE_TIME module_type: CFE_CORE - events: + events: CFE_TIME_INIT_EID: id: 1 # Removed 2-3 @@ -1954,7 +1955,7 @@ modules: ERROR: 1 BAD: 2 NEW: 3 - EXISTING: 4 + EXISTING: 4 telemetry: CFE_TIME_DIAG_TLM_MID: msgID: 0x0806 diff --git a/core/base/psp/make/cdr_opi_macro_block.xml b/core/base/psp/make/cdr_opi_macro_block.xml index e27afa018..ba83114c1 100644 --- a/core/base/psp/make/cdr_opi_macro_block.xml +++ b/core/base/psp/make/cdr_opi_macro_block.xml @@ -1 +1 @@ -@BUILDLINER_CDR_CPUID@ \ No newline at end of file +{{ cpu_id }} \ No newline at end of file diff --git a/core/base/tools/commander/generate_workspace.py b/core/base/tools/commander/generate_workspace.py new file mode 100644 index 000000000..ec8530602 --- /dev/null +++ b/core/base/tools/commander/generate_workspace.py @@ -0,0 +1,218 @@ +""" + + Copyright (c) 2017 Windhover Labs, L.L.C. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + 3. Neither the name Windhover Labs nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS + OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED + AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + +""" + +__author__ = 'Mathew Benson' + +""" +Utilities for parsing and returning the CFE Table Name from a json file. + +Usage: +python parse_configuration.py [path to json file] +""" + +import sys +import json +import yaml +import os +import jinja2 +import filecmp +import shutil +import errno + + + +def copyAll(src_path, dst_path, is_templated=False, rootModule=None, targetModule=None, modPath=None): + os.makedirs(dst_path, exist_ok=True) + files = next(os.walk(src_path))[2] + folders = next(os.walk(src_path))[1] + for file in files: # Copy the files + src_file = src_path + "/" + file + dst_file = dst_path + "/" + file + if os.path.exists(dst_file): # Delete the old files if already exist + os.remove(dst_file) + if not is_templated: + shutil.copy(src_file, dst_file) + else: + cpuID = getCpuId(rootModule, modPath) + + data = {'module': targetModule, 'root': rootModule, "cpu_id": cpuID} + if 'module_type' in targetModule: + module_type = targetModule['module_type'] + else: + module_type = 'NOT_SUPPORTED' + + j2Env = jinja2.Environment(loader=jinja2.FileSystemLoader(src_path)) + output = j2Env.get_template(file).render(data) + + # If there is an existing file, only write the file if the contents have changed. + writeFile = True + + if os.path.exists(dst_file): + # It does exist. Now load it. + with open(dst_file, 'r') as outFile: + oldData = outFile.read() + if oldData == output: + writeFile = False + + if writeFile: + # Save the results + with open(dst_file, "w") as dst_file: + dst_file.write(output) + + for folder in folders: # Merge again with the subdirectories + scr_folder = src_path + "/" + folder + dst_folder = dst_path + "/" + folder + copyAll(scr_folder, dst_folder, is_templated, rootModule, targetModule, modPath) + + + +def getCpuId(rootModule, modPath): + cpuID = modPath.split("/")[0] + + return cpuID + + + +def generateCommanderDisplay(rootModule, targetModule, templateDir, templateFile, outputName, cdrBasePath, modPath): + if 'app_name' in targetModule.keys(): + app_name = targetModule['app_name'] + shortName = targetModule['short_name'] + outPath = os.path.join(cdrBasePath, "Displays", modPath) + + cpuID = getCpuId(rootModule, modPath) + + data = {'module': targetModule, 'root': rootModule, "cpu_id": cpuID} + if 'module_type' in targetModule: + module_type = targetModule['module_type'] + else: + module_type = 'NOT_SUPPORTED' + + outFileName = os.path.join(outPath, outputName) + os.makedirs(outPath, exist_ok=True) + + j2Env = jinja2.Environment(loader=jinja2.FileSystemLoader(templateDir)) + output = j2Env.get_template(templateFile).render(data) + + # If there is an existing file, only write the file if the contents have changed. + writeFile = True + + if os.path.exists(outFileName): + # It does exist. Now load it. + with open(outFileName, 'r') as outFile: + oldData = outFile.read() + if oldData == output: + writeFile = False + + if writeFile: + # Save the results + with open(outFileName, "w") as outputFile: + outputFile.write(output) + + if 'modules' in targetModule.keys(): + for moduleName in targetModule['modules']: + newModPath = modPath + moduleName + "/" + generateCommanderDisplay(rootModule, targetModule['modules'][moduleName], templateDir, templateFile, outputName, cdrBasePath, newModPath) + + + +def parseModule(rootModule, currentModule, currentModuleName, dirBase, cdrBasePath, modPath): + if 'definition' in currentModule: + dirBase = os.path.abspath(os.path.dirname(currentModule['definition'])) + + if 'commander' in currentModule.keys(): + + if 'server_overlay' in currentModule['commander']: + srcPath = os.path.join(dirBase, currentModule['commander']['server_overlay']) + + if os.path.isdir(srcPath): + copyAll(srcPath, cdrBasePath) + else: + print("Cannot apply server overlay '/" + modPath + "'. 'server_overlay' '" + srcPath + "' not found. Skipping.") + + if 'displays' in currentModule['commander']: + srcPath = os.path.join(dirBase, currentModule['commander']['displays']) + dstPath = os.path.join(cdrBasePath, "Displays", modPath) + + if os.path.isdir(srcPath): + copyAll(srcPath, dstPath, True, rootModule, currentModule, modPath) + else: + print("Cannot populate displays for '/" + modPath + "'. 'displays' '" + srcPath + "' not found. Skipping.") + + if 'templates' in currentModule['commander']: + for cdrTypeName in currentModule['commander']['templates']: + objDisplayType = currentModule['commander']['templates'][cdrTypeName] + + # Get the template directory + cdrDirectory = os.path.dirname(os.path.join(dirBase, objDisplayType['template'])) + + # Get the template filename + cdrFileName = os.path.basename(objDisplayType['template']) + + if not os.path.isfile(cdrDirectory + "/" + cdrFileName): + print("Cannot generate from template '/" + modPath + cdrTypeName + "'. File '" + cdrDirectory + "/" + cdrFileName + "' not found. Skipping.") + else: + outFileName = objDisplayType['output'] + + if 'scope' in objDisplayType.keys(): + if objDisplayType['scope'] == 'GLOBAL': + generateCommanderDisplay(rootModule, rootModule, cdrDirectory, cdrFileName, outFileName, cdrBasePath, "") + else: + generateCommanderDisplay(rootModule, currentModule, cdrDirectory, cdrFileName, outFileName, cdrBasePath, modPath) + else: + generateCommanderDisplay(rootModule, currentModule, cdrDirectory, cdrFileName, outFileName, cdrBasePath, modPath) + + #parseModuleCommanderTemplates(rootModule, currentModule, dirBase, cdrBasePath, modPath) + + if 'modules' in currentModule.keys(): + for moduleName in currentModule['modules']: + newModPath = modPath + moduleName + "/" + parseModule(rootModule, currentModule['modules'][moduleName], moduleName, dirBase, cdrBasePath, newModPath) + + + +# Load the local configuration file +if len(sys.argv) == 3: + configFileName = sys.argv[1] + cdrBasePath = sys.argv[2] + + with open(configFileName, 'r') as configFile: + + config = yaml.load(configFile, Loader=yaml.FullLoader) + + # Copy in the workspace template + src_path = os.path.join(os.path.dirname(__file__), "workspace_template") + copyAll(src_path, cdrBasePath) + + # Now parse the root module + parseModule(config, config, "", "", cdrBasePath, "") + \ No newline at end of file diff --git a/core/base/tools/commander/workspace_template/Displays/Main.opi b/core/base/tools/commander/workspace_template/Displays/Main.opi index 9f738722c..a22d4a8cf 100644 --- a/core/base/tools/commander/workspace_template/Displays/Main.opi +++ b/core/base/tools/commander/workspace_template/Displays/Main.opi @@ -492,7 +492,7 @@ $(pv_value) - PPD/Core/ES/Main.opi + ppd/core/cfe/cfe_es/Main.opi true @@ -627,7 +627,7 @@ $(pv_value) - PPD/Core/EVS/Main.opi + ppd/core/cfe/cfe_evs/Main.opi true @@ -722,7 +722,7 @@ $(pv_value) - PPD/Core/SB/Main.opi + ppd/core/cfe/cfe_sb/Main.opi true @@ -817,7 +817,7 @@ $(pv_value) - PPD/Core/TBL/Main.opi + ppd/core/cfe/cfe_tbl/Main.opi true @@ -912,7 +912,7 @@ $(pv_value) - PPD/Core/TIME/Main.opi + ppd/core/cfe/cfe_time/Main.opi true @@ -967,7 +967,7 @@ $(pv_value) - CPD/Core/ES/Main.opi + cpd/core/cfe/cfe_es/Main.opi true @@ -1022,7 +1022,7 @@ $(pv_value) - CPD/Core/EVS/Main.opi + cpd/core/cfe/cfe_evs/Main.opi true @@ -1077,7 +1077,7 @@ $(pv_value) - CPD/Core/SB/Main.opi + cpd/core/cfe/cfe_sb/Main.opi true @@ -1132,7 +1132,7 @@ $(pv_value) - CPD/Core/TBL/Main.opi + cpd/core/cfe/cfe_tbl/Main.opi true @@ -1187,7 +1187,7 @@ $(pv_value) - CPD/Core/TIME/Main.opi + cpd/core/cfe/cfe_time/Main.opi true @@ -1323,7 +1323,7 @@ $(pv_value) - PPD/Apps/CF/Main.opi + ppd/apps/cf/Main.opi true @@ -1458,7 +1458,7 @@ $(pv_value) - PPD/Apps/CS/Main.opi + ppd/apps/cs/Main.opi true @@ -1553,7 +1553,7 @@ $(pv_value) - PPD/Apps/DS/Main.opi + ppd/apps/ds/Main.opi true @@ -1648,7 +1648,7 @@ $(pv_value) - PPD/Apps/FM/Main.opi + ppd/apps/ds/Main.opi true @@ -1743,7 +1743,7 @@ $(pv_value) - PPD/Apps/HK/Main.opi + ppd/apps/hk/Main.opi true @@ -1838,7 +1838,7 @@ $(pv_value) - PPD/Apps/CI/Main.opi + ppd/apps/ci/Main.opi true @@ -1933,7 +1933,7 @@ $(pv_value) - PPD/Apps/HS/Main.opi + ppd/apps/hs/Main.opi true @@ -2028,7 +2028,7 @@ $(pv_value) - PPD/Apps/LC/Main.opi + ppd/apps/lc/Main.opi true @@ -2123,7 +2123,7 @@ $(pv_value) - PPD/Apps/MD/Main.opi + ppd/apps/md/Main.opi true @@ -2218,7 +2218,7 @@ $(pv_value) - PPD/Apps/MM/Main.opi + ppd/apps/mm/Main.opi true @@ -2313,7 +2313,7 @@ $(pv_value) - PPD/Apps/SC/Main.opi + ppd/apps/sc/Main.opi true @@ -2408,7 +2408,7 @@ $(pv_value) - PPD/Apps/SCH/Main.opi + ppd/apps/sch/Main.opi true @@ -2503,7 +2503,7 @@ $(pv_value) - PPD/Apps/TO/Main.opi + ppd/apps/to/Main.opi true @@ -2558,7 +2558,7 @@ $(pv_value) - CPD/Apps/CF/Main.opi + cpd/apps/cf/Main.opi true @@ -2613,7 +2613,7 @@ $(pv_value) - CPD/Apps/CS/Main.opi + cpd/apps/cs/Main.opi true @@ -2668,7 +2668,7 @@ $(pv_value) - CPD/Apps/FM/Main.opi + cpd/apps/fm/Main.opi true @@ -2723,7 +2723,7 @@ $(pv_value) - CPD/Apps/HS/Main.opi + cpd/apps/hs/Main.opi true @@ -2778,7 +2778,7 @@ $(pv_value) - CPD/Apps/LC/Main.opi + cpd/apps/lc/Main.opi true @@ -2833,7 +2833,7 @@ $(pv_value) - CPD/Apps/MD/Main.opi + cpd/apps/md/Main.opi true @@ -2888,7 +2888,7 @@ $(pv_value) - CPD/Apps/MM/Main.opi + cpd/apps/mm/Main.opi true @@ -2943,7 +2943,7 @@ $(pv_value) - CPD/Apps/SC/Main.opi + cpd/apps/sc/Main.opi true @@ -2998,7 +2998,7 @@ $(pv_value) - CPD/Apps/SCH/Main.opi + cpd/apps/sch/Main.opi true @@ -3053,7 +3053,7 @@ $(pv_value) - CPD/Apps/TO/Main.opi + cpd/apps/to/Main.opi true @@ -3148,7 +3148,7 @@ $(pv_value) - CPD/Apps/PE/Main.opi + cpd/apps/pe/Main.opi true @@ -3243,7 +3243,7 @@ $(pv_value) - CPD/Apps/SENS/Main.opi + cpd/apps/sens/Main.opi true @@ -3338,7 +3338,7 @@ $(pv_value) - CPD/Apps/VM/Main.opi + cpd/apps/vm/Main.opi true @@ -3433,7 +3433,7 @@ $(pv_value) - CPD/Apps/PX4/Main.opi + cpd/apps/px4lib/Main.opi true @@ -3488,7 +3488,7 @@ $(pv_value) - CPD/Apps/CI/Main.opi + cpd/apps/ci/Main.opi true @@ -3583,7 +3583,7 @@ $(pv_value) - CPD/Apps/SED/Main.opi + cpd/apps/sed/Main.opi true @@ -3638,7 +3638,7 @@ $(pv_value) - PPD/Apps/PX4/Main.opi + ppd/apps/px4lib/Main.opi true @@ -3733,7 +3733,7 @@ $(pv_value) - CPD/Apps/ZUSUP/Main.opi + cpd/apps/zusup/Main.opi true @@ -3828,7 +3828,7 @@ $(pv_value) - CPD/Apps/SBN/Main.opi + cpd/apps/sbn/Main.opi true @@ -3883,7 +3883,7 @@ $(pv_value) - PPD/Apps/SBN/Main.opi + ppd/apps/sbn/Main.opi true @@ -3978,7 +3978,7 @@ $(pv_value) - PPD/Apps/VC/Main.opi + ppd/apps/vc/Main.opi true @@ -4033,7 +4033,7 @@ $(pv_value) - CPD/Apps/VC/Main.opi + cpd/apps/vc/Main.opi true @@ -4129,7 +4129,7 @@ $(pv_value) - PPD/Apps/BAT/Main.opi + ppd/apps/bat/Main.opi true @@ -4184,7 +4184,7 @@ $(pv_value) - CPD/Apps/BAT/Main.opi + cpd/apps/bat/Main.opi true diff --git a/core/base/tools/commander/workspace_template/Displays/Ops/Comms.opi b/core/base/tools/commander/workspace_template/Displays/Ops/Comms.opi index 2e090d0bd..473784561 100644 --- a/core/base/tools/commander/workspace_template/Displays/Ops/Comms.opi +++ b/core/base/tools/commander/workspace_template/Displays/Ops/Comms.opi @@ -19,7 +19,7 @@ true sbnd - @BUILDLINER_CDR_CPUID@ + {{ cpu_id }} /modules/$(CPUID)/modules/$(APP) @BUILDLINER_CDR_MACRO_BLOCK@ @BUILDLINER_CDR_MACRO_BLOCK_CUSTOM@ diff --git a/core/base/tools/commander/workspace_template/Displays/settings.ini b/core/base/tools/commander/workspace_template/Displays/settings.ini index c9f34526c..eefee44cb 100644 --- a/core/base/tools/commander/workspace_template/Displays/settings.ini +++ b/core/base/tools/commander/workspace_template/Displays/settings.ini @@ -6,8 +6,8 @@ org.phoebus.pv/default=yamcs org.csstudio.display.builder.model/macros=\ $(PWD)\ {'cpd', 'ppd'}\ -$(DISPLAYS_ROOT_DIR)/$(CPUID)/Apps/ci/resources/containers/cmd_management.bob\ -$(DISPLAYS_ROOT_DIR)/$(CPUID)/Apps/to/resources/containers/tlm_management.bob\ -$(DISPLAYS_ROOT_DIR)/$(CPUID)/Apps/to/resources/containers/event_management.bob\ -$(DISPLAYS_ROOT_DIR)/$(CPUID)/Core/EVS/resources/templates/Events.bob\ -$(DISPLAYS_ROOT_DIR)/$(CPUID)/Core/ES/resources/templates/ApplicationControl_App.bob \ No newline at end of file +$(DISPLAYS_ROOT_DIR)/$(CPUID)/apps/ci/resources/containers/cmd_management.bob\ +$(DISPLAYS_ROOT_DIR)/$(CPUID)/apps/to/resources/containers/tlm_management.bob\ +$(DISPLAYS_ROOT_DIR)/$(CPUID)/apps/to/resources/containers/event_management.bob\ +$(DISPLAYS_ROOT_DIR)/$(CPUID)/core/cfe/cfe_evs/resources/templates/Events.bob\ +$(DISPLAYS_ROOT_DIR)/$(CPUID)/core/cfe/cfe_es/resources/templates/ApplicationControl_App.bob \ No newline at end of file diff --git a/core/base/tools/commander/workspace_template/lib/yamcs-cfs-1.1.7.jar b/core/base/tools/commander/workspace_template/lib/yamcs-cfs-1.1.7.jar new file mode 100644 index 000000000..9daeb7d42 Binary files /dev/null and b/core/base/tools/commander/workspace_template/lib/yamcs-cfs-1.1.7.jar differ diff --git a/docs/tutorials/Pyliner.rst b/docs/tutorials/Pyliner.rst new file mode 100644 index 000000000..d9879be7d --- /dev/null +++ b/docs/tutorials/Pyliner.rst @@ -0,0 +1,32 @@ +Pyliner +========== + +.. code-block:: bash + + # On target + wget https://github.com/yamcs/yamcs/releases/download/yamcs-5.6.0/yamcs-5.6.0-linux-aarch64.tar.gz + tar -xzf yamcs-5.6.0-linux-aarch64.tar.gz + sudo mkdir /opt/yamcs + sudo tar -xzf yamcs-5.6.0-linux-aarch64.tar.gz -C /opt/yamcs/ + sudo cp -r /opt/yamcs/yamcs-5.6.0/* /opt/yamcs/ + sudo apt update + sudo apt-get install default-jre + sudo apt-get install python3-pip + sudo -H pip3 install virtualenv + pip3 install yamcs-client + git clone https://github.com/yamcs/python-yamcs-client.git + cd python-yamcs-client/yamcs-client + sudo python3 setup.py install + sudo apt-get install python + + # On host(assumes Xilinx tools are installed) + git clone https://github.com/WindhoverLabs/squeaky-weasel.git + source /tools/Xilinx/Vitis/2020.2/settings64.sh + git submodule update --recursive --init + make platform + cd software/airliner/public/ + make python-env + source venv/bin/activate + make obc + make workspace-pyliner + #The pyliner workspace will be located at squeaky-weasel/software/airliner/public/build/obc/pyliner/commander_workspace diff --git a/index.rst b/index.rst index fa3fa2c19..5592ee822 100644 --- a/index.rst +++ b/index.rst @@ -20,6 +20,7 @@ Airliner Documentation docs/tutorials/SetupDevEnvironment.rst docs/tutorials/BuildFlightSoftware.rst docs/tutorials/SetupGroundSystem.rst + docs/tutorials/Pyliner.rst .. toctree::