adams-visiona 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CONTRIBUTING.txt +50 -0
- data/Dockerfile +71 -0
- data/Gemfile +11 -0
- data/Guardfile +27 -0
- data/LICENSE.txt +879 -0
- data/Manifest.txt +1781 -0
- data/README.md +15 -0
- data/Rakefile +345 -0
- data/adams-visiona.gemspec +107 -0
- data/appveyor.yml +32 -0
- data/autohotkey/config/data/attitude.bin +0 -0
- data/autohotkey/config/data/diamond.STL +58 -0
- data/autohotkey/config/data/groundoff.gif +0 -0
- data/autohotkey/config/data/groundon.gif +0 -0
- data/autohotkey/config/data/position.bin +0 -0
- data/autohotkey/config/data/satellite.gif +0 -0
- data/autohotkey/config/data/tada.wav +0 -0
- data/autohotkey/config/system/system.txt +29 -0
- data/autohotkey/config/targets/INST/cmd_tlm/inst_cmds.txt +126 -0
- data/autohotkey/config/targets/INST/cmd_tlm/inst_tlm.txt +270 -0
- data/autohotkey/config/targets/INST/cmd_tlm_server.txt +5 -0
- data/autohotkey/config/targets/INST/doc/README.txt +1 -0
- data/autohotkey/config/targets/INST/lib/example_limits_response.rb +30 -0
- data/autohotkey/config/targets/INST/lib/sim_inst.rb +307 -0
- data/autohotkey/config/targets/INST/screens/_footer.txt +4 -0
- data/autohotkey/config/targets/INST/screens/adcs.txt +46 -0
- data/autohotkey/config/targets/INST/screens/array.txt +7 -0
- data/autohotkey/config/targets/INST/screens/block.txt +8 -0
- data/autohotkey/config/targets/INST/screens/commanding.txt +30 -0
- data/autohotkey/config/targets/INST/screens/extra.txt +19 -0
- data/autohotkey/config/targets/INST/screens/graphs.txt +14 -0
- data/autohotkey/config/targets/INST/screens/ground.txt +25 -0
- data/autohotkey/config/targets/INST/screens/health_status.txt +33 -0
- data/autohotkey/config/targets/INST/screens/hs.txt +46 -0
- data/autohotkey/config/targets/INST/screens/image.txt +21 -0
- data/autohotkey/config/targets/INST/screens/latest.txt +23 -0
- data/autohotkey/config/targets/INST/screens/mech.txt +25 -0
- data/autohotkey/config/targets/INST/screens/other.txt +25 -0
- data/autohotkey/config/targets/INST/screens/params.txt +25 -0
- data/autohotkey/config/targets/INST/screens/tabs.txt +68 -0
- data/autohotkey/config/targets/INST/sequences/run_sequence.txt +1 -0
- data/autohotkey/config/targets/INST/target.txt +27 -0
- data/autohotkey/config/targets/META/cmd_tlm/meta_cmd.txt +10 -0
- data/autohotkey/config/targets/META/cmd_tlm/meta_tlm.txt +9 -0
- data/autohotkey/config/targets/META/screens/data.txt +12 -0
- data/autohotkey/config/targets/SYSTEM/cmd_tlm/limits_groups.txt +7 -0
- data/autohotkey/config/targets/SYSTEM/cmd_tlm/meta_cmd_tlm.txt +16 -0
- data/autohotkey/config/targets/SYSTEM/cmd_tlm/system_cmds.txt +41 -0
- data/autohotkey/config/targets/SYSTEM/cmd_tlm/system_tlm.txt +7 -0
- data/autohotkey/config/targets/SYSTEM/screens/error.txt +11 -0
- data/autohotkey/config/targets/SYSTEM/screens/limits_change.txt +14 -0
- data/autohotkey/config/targets/SYSTEM/screens/meta.txt +14 -0
- data/autohotkey/config/targets/SYSTEM/target.txt +12 -0
- data/autohotkey/config/tools/cmd_sender/cmd_sender.txt +1 -0
- data/autohotkey/config/tools/cmd_sequence/cmd_sequence.txt +2 -0
- data/autohotkey/config/tools/cmd_tlm_server/cmd_tlm_server.txt +22 -0
- data/autohotkey/config/tools/data_viewer/data_viewer.txt +11 -0
- data/autohotkey/config/tools/handbook_creator/assets/css/bootstrap-theme.css +397 -0
- data/autohotkey/config/tools/handbook_creator/assets/css/bootstrap-theme.min.css +7 -0
- data/autohotkey/config/tools/handbook_creator/assets/css/bootstrap.css +7118 -0
- data/autohotkey/config/tools/handbook_creator/assets/css/bootstrap.min.css +7 -0
- data/autohotkey/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/autohotkey/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.svg +229 -0
- data/autohotkey/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/autohotkey/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/autohotkey/config/tools/handbook_creator/assets/js/bootstrap.js +2006 -0
- data/autohotkey/config/tools/handbook_creator/assets/js/bootstrap.min.js +7 -0
- data/autohotkey/config/tools/handbook_creator/default_toc.xsl +59 -0
- data/autohotkey/config/tools/handbook_creator/handbook_creator.txt +49 -0
- data/autohotkey/config/tools/handbook_creator/templates/command_packets.html.erb +86 -0
- data/autohotkey/config/tools/handbook_creator/templates/command_toc.html.erb +38 -0
- data/autohotkey/config/tools/handbook_creator/templates/footer.html.erb +9 -0
- data/autohotkey/config/tools/handbook_creator/templates/header.html.erb +25 -0
- data/autohotkey/config/tools/handbook_creator/templates/limits_groups.html.erb +13 -0
- data/autohotkey/config/tools/handbook_creator/templates/nav.html.erb +27 -0
- data/autohotkey/config/tools/handbook_creator/templates/overview.html.erb +1 -0
- data/autohotkey/config/tools/handbook_creator/templates/pdf_cover.html.erb +23 -0
- data/autohotkey/config/tools/handbook_creator/templates/pdf_footer.html.erb +33 -0
- data/autohotkey/config/tools/handbook_creator/templates/pdf_header.html.erb +41 -0
- data/autohotkey/config/tools/handbook_creator/templates/telemetry_packets.html.erb +80 -0
- data/autohotkey/config/tools/handbook_creator/templates/telemetry_toc.html.erb +38 -0
- data/autohotkey/config/tools/handbook_creator/templates/title.html.erb +1 -0
- data/autohotkey/config/tools/launcher/launcher.txt +38 -0
- data/autohotkey/config/tools/limits_monitor/README.txt +1 -0
- data/autohotkey/config/tools/opengl_builder/error.txt +1 -0
- data/autohotkey/config/tools/script_runner/script_runner.txt +3 -0
- data/autohotkey/config/tools/table_manager/ConfigTables_def.txt +6 -0
- data/autohotkey/config/tools/table_manager/OldOneDimensionalTable_def.txt +19 -0
- data/autohotkey/config/tools/table_manager/OldTwoDimensionalTable_def.txt +248 -0
- data/autohotkey/config/tools/table_manager/OneDimensionalTable_def.txt +31 -0
- data/autohotkey/config/tools/table_manager/SubTables/OneDimensionalSubTable_def.txt +31 -0
- data/autohotkey/config/tools/table_manager/SubTables/TwoDimensionalSubTable_def.txt +28 -0
- data/autohotkey/config/tools/table_manager/TwoDimensionalTable_def.txt +28 -0
- data/autohotkey/config/tools/test_runner/test_runner.txt +8 -0
- data/autohotkey/config/tools/test_runner/test_runner2.txt +11 -0
- data/autohotkey/config/tools/test_runner/test_runner3.txt +7 -0
- data/autohotkey/config/tools/test_runner/test_runner4.txt +1 -0
- data/autohotkey/config/tools/tlm_extractor/tlm_extractor.txt +14 -0
- data/autohotkey/config/tools/tlm_extractor/tlm_extractor2.txt +9 -0
- data/autohotkey/config/tools/tlm_grapher/README.txt +1 -0
- data/autohotkey/config/tools/tlm_grapher/bad.txt +50 -0
- data/autohotkey/config/tools/tlm_grapher/temp1-4.txt +51 -0
- data/autohotkey/config/tools/tlm_grapher/test2.txt +111 -0
- data/autohotkey/config/tools/tlm_viewer/tlm_viewer.txt +24 -0
- data/autohotkey/config/tools/tlm_viewer/tlm_viewer2.txt +4 -0
- data/autohotkey/config/tools/tlm_viewer/tlm_viewer3.txt +3 -0
- data/autohotkey/lib/cmd_sequence_exporter.rb +52 -0
- data/autohotkey/lib/example_background_task.rb +42 -0
- data/autohotkey/lib/user_version.rb +3 -0
- data/autohotkey/outputs/handbooks/README.txt +1 -0
- data/autohotkey/outputs/logs/bigtlm.bin +0 -0
- data/autohotkey/outputs/logs/cmd.bin +0 -0
- data/autohotkey/outputs/logs/tlm.bin +0 -0
- data/autohotkey/outputs/saved_config/README.txt +1 -0
- data/autohotkey/outputs/sequences/bad_sequence.txt +1 -0
- data/autohotkey/outputs/sequences/bad_sequence2.txt +1 -0
- data/autohotkey/outputs/sequences/saved_sequence.txt +3 -0
- data/autohotkey/outputs/tables/README.txt +1 -0
- data/autohotkey/outputs/tmp/README.txt +1 -0
- data/autohotkey/procedures/clear_util.rb +7 -0
- data/autohotkey/procedures/collect.rb +18 -0
- data/autohotkey/procedures/collect_util.rb +14 -0
- data/autohotkey/procedures/example_test.rb +71 -0
- data/autohotkey/procedures/example_test2.rb +74 -0
- data/autohotkey/procedures/script_test.rb +21 -0
- data/autohotkey/procedures/syntax_error.rb +18 -0
- data/autohotkey/tools/CmdExtractorAHK +16 -0
- data/autohotkey/tools/CmdSender +14 -0
- data/autohotkey/tools/CmdSenderAHK +18 -0
- data/autohotkey/tools/CmdSenderAHK2 +18 -0
- data/autohotkey/tools/CmdSequence +14 -0
- data/autohotkey/tools/CmdSequenceAHK +23 -0
- data/autohotkey/tools/CmdSequenceAHK2 +16 -0
- data/autohotkey/tools/CmdTlmServer +14 -0
- data/autohotkey/tools/CmdTlmServerAHK +28 -0
- data/autohotkey/tools/CmdTlmServerAHK2 +17 -0
- data/autohotkey/tools/ConfigEditor +16 -0
- data/autohotkey/tools/ConfigEditorAHK +19 -0
- data/autohotkey/tools/DataViewer +14 -0
- data/autohotkey/tools/DataViewerAHK +17 -0
- data/autohotkey/tools/HandbookCreatorAHK +20 -0
- data/autohotkey/tools/LauncherAHK +17 -0
- data/autohotkey/tools/LimitsMonitorAHK +20 -0
- data/autohotkey/tools/OpenGLBuilderAHK +24 -0
- data/autohotkey/tools/PacketViewer +14 -0
- data/autohotkey/tools/PacketViewerAHK +18 -0
- data/autohotkey/tools/PacketViewerAHK2 +17 -0
- data/autohotkey/tools/Replay +14 -0
- data/autohotkey/tools/ReplayAHK +17 -0
- data/autohotkey/tools/ScriptRunner +14 -0
- data/autohotkey/tools/ScriptRunnerAHK +20 -0
- data/autohotkey/tools/ScriptRunnerAHK2 +17 -0
- data/autohotkey/tools/TableManager +14 -0
- data/autohotkey/tools/TableManagerAHK +25 -0
- data/autohotkey/tools/TableManagerAHK2 +18 -0
- data/autohotkey/tools/TableManagerAHK3 +18 -0
- data/autohotkey/tools/TableManagerAHK4 +24 -0
- data/autohotkey/tools/TestRunner +15 -0
- data/autohotkey/tools/TestRunnerAHK +17 -0
- data/autohotkey/tools/TestRunnerAHK2 +17 -0
- data/autohotkey/tools/TestRunnerAHK3 +17 -0
- data/autohotkey/tools/TestRunnerAHK4 +17 -0
- data/autohotkey/tools/TestRunnerAHK5 +17 -0
- data/autohotkey/tools/TestRunnerAHK6 +17 -0
- data/autohotkey/tools/TlmExtractor +15 -0
- data/autohotkey/tools/TlmExtractorAHK +19 -0
- data/autohotkey/tools/TlmExtractorAHK2 +16 -0
- data/autohotkey/tools/TlmExtractorAHK3 +16 -0
- data/autohotkey/tools/TlmGrapher +14 -0
- data/autohotkey/tools/TlmGrapherAHK +19 -0
- data/autohotkey/tools/TlmGrapherAHK2 +23 -0
- data/autohotkey/tools/TlmGrapherAHK3 +17 -0
- data/autohotkey/tools/TlmGrapherAHK4 +17 -0
- data/autohotkey/tools/TlmViewer +14 -0
- data/autohotkey/tools/TlmViewerAHK +28 -0
- data/autohotkey/tools/TlmViewerAHK2 +22 -0
- data/autohotkey/tools/TlmViewerAHK3 +23 -0
- data/autohotkey/tools/TlmViewerAHK4 +22 -0
- data/autohotkey/tools/TlmViewerAHK5 +18 -0
- data/autohotkey/tools/autohotkey.rb +38 -0
- data/autohotkey/tools/cmd_extractor.ahk +52 -0
- data/autohotkey/tools/cmd_sender.ahk +208 -0
- data/autohotkey/tools/cmd_sender2.ahk +4 -0
- data/autohotkey/tools/cmd_sequence.ahk +233 -0
- data/autohotkey/tools/cmd_sequence2.ahk +23 -0
- data/autohotkey/tools/cmd_tlm_server.ahk +90 -0
- data/autohotkey/tools/cmd_tlm_server2.ahk +45 -0
- data/autohotkey/tools/config_editor.ahk +197 -0
- data/autohotkey/tools/data_viewer.ahk +140 -0
- data/autohotkey/tools/handbook_creator.ahk +32 -0
- data/autohotkey/tools/launcher.ahk +42 -0
- data/autohotkey/tools/limits_monitor.ahk +121 -0
- data/autohotkey/tools/open_gl_builder.ahk +133 -0
- data/autohotkey/tools/packet_viewer.ahk +224 -0
- data/autohotkey/tools/packet_viewer2.ahk +9 -0
- data/autohotkey/tools/replay.ahk +103 -0
- data/autohotkey/tools/script_runner.ahk +602 -0
- data/autohotkey/tools/script_runner2.ahk +50 -0
- data/autohotkey/tools/table_manager.ahk +291 -0
- data/autohotkey/tools/test_runner.ahk +262 -0
- data/autohotkey/tools/test_runner2.ahk +49 -0
- data/autohotkey/tools/test_runner3.ahk +11 -0
- data/autohotkey/tools/test_runner5.ahk +8 -0
- data/autohotkey/tools/test_runner6.ahk +5 -0
- data/autohotkey/tools/tlm_extractor.ahk +356 -0
- data/autohotkey/tools/tlm_grapher.ahk +670 -0
- data/autohotkey/tools/tlm_grapher2.ahk +115 -0
- data/autohotkey/tools/tlm_grapher3.ahk +23 -0
- data/autohotkey/tools/tlm_viewer.ahk +140 -0
- data/autohotkey/tools/tlm_viewer2.ahk +49 -0
- data/autohotkey/tools/tlm_viewer4.ahk +4 -0
- data/autohotkey/tools/tlm_viewer5.ahk +19 -0
- data/autohotkey/tools/tool_launch.rb +38 -0
- data/bin/cosmos +303 -0
- data/bin/cstol_converter +1166 -0
- data/bin/dart_import +4 -0
- data/bin/dart_util +4 -0
- data/bin/exchndl20-x64.dll +0 -0
- data/bin/exchndl20.dll +0 -0
- data/bin/exchndl21-x64.dll +0 -0
- data/bin/exchndl21.dll +0 -0
- data/bin/exchndl22-x64.dll +0 -0
- data/bin/exchndl22.dll +0 -0
- data/bin/mgwhelp-x64.dll +0 -0
- data/bin/mgwhelp.dll +0 -0
- data/bin/rubysloc +130 -0
- data/bin/xtce_converter +83 -0
- data/data/COSMOS_64x64.bmp +0 -0
- data/data/COSMOS_64x64.ico +0 -0
- data/data/COSMOS_64x64.png +0 -0
- data/data/COSMOS_Architecture.png +0 -0
- data/data/CheckBoxCheck.gif +0 -0
- data/data/CheckBoxEmpty.gif +0 -0
- data/data/Earthmap1024x512.gif +0 -0
- data/data/about.txt +4 -0
- data/data/add_database.png +0 -0
- data/data/add_plot.png +0 -0
- data/data/add_tab.png +0 -0
- data/data/blank.png +0 -0
- data/data/bug.png +0 -0
- data/data/checkmark.png +0 -0
- data/data/close.png +0 -0
- data/data/cmd_extractor.png +0 -0
- data/data/cmd_sender.png +0 -0
- data/data/cmd_sequence.png +0 -0
- data/data/config/_array_params.yaml +23 -0
- data/data/config/_id_items.yaml +24 -0
- data/data/config/_id_params.yaml +58 -0
- data/data/config/_interfaces.yaml +210 -0
- data/data/config/_items.yaml +20 -0
- data/data/config/_params.yaml +58 -0
- data/data/config/cmd_sequence.yaml +14 -0
- data/data/config/cmd_tlm_server.yaml +136 -0
- data/data/config/command.yaml +40 -0
- data/data/config/command_modifiers.yaml +160 -0
- data/data/config/command_telemetry.yaml +3 -0
- data/data/config/data_viewer.yaml +43 -0
- data/data/config/handbook_creator.yaml +23 -0
- data/data/config/housekeeping_params.yaml +85 -0
- data/data/config/interface_modifiers.yaml +97 -0
- data/data/config/item_modifiers.yaml +221 -0
- data/data/config/launcher.yaml +127 -0
- data/data/config/limits_monitor.yaml +53 -0
- data/data/config/linegraph_params.yaml +30 -0
- data/data/config/linegraph_plot.yaml +106 -0
- data/data/config/page_modifiers.yaml +128 -0
- data/data/config/param_item_modifiers.yaml +51 -0
- data/data/config/parameter_modifiers.yaml +200 -0
- data/data/config/protocols.yaml +273 -0
- data/data/config/screen.yaml +153 -0
- data/data/config/script_runner.yaml +24 -0
- data/data/config/system.yaml +371 -0
- data/data/config/table_manager.yaml +83 -0
- data/data/config/table_parameter_modifiers.yaml +9 -0
- data/data/config/target.yaml +92 -0
- data/data/config/telemetry.yaml +80 -0
- data/data/config/telemetry_modifiers.yaml +159 -0
- data/data/config/test_runner.yaml +119 -0
- data/data/config/tlm_extractor.yaml +109 -0
- data/data/config/tlm_grapher.yaml +78 -0
- data/data/config/tlm_viewer.yaml +112 -0
- data/data/config/unknown.yaml +3 -0
- data/data/config/widgets.yaml +1502 -0
- data/data/config/xy_params.yaml +50 -0
- data/data/config/xy_plot.yaml +12 -0
- data/data/config_editor.png +0 -0
- data/data/copy.png +0 -0
- data/data/cosmos.xcf +0 -0
- data/data/cosmos_word.gif +0 -0
- data/data/crc.txt +470 -0
- data/data/critical.wav +0 -0
- data/data/cts.png +0 -0
- data/data/cut.png +0 -0
- data/data/dart.png +0 -0
- data/data/data_viewer.png +0 -0
- data/data/delete.png +0 -0
- data/data/delete_database.png +0 -0
- data/data/delete_plot.png +0 -0
- data/data/delete_tab.png +0 -0
- data/data/diamond.STL +58 -0
- data/data/disconnected.png +0 -0
- data/data/edit.png +0 -0
- data/data/edit_database.png +0 -0
- data/data/edit_plot.png +0 -0
- data/data/edit_tab.png +0 -0
- data/data/end-26.png +0 -0
- data/data/fast_forward-26.png +0 -0
- data/data/file.png +0 -0
- data/data/handbook_creator.png +0 -0
- data/data/help.png +0 -0
- data/data/html-32.png +0 -0
- data/data/information.wav +0 -0
- data/data/input.wav +0 -0
- data/data/launcher.png +0 -0
- data/data/legal.gif +0 -0
- data/data/legal.txt +8 -0
- data/data/limits_monitor.png +0 -0
- data/data/message.wav +0 -0
- data/data/moonmap1k.gif +0 -0
- data/data/multi.png +0 -0
- data/data/open.png +0 -0
- data/data/open_in_browser-32.png +0 -0
- data/data/opengl_builder.png +0 -0
- data/data/packet_viewer.png +0 -0
- data/data/pdf-32.png +0 -0
- data/data/play-26.png +0 -0
- data/data/question.wav +0 -0
- data/data/redo.png +0 -0
- data/data/replay.png +0 -0
- data/data/reverse-play-26.png +0 -0
- data/data/rewind-26.png +0 -0
- data/data/running.png +0 -0
- data/data/save.png +0 -0
- data/data/save_as.png +0 -0
- data/data/screenshot.png +0 -0
- data/data/script_runner.png +0 -0
- data/data/search-14.png +0 -0
- data/data/search.png +0 -0
- data/data/send_file.png +0 -0
- data/data/skip_to_start-26.png +0 -0
- data/data/spinner.gif +0 -0
- data/data/splash.gif +0 -0
- data/data/stop-26.png +0 -0
- data/data/table_manager.png +0 -0
- data/data/test_runner.png +0 -0
- data/data/tlm_extractor.png +0 -0
- data/data/tlm_grapher.png +0 -0
- data/data/tlm_viewer.png +0 -0
- data/data/undo.png +0 -0
- data/data/warning.wav +0 -0
- data/demo/Gemfile +13 -0
- data/demo/Launcher +16 -0
- data/demo/Launcher.bat +1 -0
- data/demo/Launcher2.bat +1 -0
- data/demo/LauncherMini.bat +1 -0
- data/demo/Rakefile +83 -0
- data/demo/config/dart/Gemfile +49 -0
- data/demo/config/data/attitude.bin +0 -0
- data/demo/config/data/crc.txt +294 -0
- data/demo/config/data/diamond.STL +58 -0
- data/demo/config/data/hselectoff.gif +0 -0
- data/demo/config/data/hselecton.gif +0 -0
- data/demo/config/data/hswitchoff.gif +0 -0
- data/demo/config/data/hswitchon.gif +0 -0
- data/demo/config/data/meta_init.txt +1 -0
- data/demo/config/data/position.bin +0 -0
- data/demo/config/data/poweroff.gif +0 -0
- data/demo/config/data/poweron.gif +0 -0
- data/demo/config/data/satellite.gif +0 -0
- data/demo/config/data/tada.wav +0 -0
- data/demo/config/data/vswitchoff.gif +0 -0
- data/demo/config/data/vswitchon.gif +0 -0
- data/demo/config/system/system.txt +90 -0
- data/demo/config/system/system2.txt +75 -0
- data/demo/config/system/system_alt_ports.txt +80 -0
- data/demo/config/targets/DART/cmd_tlm/dart_cmds.txt +2 -0
- data/demo/config/targets/DART/cmd_tlm/dart_tlm.txt +40 -0
- data/demo/config/targets/DART/cmd_tlm_server.txt +6 -0
- data/demo/config/targets/DART/screens/status.txt +54 -0
- data/demo/config/targets/DART/target.txt +7 -0
- data/demo/config/targets/EXAMPLE/cmd_tlm/example_cmds.txt +2 -0
- data/demo/config/targets/EXAMPLE/cmd_tlm/example_tlm.txt +5 -0
- data/demo/config/targets/EXAMPLE/cmd_tlm_server.txt +7 -0
- data/demo/config/targets/EXAMPLE/lib/example_interface.rb +18 -0
- data/demo/config/targets/EXAMPLE/target.txt +9 -0
- data/demo/config/targets/INST/cmd_tlm/_ccsds_cmd.txt +9 -0
- data/demo/config/targets/INST/cmd_tlm/_ccsds_tlm.txt +19 -0
- data/demo/config/targets/INST/cmd_tlm/inst_cmds.txt +58 -0
- data/demo/config/targets/INST/cmd_tlm/inst_tlm.txt +169 -0
- data/demo/config/targets/INST/cmd_tlm/inst_tlm_override.txt +12 -0
- data/demo/config/targets/INST/cmd_tlm_server.txt +8 -0
- data/demo/config/targets/INST/cmd_tlm_server2.txt +7 -0
- data/demo/config/targets/INST/doc/README.txt +1 -0
- data/demo/config/targets/INST/lib/example_limits_response.rb +30 -0
- data/demo/config/targets/INST/lib/inst_dump_component.rb +34 -0
- data/demo/config/targets/INST/lib/sim_inst.rb +333 -0
- data/demo/config/targets/INST/procedures/checks.rb +11 -0
- data/demo/config/targets/INST/procedures/collect.rb +18 -0
- data/demo/config/targets/INST/procedures/disconnect.rb +29 -0
- data/demo/config/targets/INST/procedures/utilities/clear.rb +7 -0
- data/demo/config/targets/INST/procedures/utilities/collect.rb +14 -0
- data/demo/config/targets/INST/screens/_footer.txt +4 -0
- data/demo/config/targets/INST/screens/adcs.txt +71 -0
- data/demo/config/targets/INST/screens/array.txt +15 -0
- data/demo/config/targets/INST/screens/block.txt +8 -0
- data/demo/config/targets/INST/screens/commanding.txt +42 -0
- data/demo/config/targets/INST/screens/graphs.txt +14 -0
- data/demo/config/targets/INST/screens/ground.txt +47 -0
- data/demo/config/targets/INST/screens/ground_error.gif +0 -0
- data/demo/config/targets/INST/screens/ground_off.gif +0 -0
- data/demo/config/targets/INST/screens/ground_on.gif +0 -0
- data/demo/config/targets/INST/screens/hs.txt +43 -0
- data/demo/config/targets/INST/screens/latest.txt +23 -0
- data/demo/config/targets/INST/screens/limits.txt +81 -0
- data/demo/config/targets/INST/screens/other.txt +34 -0
- data/demo/config/targets/INST/screens/params.txt +54 -0
- data/demo/config/targets/INST/screens/satellite.gif +0 -0
- data/demo/config/targets/INST/screens/spacing_box.txt +44 -0
- data/demo/config/targets/INST/screens/spacing_grid.txt +78 -0
- data/demo/config/targets/INST/screens/tabs.txt +68 -0
- data/demo/config/targets/INST/sequences/sequence.tsv +3 -0
- data/demo/config/targets/INST/tables/EventAction.csv +9 -0
- data/demo/config/targets/INST/tables/EventAction.dat +0 -0
- data/demo/config/targets/INST/tables/McConfigTable.csv +20 -0
- data/demo/config/targets/INST/tables/McConfigTable.dat +0 -0
- data/demo/config/targets/INST/target.txt +38 -0
- data/demo/config/targets/INST/tools/data_viewer/data_viewer.txt +2 -0
- data/demo/config/targets/INST/tools/data_viewer/data_viewer2.txt +2 -0
- data/demo/config/targets/INST/tools/table_manager/EventAction_def.txt +6 -0
- data/demo/config/targets/INST/tools/table_manager/McConfigTable_def.txt +38 -0
- data/demo/config/targets/SYSTEM/cmd_tlm/limits_groups.txt +6 -0
- data/demo/config/targets/SYSTEM/cmd_tlm/meta_tlm.txt +10 -0
- data/demo/config/targets/SYSTEM/cmd_tlm/override.txt +29 -0
- data/demo/config/targets/SYSTEM/cmd_tlm/system_cmds.txt +41 -0
- data/demo/config/targets/SYSTEM/cmd_tlm/system_tlm.txt +7 -0
- data/demo/config/targets/SYSTEM/cmd_tlm_server.txt +6 -0
- data/demo/config/targets/SYSTEM/lib/limits_groups.rb +55 -0
- data/demo/config/targets/SYSTEM/screens/status.txt +12 -0
- data/demo/config/targets/SYSTEM/target.txt +12 -0
- data/demo/config/targets/TEMPLATED/cmd_tlm/templated_cmds.txt +13 -0
- data/demo/config/targets/TEMPLATED/cmd_tlm/templated_tlm.txt +3 -0
- data/demo/config/targets/TEMPLATED/cmd_tlm_server.txt +6 -0
- data/demo/config/targets/TEMPLATED/lib/templated_interface.rb +59 -0
- data/demo/config/targets/TEMPLATED/target.txt +8 -0
- data/demo/config/tools/cmd_sequence/cmd_sequence.txt +2 -0
- data/demo/config/tools/cmd_tlm_server/cmd_tlm_server.txt +45 -0
- data/demo/config/tools/cmd_tlm_server/cmd_tlm_server2.txt +42 -0
- data/demo/config/tools/cmd_tlm_server/cmd_tlm_server_chain.txt +18 -0
- data/demo/config/tools/data_viewer/data_viewer.txt +23 -0
- data/demo/config/tools/example_application.css +58 -0
- data/demo/config/tools/handbook_creator/assets/css/bootstrap-theme.css +397 -0
- data/demo/config/tools/handbook_creator/assets/css/bootstrap-theme.min.css +7 -0
- data/demo/config/tools/handbook_creator/assets/css/bootstrap.css +7118 -0
- data/demo/config/tools/handbook_creator/assets/css/bootstrap.min.css +7 -0
- data/demo/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/demo/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.svg +229 -0
- data/demo/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/demo/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/demo/config/tools/handbook_creator/assets/img/ball_logo.bmp +0 -0
- data/demo/config/tools/handbook_creator/assets/img/ball_logo.gif +0 -0
- data/demo/config/tools/handbook_creator/assets/img/ball_logo.jpg +0 -0
- data/demo/config/tools/handbook_creator/assets/js/bootstrap.js +2006 -0
- data/demo/config/tools/handbook_creator/assets/js/bootstrap.min.js +7 -0
- data/demo/config/tools/handbook_creator/assets/js/html5shiv.js +8 -0
- data/demo/config/tools/handbook_creator/assets/js/jquery-1.10.2.min.js +6 -0
- data/demo/config/tools/handbook_creator/assets/js/respond.min.js +6 -0
- data/demo/config/tools/handbook_creator/default_toc.xsl +59 -0
- data/demo/config/tools/handbook_creator/handbook_creator.txt +66 -0
- data/demo/config/tools/handbook_creator/templates/command_packets.html.erb +88 -0
- data/demo/config/tools/handbook_creator/templates/command_toc.html.erb +38 -0
- data/demo/config/tools/handbook_creator/templates/footer.html.erb +9 -0
- data/demo/config/tools/handbook_creator/templates/header.html.erb +25 -0
- data/demo/config/tools/handbook_creator/templates/limits_groups.html.erb +13 -0
- data/demo/config/tools/handbook_creator/templates/nav.html.erb +27 -0
- data/demo/config/tools/handbook_creator/templates/overview.html.erb +1 -0
- data/demo/config/tools/handbook_creator/templates/pdf_cover.html.erb +23 -0
- data/demo/config/tools/handbook_creator/templates/pdf_footer.html.erb +33 -0
- data/demo/config/tools/handbook_creator/templates/pdf_header.html.erb +41 -0
- data/demo/config/tools/handbook_creator/templates/telemetry_packets.html.erb +82 -0
- data/demo/config/tools/handbook_creator/templates/telemetry_toc.html.erb +38 -0
- data/demo/config/tools/handbook_creator/templates/title.html.erb +1 -0
- data/demo/config/tools/launcher/launcher.css +7 -0
- data/demo/config/tools/launcher/launcher.txt +49 -0
- data/demo/config/tools/launcher/launcher2.css +10 -0
- data/demo/config/tools/launcher/launcher2.txt +48 -0
- data/demo/config/tools/launcher/launcher_mini.txt +45 -0
- data/demo/config/tools/limits_monitor/README.txt +1 -0
- data/demo/config/tools/opengl_builder/README.txt +1 -0
- data/demo/config/tools/script_runner/script_runner.txt +2 -0
- data/demo/config/tools/table_manager/ConfigTables_def.txt +8 -0
- data/demo/config/tools/table_manager/ExampleTableDefinition.txt +24 -0
- data/demo/config/tools/table_manager/MCConfigurationTable_fsw1_def.txt +37 -0
- data/demo/config/tools/table_manager/MCConfigurationTable_fsw2_def.txt +34 -0
- data/demo/config/tools/table_manager/PPSSelectionTable_def.txt +9 -0
- data/demo/config/tools/table_manager/TLMMonitoringTable_def.txt +31 -0
- data/demo/config/tools/test_runner/test_runner.css +45 -0
- data/demo/config/tools/test_runner/test_runner.txt +19 -0
- data/demo/config/tools/tlm_extractor/_adcs_time.txt +2 -0
- data/demo/config/tools/tlm_extractor/tlm_extractor.txt +13 -0
- data/demo/config/tools/tlm_extractor/tlm_extractor2.txt +2 -0
- data/demo/config/tools/tlm_extractor/tlm_extractor3.txt +2 -0
- data/demo/config/tools/tlm_extractor/tlm_extractor4.txt +2 -0
- data/demo/config/tools/tlm_grapher/README.txt +1 -0
- data/demo/config/tools/tlm_viewer/tlm_viewer.txt +41 -0
- data/demo/lib/cmd_sequence_exporter.rb +52 -0
- data/demo/lib/example_background_task.rb +57 -0
- data/demo/lib/example_target.rb +103 -0
- data/demo/lib/scpi_target.rb +68 -0
- data/demo/lib/user_version.rb +3 -0
- data/demo/outputs/dart/data/README.txt +1 -0
- data/demo/outputs/handbooks/README.txt +1 -0
- data/demo/outputs/logs/README.txt +1 -0
- data/demo/outputs/saved_config/README.txt +1 -0
- data/demo/outputs/sequences/sequence.tsv +4 -0
- data/demo/outputs/tables/README.txt +1 -0
- data/demo/outputs/tmp/README.txt +1 -0
- data/demo/procedures/cosmos_api_test.rb +314 -0
- data/demo/procedures/example_test.rb +192 -0
- data/demo/procedures/interactive.rb +22 -0
- data/demo/procedures/local_screen_example.rb +51 -0
- data/demo/procedures/plot_test.rb +8 -0
- data/demo/procedures/replay_test.rb +32 -0
- data/demo/procedures/run_example_test.rb +3 -0
- data/demo/procedures/test.rb +51 -0
- data/demo/tools/CmdExtractor +16 -0
- data/demo/tools/CmdExtractor.bat +9 -0
- data/demo/tools/CmdSender +16 -0
- data/demo/tools/CmdSender.bat +9 -0
- data/demo/tools/CmdSequence +16 -0
- data/demo/tools/CmdSequence.bat +9 -0
- data/demo/tools/CmdTlmServer +16 -0
- data/demo/tools/CmdTlmServer.bat +9 -0
- data/demo/tools/ConfigEditor +16 -0
- data/demo/tools/ConfigEditor.bat +9 -0
- data/demo/tools/Dart +16 -0
- data/demo/tools/Dart.bat +9 -0
- data/demo/tools/DataViewer +16 -0
- data/demo/tools/DataViewer.bat +9 -0
- data/demo/tools/ExampleTarget +16 -0
- data/demo/tools/ExampleTarget.bat +9 -0
- data/demo/tools/HandbookCreator +16 -0
- data/demo/tools/HandbookCreator.bat +9 -0
- data/demo/tools/Launcher +16 -0
- data/demo/tools/Launcher.bat +9 -0
- data/demo/tools/LimitsMonitor +16 -0
- data/demo/tools/LimitsMonitor.bat +9 -0
- data/demo/tools/OpenGLBuilder +16 -0
- data/demo/tools/OpenGLBuilder.bat +9 -0
- data/demo/tools/PacketViewer +16 -0
- data/demo/tools/PacketViewer.bat +9 -0
- data/demo/tools/Replay +16 -0
- data/demo/tools/Replay.bat +9 -0
- data/demo/tools/ScpiTarget +16 -0
- data/demo/tools/ScpiTarget.bat +9 -0
- data/demo/tools/ScriptRunner +16 -0
- data/demo/tools/ScriptRunner.bat +9 -0
- data/demo/tools/TableManager +16 -0
- data/demo/tools/TableManager.bat +9 -0
- data/demo/tools/TestRunner +16 -0
- data/demo/tools/TestRunner.bat +9 -0
- data/demo/tools/TlmExtractor +16 -0
- data/demo/tools/TlmExtractor.bat +9 -0
- data/demo/tools/TlmGrapher +16 -0
- data/demo/tools/TlmGrapher.bat +9 -0
- data/demo/tools/TlmViewer +16 -0
- data/demo/tools/TlmViewer.bat +9 -0
- data/demo/tools/ToolLaunch.bat +72 -0
- data/demo/tools/mac/CmdExtractor.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/CmdExtractor.app/Contents/MacOS/CmdExtractor.rb +16 -0
- data/demo/tools/mac/CmdExtractor.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/CmdExtractor.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/CmdExtractor.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/CmdSender.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/CmdSender.app/Contents/MacOS/CmdSender.rb +16 -0
- data/demo/tools/mac/CmdSender.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/CmdSender.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/CmdSender.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/CmdSequence.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/CmdSequence.app/Contents/MacOS/CmdSequence.rb +16 -0
- data/demo/tools/mac/CmdSequence.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/CmdSequence.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/CmdSequence.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/CmdTlmServer.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/CmdTlmServer.app/Contents/MacOS/CmdTlmServer.rb +16 -0
- data/demo/tools/mac/CmdTlmServer.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/CmdTlmServer.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/CmdTlmServer.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/ConfigEditor.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/ConfigEditor.app/Contents/MacOS/ConfigEditor.rb +16 -0
- data/demo/tools/mac/ConfigEditor.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/ConfigEditor.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/ConfigEditor.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/DataViewer.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/DataViewer.app/Contents/MacOS/DataViewer.rb +16 -0
- data/demo/tools/mac/DataViewer.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/DataViewer.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/DataViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/HandbookCreator.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/HandbookCreator.app/Contents/MacOS/HandbookCreator.rb +16 -0
- data/demo/tools/mac/HandbookCreator.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/HandbookCreator.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/HandbookCreator.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/Launcher.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/Launcher.app/Contents/MacOS/Launcher.rb +16 -0
- data/demo/tools/mac/Launcher.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/Launcher.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/Launcher.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/LimitsMonitor.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/LimitsMonitor.app/Contents/MacOS/LimitsMonitor.rb +16 -0
- data/demo/tools/mac/LimitsMonitor.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/LimitsMonitor.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/LimitsMonitor.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/OpenGLBuilder.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/OpenGLBuilder.app/Contents/MacOS/OpenGLBuilder.rb +16 -0
- data/demo/tools/mac/OpenGLBuilder.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/OpenGLBuilder.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/OpenGLBuilder.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/PacketViewer.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/PacketViewer.app/Contents/MacOS/PacketViewer.rb +16 -0
- data/demo/tools/mac/PacketViewer.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/PacketViewer.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/PacketViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/Replay.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/Replay.app/Contents/MacOS/Replay.rb +16 -0
- data/demo/tools/mac/Replay.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/Replay.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/Replay.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/ScriptRunner.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/ScriptRunner.app/Contents/MacOS/ScriptRunner.rb +16 -0
- data/demo/tools/mac/ScriptRunner.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/ScriptRunner.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/ScriptRunner.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/TableManager.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/TableManager.app/Contents/MacOS/TableManager.rb +16 -0
- data/demo/tools/mac/TableManager.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/TableManager.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/TableManager.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/TestRunner.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/TestRunner.app/Contents/MacOS/TestRunner.rb +16 -0
- data/demo/tools/mac/TestRunner.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/TestRunner.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/TestRunner.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/TlmExtractor.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/TlmExtractor.app/Contents/MacOS/TlmExtractor.rb +16 -0
- data/demo/tools/mac/TlmExtractor.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/TlmExtractor.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/TlmExtractor.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/TlmGrapher.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/TlmGrapher.app/Contents/MacOS/TlmGrapher.rb +16 -0
- data/demo/tools/mac/TlmGrapher.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/TlmGrapher.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/TlmGrapher.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/TlmViewer.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/TlmViewer.app/Contents/MacOS/TlmViewer.rb +16 -0
- data/demo/tools/mac/TlmViewer.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/TlmViewer.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/TlmViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/tool_launch.rb +38 -0
- data/ext/cosmos/ext/array/array.c +111 -0
- data/ext/cosmos/ext/array/extconf.rb +13 -0
- data/ext/cosmos/ext/buffered_file/buffered_file.c +167 -0
- data/ext/cosmos/ext/buffered_file/extconf.rb +13 -0
- data/ext/cosmos/ext/config_parser/config_parser.c +236 -0
- data/ext/cosmos/ext/config_parser/extconf.rb +13 -0
- data/ext/cosmos/ext/cosmos_io/cosmos_io.c +145 -0
- data/ext/cosmos/ext/cosmos_io/extconf.rb +13 -0
- data/ext/cosmos/ext/crc/crc.c +341 -0
- data/ext/cosmos/ext/crc/extconf.rb +13 -0
- data/ext/cosmos/ext/line_graph/extconf.rb +13 -0
- data/ext/cosmos/ext/line_graph/line_graph.c +460 -0
- data/ext/cosmos/ext/low_fragmentation_array/extconf.rb +13 -0
- data/ext/cosmos/ext/low_fragmentation_array/low_fragmentation_array.c +265 -0
- data/ext/cosmos/ext/packet/extconf.rb +13 -0
- data/ext/cosmos/ext/packet/packet.c +273 -0
- data/ext/cosmos/ext/platform/extconf.rb +13 -0
- data/ext/cosmos/ext/platform/platform.c +136 -0
- data/ext/cosmos/ext/polynomial_conversion/extconf.rb +13 -0
- data/ext/cosmos/ext/polynomial_conversion/polynomial_conversion.c +69 -0
- data/ext/cosmos/ext/string/extconf.rb +13 -0
- data/ext/cosmos/ext/string/string.c +49 -0
- data/ext/cosmos/ext/structure/structure.c +1493 -0
- data/ext/cosmos/ext/tabbed_plots_config/extconf.rb +13 -0
- data/ext/cosmos/ext/tabbed_plots_config/tabbed_plots_config.c +51 -0
- data/ext/cosmos/ext/telemetry/extconf.rb +13 -0
- data/ext/cosmos/ext/telemetry/telemetry.c +307 -0
- data/ext/mkrf_conf.rb +40 -0
- data/extensions/vscode/.gitignore +4 -0
- data/extensions/vscode/.vscode/launch.json +32 -0
- data/extensions/vscode/.vscode/settings.json +13 -0
- data/extensions/vscode/.vscode/tasks.json +79 -0
- data/extensions/vscode/License.txt +879 -0
- data/extensions/vscode/README.md +9 -0
- data/extensions/vscode/client/License.txt +879 -0
- data/extensions/vscode/client/README.md +39 -0
- data/extensions/vscode/client/cosmos.configuration.json +23 -0
- data/extensions/vscode/client/images/icon.png +0 -0
- data/extensions/vscode/client/package-lock.json +414 -0
- data/extensions/vscode/client/package.json +105 -0
- data/extensions/vscode/client/src/extension.ts +132 -0
- data/extensions/vscode/client/src/screen_preview.rb +25 -0
- data/extensions/vscode/client/syntaxes/cosmos.tmLanguage.json +219 -0
- data/extensions/vscode/client/tsconfig.json +17 -0
- data/extensions/vscode/package-lock.json +26 -0
- data/extensions/vscode/package.json +35 -0
- data/extensions/vscode/server/License.txt +879 -0
- data/extensions/vscode/server/package-lock.json +236 -0
- data/extensions/vscode/server/package.json +29 -0
- data/extensions/vscode/server/src/server.ts +59 -0
- data/extensions/vscode/server/tsconfig.json +16 -0
- data/install/Gemfile +13 -0
- data/install/Launcher +16 -0
- data/install/Launcher.bat +1 -0
- data/install/Rakefile +81 -0
- data/install/config/dart/Gemfile +49 -0
- data/install/config/data/README.txt +1 -0
- data/install/config/data/crc.txt +179 -0
- data/install/config/system/system.txt +75 -0
- data/install/config/targets/SYSTEM/cmd_tlm/meta_tlm.txt +9 -0
- data/install/config/targets/SYSTEM/target.txt +12 -0
- data/install/config/tools/cmd_tlm_server/cmd_tlm_server.txt +3 -0
- data/install/config/tools/data_viewer/data_viewer.txt +4 -0
- data/install/config/tools/handbook_creator/assets/css/bootstrap-theme.css +397 -0
- data/install/config/tools/handbook_creator/assets/css/bootstrap-theme.min.css +7 -0
- data/install/config/tools/handbook_creator/assets/css/bootstrap.css +7118 -0
- data/install/config/tools/handbook_creator/assets/css/bootstrap.min.css +7 -0
- data/install/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/install/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.svg +229 -0
- data/install/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/install/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/install/config/tools/handbook_creator/assets/img/ball_logo.bmp +0 -0
- data/install/config/tools/handbook_creator/assets/img/ball_logo.gif +0 -0
- data/install/config/tools/handbook_creator/assets/img/ball_logo.jpg +0 -0
- data/install/config/tools/handbook_creator/assets/js/bootstrap.js +2006 -0
- data/install/config/tools/handbook_creator/assets/js/bootstrap.min.js +7 -0
- data/install/config/tools/handbook_creator/assets/js/html5shiv.js +8 -0
- data/install/config/tools/handbook_creator/assets/js/jquery-1.10.2.min.js +6 -0
- data/install/config/tools/handbook_creator/assets/js/respond.min.js +6 -0
- data/install/config/tools/handbook_creator/default_toc.xsl +59 -0
- data/install/config/tools/handbook_creator/handbook_creator.txt +49 -0
- data/install/config/tools/handbook_creator/templates/command_packets.html.erb +86 -0
- data/install/config/tools/handbook_creator/templates/command_toc.html.erb +38 -0
- data/install/config/tools/handbook_creator/templates/footer.html.erb +9 -0
- data/install/config/tools/handbook_creator/templates/header.html.erb +25 -0
- data/install/config/tools/handbook_creator/templates/limits_groups.html.erb +13 -0
- data/install/config/tools/handbook_creator/templates/nav.html.erb +27 -0
- data/install/config/tools/handbook_creator/templates/overview.html.erb +1 -0
- data/install/config/tools/handbook_creator/templates/pdf_cover.html.erb +23 -0
- data/install/config/tools/handbook_creator/templates/pdf_footer.html.erb +33 -0
- data/install/config/tools/handbook_creator/templates/pdf_header.html.erb +41 -0
- data/install/config/tools/handbook_creator/templates/telemetry_packets.html.erb +80 -0
- data/install/config/tools/handbook_creator/templates/telemetry_toc.html.erb +38 -0
- data/install/config/tools/handbook_creator/templates/title.html.erb +1 -0
- data/install/config/tools/launcher/launcher.txt +43 -0
- data/install/config/tools/limits_monitor/README.txt +1 -0
- data/install/config/tools/opengl_builder/README.txt +1 -0
- data/install/config/tools/script_runner/script_runner.txt +3 -0
- data/install/config/tools/table_manager/README.txt +1 -0
- data/install/config/tools/test_runner/test_runner.txt +8 -0
- data/install/config/tools/tlm_extractor/README.txt +1 -0
- data/install/config/tools/tlm_grapher/README.txt +1 -0
- data/install/config/tools/tlm_viewer/tlm_viewer.txt +5 -0
- data/install/lib/user_version.rb +3 -0
- data/install/outputs/dart/data/README.txt +1 -0
- data/install/outputs/dart/logs/README.txt +1 -0
- data/install/outputs/handbooks/README.txt +1 -0
- data/install/outputs/logs/README.txt +1 -0
- data/install/outputs/saved_config/README.txt +1 -0
- data/install/outputs/tables/README.txt +1 -0
- data/install/outputs/tmp/README.txt +1 -0
- data/install/procedures/README.txt +1 -0
- data/install/tools/CmdExtractor +16 -0
- data/install/tools/CmdExtractor.bat +9 -0
- data/install/tools/CmdSender +16 -0
- data/install/tools/CmdSender.bat +9 -0
- data/install/tools/CmdSequence +16 -0
- data/install/tools/CmdSequence.bat +9 -0
- data/install/tools/CmdTlmServer +16 -0
- data/install/tools/CmdTlmServer.bat +9 -0
- data/install/tools/ConfigEditor +16 -0
- data/install/tools/ConfigEditor.bat +9 -0
- data/install/tools/Dart +16 -0
- data/install/tools/Dart.bat +9 -0
- data/install/tools/DataViewer +16 -0
- data/install/tools/DataViewer.bat +9 -0
- data/install/tools/HandbookCreator +16 -0
- data/install/tools/HandbookCreator.bat +9 -0
- data/install/tools/Launcher +16 -0
- data/install/tools/Launcher.bat +9 -0
- data/install/tools/LimitsMonitor +16 -0
- data/install/tools/LimitsMonitor.bat +9 -0
- data/install/tools/OpenGLBuilder +16 -0
- data/install/tools/OpenGLBuilder.bat +9 -0
- data/install/tools/PacketViewer +16 -0
- data/install/tools/PacketViewer.bat +9 -0
- data/install/tools/Replay +16 -0
- data/install/tools/Replay.bat +9 -0
- data/install/tools/ScriptRunner +16 -0
- data/install/tools/ScriptRunner.bat +9 -0
- data/install/tools/TableManager +16 -0
- data/install/tools/TableManager.bat +9 -0
- data/install/tools/TestRunner +16 -0
- data/install/tools/TestRunner.bat +9 -0
- data/install/tools/TlmExtractor +16 -0
- data/install/tools/TlmExtractor.bat +9 -0
- data/install/tools/TlmGrapher +16 -0
- data/install/tools/TlmGrapher.bat +9 -0
- data/install/tools/TlmViewer +16 -0
- data/install/tools/TlmViewer.bat +9 -0
- data/install/tools/ToolLaunch.bat +72 -0
- data/install/tools/mac/CmdExtractor.app/Contents/Info.plist +38 -0
- data/install/tools/mac/CmdExtractor.app/Contents/MacOS/CmdExtractor.rb +16 -0
- data/install/tools/mac/CmdExtractor.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/CmdExtractor.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/CmdExtractor.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/CmdSender.app/Contents/Info.plist +38 -0
- data/install/tools/mac/CmdSender.app/Contents/MacOS/CmdSender.rb +16 -0
- data/install/tools/mac/CmdSender.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/CmdSender.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/CmdSender.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/CmdSequence.app/Contents/Info.plist +38 -0
- data/install/tools/mac/CmdSequence.app/Contents/MacOS/CmdSequence.rb +16 -0
- data/install/tools/mac/CmdSequence.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/CmdSequence.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/CmdSequence.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/CmdTlmServer.app/Contents/Info.plist +38 -0
- data/install/tools/mac/CmdTlmServer.app/Contents/MacOS/CmdTlmServer.rb +16 -0
- data/install/tools/mac/CmdTlmServer.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/CmdTlmServer.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/CmdTlmServer.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/ConfigEditor.app/Contents/Info.plist +38 -0
- data/install/tools/mac/ConfigEditor.app/Contents/MacOS/ConfigEditor.rb +16 -0
- data/install/tools/mac/ConfigEditor.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/ConfigEditor.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/ConfigEditor.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/DataViewer.app/Contents/Info.plist +38 -0
- data/install/tools/mac/DataViewer.app/Contents/MacOS/DataViewer.rb +16 -0
- data/install/tools/mac/DataViewer.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/DataViewer.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/DataViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/HandbookCreator.app/Contents/Info.plist +38 -0
- data/install/tools/mac/HandbookCreator.app/Contents/MacOS/HandbookCreator.rb +16 -0
- data/install/tools/mac/HandbookCreator.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/HandbookCreator.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/HandbookCreator.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/Launcher.app/Contents/Info.plist +38 -0
- data/install/tools/mac/Launcher.app/Contents/MacOS/Launcher.rb +16 -0
- data/install/tools/mac/Launcher.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/Launcher.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/Launcher.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/LimitsMonitor.app/Contents/Info.plist +38 -0
- data/install/tools/mac/LimitsMonitor.app/Contents/MacOS/LimitsMonitor.rb +16 -0
- data/install/tools/mac/LimitsMonitor.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/LimitsMonitor.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/LimitsMonitor.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/OpenGLBuilder.app/Contents/Info.plist +38 -0
- data/install/tools/mac/OpenGLBuilder.app/Contents/MacOS/OpenGLBuilder.rb +16 -0
- data/install/tools/mac/OpenGLBuilder.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/OpenGLBuilder.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/OpenGLBuilder.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/PacketViewer.app/Contents/Info.plist +38 -0
- data/install/tools/mac/PacketViewer.app/Contents/MacOS/PacketViewer.rb +16 -0
- data/install/tools/mac/PacketViewer.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/PacketViewer.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/PacketViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/Replay.app/Contents/Info.plist +38 -0
- data/install/tools/mac/Replay.app/Contents/MacOS/Replay.rb +16 -0
- data/install/tools/mac/Replay.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/Replay.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/Replay.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/ScriptRunner.app/Contents/Info.plist +38 -0
- data/install/tools/mac/ScriptRunner.app/Contents/MacOS/ScriptRunner.rb +16 -0
- data/install/tools/mac/ScriptRunner.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/ScriptRunner.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/ScriptRunner.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/TableManager.app/Contents/Info.plist +38 -0
- data/install/tools/mac/TableManager.app/Contents/MacOS/TableManager.rb +16 -0
- data/install/tools/mac/TableManager.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/TableManager.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/TableManager.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/TestRunner.app/Contents/Info.plist +38 -0
- data/install/tools/mac/TestRunner.app/Contents/MacOS/TestRunner.rb +16 -0
- data/install/tools/mac/TestRunner.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/TestRunner.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/TestRunner.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/TlmExtractor.app/Contents/Info.plist +38 -0
- data/install/tools/mac/TlmExtractor.app/Contents/MacOS/TlmExtractor.rb +16 -0
- data/install/tools/mac/TlmExtractor.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/TlmExtractor.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/TlmExtractor.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/TlmGrapher.app/Contents/Info.plist +38 -0
- data/install/tools/mac/TlmGrapher.app/Contents/MacOS/TlmGrapher.rb +16 -0
- data/install/tools/mac/TlmGrapher.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/TlmGrapher.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/TlmGrapher.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/TlmViewer.app/Contents/Info.plist +38 -0
- data/install/tools/mac/TlmViewer.app/Contents/MacOS/TlmViewer.rb +16 -0
- data/install/tools/mac/TlmViewer.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/TlmViewer.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/TlmViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/tool_launch.rb +38 -0
- data/lib/cosmos/ccsds/ccsds_packet.rb +63 -0
- data/lib/cosmos/ccsds/ccsds_parser.rb +143 -0
- data/lib/cosmos/config/config_parser.rb +506 -0
- data/lib/cosmos/config/meta_config_parser.rb +57 -0
- data/lib/cosmos/conversions/conversion.rb +52 -0
- data/lib/cosmos/conversions/generic_conversion.rb +67 -0
- data/lib/cosmos/conversions/new_packet_log_conversion.rb +52 -0
- data/lib/cosmos/conversions/packet_time_formatted_conversion.rb +38 -0
- data/lib/cosmos/conversions/packet_time_seconds_conversion.rb +38 -0
- data/lib/cosmos/conversions/polynomial_conversion.rb +79 -0
- data/lib/cosmos/conversions/processor_conversion.rb +56 -0
- data/lib/cosmos/conversions/received_count_conversion.rb +33 -0
- data/lib/cosmos/conversions/received_time_formatted_conversion.rb +37 -0
- data/lib/cosmos/conversions/received_time_seconds_conversion.rb +37 -0
- data/lib/cosmos/conversions/segmented_polynomial_conversion.rb +139 -0
- data/lib/cosmos/conversions/unix_time_conversion.rb +57 -0
- data/lib/cosmos/conversions/unix_time_formatted_conversion.rb +44 -0
- data/lib/cosmos/conversions/unix_time_seconds_conversion.rb +44 -0
- data/lib/cosmos/conversions.rb +15 -0
- data/lib/cosmos/core_ext/array.rb +397 -0
- data/lib/cosmos/core_ext/class.rb +63 -0
- data/lib/cosmos/core_ext/cosmos_io.rb +46 -0
- data/lib/cosmos/core_ext/exception.rb +52 -0
- data/lib/cosmos/core_ext/file.rb +76 -0
- data/lib/cosmos/core_ext/hash.rb +28 -0
- data/lib/cosmos/core_ext/io.rb +122 -0
- data/lib/cosmos/core_ext/kernel.rb +33 -0
- data/lib/cosmos/core_ext/math.rb +119 -0
- data/lib/cosmos/core_ext/matrix.rb +149 -0
- data/lib/cosmos/core_ext/objectspace.rb +27 -0
- data/lib/cosmos/core_ext/range.rb +18 -0
- data/lib/cosmos/core_ext/socket.rb +32 -0
- data/lib/cosmos/core_ext/string.rb +351 -0
- data/lib/cosmos/core_ext/stringio.rb +24 -0
- data/lib/cosmos/core_ext/time.rb +483 -0
- data/lib/cosmos/core_ext.rb +18 -0
- data/lib/cosmos/dart/.rspec +1 -0
- data/lib/cosmos/dart/Rakefile +7 -0
- data/lib/cosmos/dart/app/assets/config/manifest.js +4 -0
- data/lib/cosmos/dart/app/assets/images/.keep +0 -0
- data/lib/cosmos/dart/app/assets/javascripts/application.js +13 -0
- data/lib/cosmos/dart/app/assets/javascripts/cable.js +13 -0
- data/lib/cosmos/dart/app/assets/stylesheets/application.css.scss +15 -0
- data/lib/cosmos/dart/app/channels/application_cable/channel.rb +4 -0
- data/lib/cosmos/dart/app/channels/application_cable/connection.rb +4 -0
- data/lib/cosmos/dart/app/controllers/application_controller.rb +3 -0
- data/lib/cosmos/dart/app/jobs/application_job.rb +2 -0
- data/lib/cosmos/dart/app/mailers/application_mailer.rb +4 -0
- data/lib/cosmos/dart/app/models/application_record.rb +3 -0
- data/lib/cosmos/dart/app/models/item.rb +6 -0
- data/lib/cosmos/dart/app/models/item_to_decom_table_mapping.rb +9 -0
- data/lib/cosmos/dart/app/models/packet.rb +4 -0
- data/lib/cosmos/dart/app/models/packet_config.rb +7 -0
- data/lib/cosmos/dart/app/models/packet_log.rb +3 -0
- data/lib/cosmos/dart/app/models/packet_log_entry.rb +41 -0
- data/lib/cosmos/dart/app/models/status.rb +2 -0
- data/lib/cosmos/dart/app/models/system_config.rb +2 -0
- data/lib/cosmos/dart/app/models/target.rb +4 -0
- data/lib/cosmos/dart/app/views/layouts/application.html.erb +14 -0
- data/lib/cosmos/dart/app/views/layouts/mailer.html.erb +13 -0
- data/lib/cosmos/dart/app/views/layouts/mailer.text.erb +1 -0
- data/lib/cosmos/dart/bin/bundle +3 -0
- data/lib/cosmos/dart/bin/rails +4 -0
- data/lib/cosmos/dart/bin/rake +4 -0
- data/lib/cosmos/dart/bin/setup +34 -0
- data/lib/cosmos/dart/bin/update +29 -0
- data/lib/cosmos/dart/config/application.rb +29 -0
- data/lib/cosmos/dart/config/boot.rb +3 -0
- data/lib/cosmos/dart/config/cable.yml +9 -0
- data/lib/cosmos/dart/config/database.yml +25 -0
- data/lib/cosmos/dart/config/environment.rb +5 -0
- data/lib/cosmos/dart/config/environments/development.rb +62 -0
- data/lib/cosmos/dart/config/environments/production.rb +84 -0
- data/lib/cosmos/dart/config/environments/test.rb +42 -0
- data/lib/cosmos/dart/config/initializers/application_controller_renderer.rb +6 -0
- data/lib/cosmos/dart/config/initializers/assets.rb +12 -0
- data/lib/cosmos/dart/config/initializers/backtrace_silencers.rb +7 -0
- data/lib/cosmos/dart/config/initializers/cookies_serializer.rb +5 -0
- data/lib/cosmos/dart/config/initializers/filter_parameter_logging.rb +4 -0
- data/lib/cosmos/dart/config/initializers/inflections.rb +16 -0
- data/lib/cosmos/dart/config/initializers/mime_types.rb +4 -0
- data/lib/cosmos/dart/config/initializers/new_framework_defaults.rb +25 -0
- data/lib/cosmos/dart/config/initializers/session_store.rb +3 -0
- data/lib/cosmos/dart/config/initializers/wrap_parameters.rb +14 -0
- data/lib/cosmos/dart/config/locales/en.yml +23 -0
- data/lib/cosmos/dart/config/puma.rb +47 -0
- data/lib/cosmos/dart/config/routes.rb +3 -0
- data/lib/cosmos/dart/config/secrets.yml +22 -0
- data/lib/cosmos/dart/config.ru +5 -0
- data/lib/cosmos/dart/db/migrate/20170406172907_create_targets.rb +8 -0
- data/lib/cosmos/dart/db/migrate/20170406172927_create_packets.rb +10 -0
- data/lib/cosmos/dart/db/migrate/20170406172937_create_packet_logs.rb +9 -0
- data/lib/cosmos/dart/db/migrate/20170406172943_create_packet_log_entries.rb +16 -0
- data/lib/cosmos/dart/db/migrate/20170406183500_change_packet_log_entries_primary_key.rb +5 -0
- data/lib/cosmos/dart/db/migrate/20170407153618_add_unique_requirements.rb +7 -0
- data/lib/cosmos/dart/db/migrate/20170511155447_add_meta_id_to_packet_log_entries.rb +6 -0
- data/lib/cosmos/dart/db/migrate/20170523185056_rename_received_time_and_add_is_tlm_to_packet_log_entries.rb +7 -0
- data/lib/cosmos/dart/db/migrate/20170525201157_create_items.rb +10 -0
- data/lib/cosmos/dart/db/migrate/20170525201315_create_system_configs.rb +9 -0
- data/lib/cosmos/dart/db/migrate/20170525201624_create_packet_configs.rb +11 -0
- data/lib/cosmos/dart/db/migrate/20170525201745_create_item_to_decom_table_mappings.rb +12 -0
- data/lib/cosmos/dart/db/migrate/20170525201939_create_decom_tables.rb +12 -0
- data/lib/cosmos/dart/db/migrate/20170525202051_add_decom_state_to_packet_log_entry.rb +5 -0
- data/lib/cosmos/dart/db/migrate/20170913160409_update_items.rb +6 -0
- data/lib/cosmos/dart/db/migrate/20170913160558_update_item_to_decom_table_mapping.rb +11 -0
- data/lib/cosmos/dart/db/migrate/20170913160916_udpate_decom_table.rb +6 -0
- data/lib/cosmos/dart/db/migrate/20170913212026_add_ready_to_packet_configs.rb +5 -0
- data/lib/cosmos/dart/db/migrate/20170913223556_modify_tables.rb +9 -0
- data/lib/cosmos/dart/db/migrate/20170914215744_modify_mapping_table.rb +6 -0
- data/lib/cosmos/dart/db/migrate/20170919201433_add_system_config_id_to_packet_config.rb +11 -0
- data/lib/cosmos/dart/db/migrate/20170919210307_add_max_table_index_to_packet_configs.rb +5 -0
- data/lib/cosmos/dart/db/migrate/20171215225546_add_ready_to_packet_log_entries.rb +5 -0
- data/lib/cosmos/dart/db/migrate/20180116214338_add_index_for_ple_ready_to_packet_log_entries.rb +5 -0
- data/lib/cosmos/dart/db/migrate/20180423205644_create_statuses.rb +22 -0
- data/lib/cosmos/dart/db/migrate/20180425211340_add_decom_state_index.rb +5 -0
- data/lib/cosmos/dart/db/migrate/20180509204705_remove_indexes.rb +29 -0
- data/lib/cosmos/dart/db/migrate/20180510160002_remove_timestamps_from_ples.rb +6 -0
- data/lib/cosmos/dart/db/migrate/20180511194944_add_packet_log_id_to_tables.rb +18 -0
- data/lib/cosmos/dart/db/schema.rb +109 -0
- data/lib/cosmos/dart/db/seeds.rb +15 -0
- data/lib/cosmos/dart/examples/dart_decom_client.rb +45 -0
- data/lib/cosmos/dart/examples/dart_stream_client.rb +97 -0
- data/lib/cosmos/dart/lib/dart_common.rb +755 -0
- data/lib/cosmos/dart/lib/dart_constants.rb +15 -0
- data/lib/cosmos/dart/lib/dart_database_cleaner.rb +223 -0
- data/lib/cosmos/dart/lib/dart_decom_query.rb +285 -0
- data/lib/cosmos/dart/lib/dart_decommutator.rb +304 -0
- data/lib/cosmos/dart/lib/dart_importer.rb +184 -0
- data/lib/cosmos/dart/lib/dart_logging.rb +50 -0
- data/lib/cosmos/dart/lib/dart_master_query.rb +71 -0
- data/lib/cosmos/dart/lib/dart_packet_log_writer.rb +157 -0
- data/lib/cosmos/dart/lib/dart_reducer_manager.rb +116 -0
- data/lib/cosmos/dart/lib/dart_reducer_worker_thread.rb +305 -0
- data/lib/cosmos/dart/lib/dart_tcpip_server_interface.rb +142 -0
- data/lib/cosmos/dart/processes/dart.rb +148 -0
- data/lib/cosmos/dart/processes/dart_decom_server.rb +40 -0
- data/lib/cosmos/dart/processes/dart_import.rb +64 -0
- data/lib/cosmos/dart/processes/dart_ingester.rb +132 -0
- data/lib/cosmos/dart/processes/dart_master.rb +44 -0
- data/lib/cosmos/dart/processes/dart_reducer.rb +28 -0
- data/lib/cosmos/dart/processes/dart_stream_server.rb +32 -0
- data/lib/cosmos/dart/processes/dart_util.rb +262 -0
- data/lib/cosmos/dart/processes/dart_worker.rb +38 -0
- data/lib/cosmos/dart/spec/dart/dart_common_spec.rb +333 -0
- data/lib/cosmos/dart/spec/dart/dart_database_cleaner_spec.rb +455 -0
- data/lib/cosmos/dart/spec/dart/dart_decom_query_spec.rb +154 -0
- data/lib/cosmos/dart/spec/dart/dart_decommutator_spec.rb +337 -0
- data/lib/cosmos/dart/spec/dart/dart_importer_spec.rb +84 -0
- data/lib/cosmos/dart/spec/dart/dart_logging_spec.rb +30 -0
- data/lib/cosmos/dart/spec/dart/dart_packet_log_writer_spec.rb +152 -0
- data/lib/cosmos/dart/spec/dart/dart_reducer_manager_spec.rb +290 -0
- data/lib/cosmos/dart/spec/dart/dart_tcpip_server_interface_spec.rb +240 -0
- data/lib/cosmos/dart/spec/rails_helper.rb +60 -0
- data/lib/cosmos/dart/spec/spec_helper.rb +139 -0
- data/lib/cosmos/ext/.keep +0 -0
- data/lib/cosmos/gui/choosers/combobox_chooser.rb +141 -0
- data/lib/cosmos/gui/choosers/file_chooser.rb +85 -0
- data/lib/cosmos/gui/choosers/float_chooser.rb +67 -0
- data/lib/cosmos/gui/choosers/integer_chooser.rb +69 -0
- data/lib/cosmos/gui/choosers/string_chooser.rb +35 -0
- data/lib/cosmos/gui/choosers/telemetry_chooser.rb +326 -0
- data/lib/cosmos/gui/choosers/value_chooser.rb +67 -0
- data/lib/cosmos/gui/dialogs/about_dialog.rb +166 -0
- data/lib/cosmos/gui/dialogs/calendar_dialog.rb +140 -0
- data/lib/cosmos/gui/dialogs/cmd_details_dialog.rb +51 -0
- data/lib/cosmos/gui/dialogs/cmd_tlm_raw_dialog.rb +167 -0
- data/lib/cosmos/gui/dialogs/dart_dialog.rb +60 -0
- data/lib/cosmos/gui/dialogs/details_dialog.rb +205 -0
- data/lib/cosmos/gui/dialogs/exception_dialog.rb +121 -0
- data/lib/cosmos/gui/dialogs/exception_list_dialog.rb +60 -0
- data/lib/cosmos/gui/dialogs/find_replace_dialog.rb +272 -0
- data/lib/cosmos/gui/dialogs/interface_raw_dialog.rb +143 -0
- data/lib/cosmos/gui/dialogs/legal_dialog.rb +184 -0
- data/lib/cosmos/gui/dialogs/packet_log_dialog.rb +97 -0
- data/lib/cosmos/gui/dialogs/progress_dialog.rb +313 -0
- data/lib/cosmos/gui/dialogs/pry_dialog.rb +169 -0
- data/lib/cosmos/gui/dialogs/scroll_text_dialog.rb +48 -0
- data/lib/cosmos/gui/dialogs/select_dialog.rb +59 -0
- data/lib/cosmos/gui/dialogs/set_tlm_dialog.rb +159 -0
- data/lib/cosmos/gui/dialogs/splash.rb +145 -0
- data/lib/cosmos/gui/dialogs/tlm_details_dialog.rb +202 -0
- data/lib/cosmos/gui/dialogs/tlm_edit_dialog.rb +79 -0
- data/lib/cosmos/gui/dialogs/tlm_graph_dialog.rb +110 -0
- data/lib/cosmos/gui/line_graph/line_graph.rb +482 -0
- data/lib/cosmos/gui/line_graph/line_graph_dialog.rb +36 -0
- data/lib/cosmos/gui/line_graph/line_graph_drawing.rb +521 -0
- data/lib/cosmos/gui/line_graph/line_graph_popups.rb +112 -0
- data/lib/cosmos/gui/line_graph/line_graph_scaling.rb +452 -0
- data/lib/cosmos/gui/line_graph/line_graph_script.rb +81 -0
- data/lib/cosmos/gui/line_graph/lines.rb +304 -0
- data/lib/cosmos/gui/line_graph/overview_graph.rb +474 -0
- data/lib/cosmos/gui/opengl/earth_model.rb +25 -0
- data/lib/cosmos/gui/opengl/gl_bounds.rb +55 -0
- data/lib/cosmos/gui/opengl/gl_light.rb +38 -0
- data/lib/cosmos/gui/opengl/gl_material.rb +28 -0
- data/lib/cosmos/gui/opengl/gl_scene.rb +78 -0
- data/lib/cosmos/gui/opengl/gl_shape.rb +148 -0
- data/lib/cosmos/gui/opengl/gl_viewer.rb +715 -0
- data/lib/cosmos/gui/opengl/gl_viewport.rb +34 -0
- data/lib/cosmos/gui/opengl/moon_model.rb +25 -0
- data/lib/cosmos/gui/opengl/opengl.rb +14 -0
- data/lib/cosmos/gui/opengl/stl_reader.rb +210 -0
- data/lib/cosmos/gui/opengl/stl_shape.rb +127 -0
- data/lib/cosmos/gui/opengl/texture_mapped_sphere.rb +204 -0
- data/lib/cosmos/gui/qt.rb +858 -0
- data/lib/cosmos/gui/qt_tool.rb +524 -0
- data/lib/cosmos/gui/text/completion.rb +403 -0
- data/lib/cosmos/gui/text/completion_line_edit.rb +30 -0
- data/lib/cosmos/gui/text/completion_text_edit.rb +198 -0
- data/lib/cosmos/gui/text/ruby_editor.rb +505 -0
- data/lib/cosmos/gui/utilities/analyze_log.rb +153 -0
- data/lib/cosmos/gui/utilities/classification_banner.rb +60 -0
- data/lib/cosmos/gui/utilities/screenshot.rb +33 -0
- data/lib/cosmos/gui/utilities/script_module_gui.rb +390 -0
- data/lib/cosmos/gui/widgets/dart_frame.rb +142 -0
- data/lib/cosmos/gui/widgets/dart_meta_frame.rb +145 -0
- data/lib/cosmos/gui/widgets/full_text_search_line_edit.rb +171 -0
- data/lib/cosmos/gui/widgets/packet_log_frame.rb +374 -0
- data/lib/cosmos/gui/widgets/realtime_button_bar.rb +99 -0
- data/lib/cosmos/interfaces/cmd_tlm_server_interface.rb +134 -0
- data/lib/cosmos/interfaces/dart_status_interface.rb +91 -0
- data/lib/cosmos/interfaces/interface.rb +456 -0
- data/lib/cosmos/interfaces/linc_interface.rb +459 -0
- data/lib/cosmos/interfaces/protocols/burst_protocol.rb +183 -0
- data/lib/cosmos/interfaces/protocols/crc_protocol.rb +183 -0
- data/lib/cosmos/interfaces/protocols/fixed_protocol.rb +144 -0
- data/lib/cosmos/interfaces/protocols/ignore_packet_protocol.rb +46 -0
- data/lib/cosmos/interfaces/protocols/length_protocol.rb +154 -0
- data/lib/cosmos/interfaces/protocols/override_protocol.rb +52 -0
- data/lib/cosmos/interfaces/protocols/preidentified_protocol.rb +187 -0
- data/lib/cosmos/interfaces/protocols/protocol.rb +73 -0
- data/lib/cosmos/interfaces/protocols/template_protocol.rb +253 -0
- data/lib/cosmos/interfaces/protocols/terminated_protocol.rb +83 -0
- data/lib/cosmos/interfaces/serial_interface.rb +91 -0
- data/lib/cosmos/interfaces/simulated_target_interface.rb +149 -0
- data/lib/cosmos/interfaces/stream_interface.rb +65 -0
- data/lib/cosmos/interfaces/tcpip_client_interface.rb +60 -0
- data/lib/cosmos/interfaces/tcpip_server_interface.rb +624 -0
- data/lib/cosmos/interfaces/udp_interface.rb +154 -0
- data/lib/cosmos/interfaces.rb +24 -0
- data/lib/cosmos/io/buffered_file.rb +100 -0
- data/lib/cosmos/io/cosmos_snmp.rb +50 -0
- data/lib/cosmos/io/io_multiplexer.rb +75 -0
- data/lib/cosmos/io/json_drb.rb +307 -0
- data/lib/cosmos/io/json_drb_object.rb +172 -0
- data/lib/cosmos/io/json_drb_rack.rb +99 -0
- data/lib/cosmos/io/json_rpc.rb +394 -0
- data/lib/cosmos/io/posix_serial_driver.rb +187 -0
- data/lib/cosmos/io/raw_logger.rb +170 -0
- data/lib/cosmos/io/raw_logger_pair.rb +71 -0
- data/lib/cosmos/io/serial_driver.rb +101 -0
- data/lib/cosmos/io/stderr.rb +36 -0
- data/lib/cosmos/io/stdout.rb +36 -0
- data/lib/cosmos/io/udp_sockets.rb +196 -0
- data/lib/cosmos/io/win32_serial_driver.rb +187 -0
- data/lib/cosmos/packet_logs/ccsds_log_reader.rb +104 -0
- data/lib/cosmos/packet_logs/packet_log_reader.rb +504 -0
- data/lib/cosmos/packet_logs/packet_log_writer.rb +353 -0
- data/lib/cosmos/packet_logs/packet_log_writer_pair.rb +30 -0
- data/lib/cosmos/packet_logs.rb +6 -0
- data/lib/cosmos/packets/binary_accessor.rb +1201 -0
- data/lib/cosmos/packets/commands.rb +361 -0
- data/lib/cosmos/packets/limits.rb +264 -0
- data/lib/cosmos/packets/limits_response.rb +42 -0
- data/lib/cosmos/packets/packet.rb +1075 -0
- data/lib/cosmos/packets/packet_config.rb +614 -0
- data/lib/cosmos/packets/packet_item.rb +442 -0
- data/lib/cosmos/packets/packet_item_limits.rb +128 -0
- data/lib/cosmos/packets/parsers/format_string_parser.rb +58 -0
- data/lib/cosmos/packets/parsers/limits_parser.rb +147 -0
- data/lib/cosmos/packets/parsers/limits_response_parser.rb +52 -0
- data/lib/cosmos/packets/parsers/macro_parser.rb +121 -0
- data/lib/cosmos/packets/parsers/packet_item_parser.rb +252 -0
- data/lib/cosmos/packets/parsers/packet_parser.rb +124 -0
- data/lib/cosmos/packets/parsers/processor_parser.rb +63 -0
- data/lib/cosmos/packets/parsers/state_parser.rb +118 -0
- data/lib/cosmos/packets/parsers/xtce_converter.rb +428 -0
- data/lib/cosmos/packets/parsers/xtce_parser.rb +694 -0
- data/lib/cosmos/packets/structure.rb +557 -0
- data/lib/cosmos/packets/structure_item.rb +326 -0
- data/lib/cosmos/packets/telemetry.rb +470 -0
- data/lib/cosmos/processors/new_packet_log_processor.rb +39 -0
- data/lib/cosmos/processors/processor.rb +76 -0
- data/lib/cosmos/processors/statistics_processor.rb +72 -0
- data/lib/cosmos/processors/watermark_processor.rb +49 -0
- data/lib/cosmos/processors.rb +6 -0
- data/lib/cosmos/script/api_shared.rb +995 -0
- data/lib/cosmos/script/cmd_tlm_server.rb +216 -0
- data/lib/cosmos/script/commands.rb +177 -0
- data/lib/cosmos/script/extract.rb +141 -0
- data/lib/cosmos/script/limits.rb +120 -0
- data/lib/cosmos/script/replay.rb +60 -0
- data/lib/cosmos/script/script.rb +149 -0
- data/lib/cosmos/script/scripting.rb +146 -0
- data/lib/cosmos/script/telemetry.rb +218 -0
- data/lib/cosmos/script/tools.rb +121 -0
- data/lib/cosmos/script.rb +9 -0
- data/lib/cosmos/streams/serial_stream.rb +160 -0
- data/lib/cosmos/streams/stream.rb +54 -0
- data/lib/cosmos/streams/tcpip_client_stream.rb +113 -0
- data/lib/cosmos/streams/tcpip_socket_stream.rb +186 -0
- data/lib/cosmos/system/system.rb +1029 -0
- data/lib/cosmos/system/target.rb +262 -0
- data/lib/cosmos/system.rb +4 -0
- data/lib/cosmos/tools/cmd_extractor/cmd_extractor.rb +470 -0
- data/lib/cosmos/tools/cmd_sender/cmd_param_table_item_delegate.rb +94 -0
- data/lib/cosmos/tools/cmd_sender/cmd_params.rb +382 -0
- data/lib/cosmos/tools/cmd_sender/cmd_sender.rb +533 -0
- data/lib/cosmos/tools/cmd_sender/cmd_sender_text_edit.rb +70 -0
- data/lib/cosmos/tools/cmd_sequence/cmd_sequence.rb +769 -0
- data/lib/cosmos/tools/cmd_sequence/sequence_item.rb +221 -0
- data/lib/cosmos/tools/cmd_sequence/sequence_list.rb +206 -0
- data/lib/cosmos/tools/cmd_tlm_server/api.rb +1694 -0
- data/lib/cosmos/tools/cmd_tlm_server/background_task.rb +54 -0
- data/lib/cosmos/tools/cmd_tlm_server/background_tasks.rb +82 -0
- data/lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server.rb +785 -0
- data/lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server_config.rb +294 -0
- data/lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server_gui.rb +650 -0
- data/lib/cosmos/tools/cmd_tlm_server/commanding.rb +132 -0
- data/lib/cosmos/tools/cmd_tlm_server/connections.rb +175 -0
- data/lib/cosmos/tools/cmd_tlm_server/gui/interfaces_tab.rb +216 -0
- data/lib/cosmos/tools/cmd_tlm_server/gui/logging_tab.rb +181 -0
- data/lib/cosmos/tools/cmd_tlm_server/gui/packets_tab.rb +163 -0
- data/lib/cosmos/tools/cmd_tlm_server/gui/replay_tab.rb +319 -0
- data/lib/cosmos/tools/cmd_tlm_server/gui/status_tab.rb +270 -0
- data/lib/cosmos/tools/cmd_tlm_server/gui/targets_tab.rb +93 -0
- data/lib/cosmos/tools/cmd_tlm_server/interface_thread.rb +292 -0
- data/lib/cosmos/tools/cmd_tlm_server/interfaces.rb +153 -0
- data/lib/cosmos/tools/cmd_tlm_server/limits_groups_background_task.rb +124 -0
- data/lib/cosmos/tools/cmd_tlm_server/packet_logging.rb +161 -0
- data/lib/cosmos/tools/cmd_tlm_server/replay_backend.rb +511 -0
- data/lib/cosmos/tools/cmd_tlm_server/router_thread.rb +71 -0
- data/lib/cosmos/tools/cmd_tlm_server/routers.rb +144 -0
- data/lib/cosmos/tools/config_editor/config_editor.rb +918 -0
- data/lib/cosmos/tools/config_editor/config_editor_frame.rb +686 -0
- data/lib/cosmos/tools/config_editor/system_config_dialog.rb +158 -0
- data/lib/cosmos/tools/data_viewer/data_viewer.rb +789 -0
- data/lib/cosmos/tools/data_viewer/data_viewer_component.rb +121 -0
- data/lib/cosmos/tools/data_viewer/dump_component.rb +34 -0
- data/lib/cosmos/tools/data_viewer/text_component.rb +77 -0
- data/lib/cosmos/tools/handbook_creator/handbook_creator.rb +182 -0
- data/lib/cosmos/tools/handbook_creator/handbook_creator_config.rb +380 -0
- data/lib/cosmos/tools/launcher/launcher.rb +195 -0
- data/lib/cosmos/tools/launcher/launcher_config.rb +245 -0
- data/lib/cosmos/tools/launcher/launcher_multitool.rb +40 -0
- data/lib/cosmos/tools/launcher/launcher_tool.rb +116 -0
- data/lib/cosmos/tools/limits_monitor/limits_monitor.rb +1029 -0
- data/lib/cosmos/tools/opengl_builder/opengl_builder.rb +416 -0
- data/lib/cosmos/tools/opengl_builder/scene_config.rb +118 -0
- data/lib/cosmos/tools/packet_viewer/packet_viewer.rb +641 -0
- data/lib/cosmos/tools/replay/replay.rb +17 -0
- data/lib/cosmos/tools/script_runner/script_audit.rb +148 -0
- data/lib/cosmos/tools/script_runner/script_runner.rb +1066 -0
- data/lib/cosmos/tools/script_runner/script_runner_config.rb +53 -0
- data/lib/cosmos/tools/script_runner/script_runner_frame.rb +1985 -0
- data/lib/cosmos/tools/table_manager/table.rb +61 -0
- data/lib/cosmos/tools/table_manager/table_config.rb +191 -0
- data/lib/cosmos/tools/table_manager/table_item.rb +58 -0
- data/lib/cosmos/tools/table_manager/table_item_parser.rb +48 -0
- data/lib/cosmos/tools/table_manager/table_manager.rb +1152 -0
- data/lib/cosmos/tools/table_manager/table_manager_core.rb +320 -0
- data/lib/cosmos/tools/table_manager/table_parser.rb +75 -0
- data/lib/cosmos/tools/test_runner/results_writer.rb +287 -0
- data/lib/cosmos/tools/test_runner/test.rb +540 -0
- data/lib/cosmos/tools/test_runner/test_runner.rb +1302 -0
- data/lib/cosmos/tools/test_runner/test_runner_chooser.rb +353 -0
- data/lib/cosmos/tools/tlm_extractor/text_item_chooser.rb +60 -0
- data/lib/cosmos/tools/tlm_extractor/tlm_extractor.rb +1305 -0
- data/lib/cosmos/tools/tlm_extractor/tlm_extractor_config.rb +535 -0
- data/lib/cosmos/tools/tlm_extractor/tlm_extractor_processor.rb +131 -0
- data/lib/cosmos/tools/tlm_grapher/data_object_adders/housekeeping_data_object_adder.rb +92 -0
- data/lib/cosmos/tools/tlm_grapher/data_object_adders/singlexy_data_object_adder.rb +44 -0
- data/lib/cosmos/tools/tlm_grapher/data_object_adders/xy_data_object_adder.rb +95 -0
- data/lib/cosmos/tools/tlm_grapher/data_object_editors/data_object_editor.rb +61 -0
- data/lib/cosmos/tools/tlm_grapher/data_object_editors/housekeeping_data_object_editor.rb +250 -0
- data/lib/cosmos/tools/tlm_grapher/data_object_editors/linegraph_data_object_editor.rb +141 -0
- data/lib/cosmos/tools/tlm_grapher/data_object_editors/singlexy_data_object_editor.rb +30 -0
- data/lib/cosmos/tools/tlm_grapher/data_object_editors/xy_data_object_editor.rb +210 -0
- data/lib/cosmos/tools/tlm_grapher/data_objects/data_object.rb +232 -0
- data/lib/cosmos/tools/tlm_grapher/data_objects/housekeeping_data_object.rb +503 -0
- data/lib/cosmos/tools/tlm_grapher/data_objects/linegraph_data_object.rb +173 -0
- data/lib/cosmos/tools/tlm_grapher/data_objects/singlexy_data_object.rb +21 -0
- data/lib/cosmos/tools/tlm_grapher/data_objects/xy_data_object.rb +381 -0
- data/lib/cosmos/tools/tlm_grapher/plot_editors/linegraph_plot_editor.rb +191 -0
- data/lib/cosmos/tools/tlm_grapher/plot_editors/plot_editor.rb +28 -0
- data/lib/cosmos/tools/tlm_grapher/plot_editors/singlexy_plot_editor.rb +30 -0
- data/lib/cosmos/tools/tlm_grapher/plot_editors/xy_plot_editor.rb +59 -0
- data/lib/cosmos/tools/tlm_grapher/plot_gui_objects/linegraph_plot_gui_object.rb +173 -0
- data/lib/cosmos/tools/tlm_grapher/plot_gui_objects/singlexy_plot_gui_object.rb +27 -0
- data/lib/cosmos/tools/tlm_grapher/plot_gui_objects/xy_plot_gui_object.rb +74 -0
- data/lib/cosmos/tools/tlm_grapher/plots/linegraph_plot.rb +209 -0
- data/lib/cosmos/tools/tlm_grapher/plots/plot.rb +69 -0
- data/lib/cosmos/tools/tlm_grapher/plots/singlexy_plot.rb +20 -0
- data/lib/cosmos/tools/tlm_grapher/plots/xy_plot.rb +61 -0
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots/overview_tabbed_plots.rb +1291 -0
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_config.rb +447 -0
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_dart_thread.rb +164 -0
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_data_object_editor.rb +107 -0
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_logfile_thread.rb +114 -0
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_plot_editor.rb +101 -0
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_realtime_thread.rb +79 -0
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_tab.rb +57 -0
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_tool.rb +1079 -0
- data/lib/cosmos/tools/tlm_grapher/tlm_grapher.rb +104 -0
- data/lib/cosmos/tools/tlm_viewer/screen.rb +590 -0
- data/lib/cosmos/tools/tlm_viewer/tlm_viewer.rb +615 -0
- data/lib/cosmos/tools/tlm_viewer/tlm_viewer_config.rb +314 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/aging_widget.rb +109 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/array_widget.rb +65 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/backgroundbutton_widget.rb +54 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/block_widget.rb +56 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/button_widget.rb +39 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/canvas_clickable.rb +47 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/canvas_widget.rb +84 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasdot_widget.rb +78 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasellipse_widget.rb +40 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasimage_widget.rb +48 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasimagevalue_widget.rb +109 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/canvaslabel_widget.rb +45 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/canvaslabelvalue_widget.rb +55 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasline_widget.rb +55 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/canvaslinevalue_widget.rb +67 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasvalue_widget.rb +131 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/checkbutton_widget.rb +40 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb +32 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/formatfontvalue_widget.rb +31 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/formatvalue_widget.rb +32 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/horizontal_widget.rb +27 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/horizontalbox_widget.rb +30 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/horizontalline_widget.rb +24 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/label_widget.rb +31 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/labelformatvalue_widget.rb +38 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/labelled_widget.rb +58 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/labelprogressbar_widget.rb +37 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/labeltrendlimitsbar_widget.rb +36 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/labelvalue_widget.rb +58 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/labelvaluedesc_widget.rb +40 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/labelvaluelimitsbar_widget.rb +36 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/labelvaluelimitscolumn_widget.rb +37 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/labelvaluerangebar_widget.rb +36 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/labelvaluerangecolumn_widget.rb +38 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/layout_widget.rb +32 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/led_widget.rb +108 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/limits_widget.rb +163 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/limitsbar_widget.rb +130 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/limitscolor_widget.rb +108 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/limitscolumn_widget.rb +130 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/linegraph_widget.rb +62 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/matrixbycolumns_widget.rb +59 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/multi_widget.rb +114 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/progressbar_widget.rb +39 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/radiobutton_widget.rb +41 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/rangebar_widget.rb +63 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/rangecolumn_widget.rb +63 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/screenshotbutton_widget.rb +35 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/scrollwindow_widget.rb +34 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/sectionheader_widget.rb +32 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/spacer_widget.rb +53 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/tabbook_widget.rb +25 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/tabitem_widget.rb +27 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/textbox_widget.rb +56 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/textfield_widget.rb +25 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/timegraph_widget.rb +86 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/title_widget.rb +21 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/trendbar_widget.rb +125 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/trendlimitsbar_widget.rb +48 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/value_widget.rb +43 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/valuelimitsbar_widget.rb +36 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/valuelimitscolumn_widget.rb +36 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/valuerangebar_widget.rb +36 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/valuerangecolumn_widget.rb +36 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/vertical_widget.rb +37 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/verticalbox_widget.rb +40 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/widget.rb +270 -0
- data/lib/cosmos/tools/tlm_viewer/widgets.rb +65 -0
- data/lib/cosmos/top_level.rb +825 -0
- data/lib/cosmos/utilities/crc.rb +271 -0
- data/lib/cosmos/utilities/csv.rb +190 -0
- data/lib/cosmos/utilities/logger.rb +137 -0
- data/lib/cosmos/utilities/low_fragmentation_array.rb +19 -0
- data/lib/cosmos/utilities/message_log.rb +80 -0
- data/lib/cosmos/utilities/quaternion.rb +258 -0
- data/lib/cosmos/utilities/ruby_lex_utils.rb +312 -0
- data/lib/cosmos/utilities/simulated_target.rb +100 -0
- data/lib/cosmos/utilities/sleeper.rb +44 -0
- data/lib/cosmos/utilities.rb +11 -0
- data/lib/cosmos/version.rb +12 -0
- data/lib/cosmos/win32/excel.rb +123 -0
- data/lib/cosmos/win32/win32.rb +381 -0
- data/lib/cosmos/win32/win32_main.rb +325 -0
- data/lib/cosmos.rb +63 -0
- data/make_gems.sh +10 -0
- data/roodi.yml +24 -0
- data/run_gui_tests.bat +46 -0
- data/spec/ccsds/ccsds_packet_spec.rb +67 -0
- data/spec/ccsds/ccsds_parser_spec.rb +148 -0
- data/spec/config/config_parser_spec.rb +399 -0
- data/spec/conversions/conversion_spec.rb +31 -0
- data/spec/conversions/generic_conversion_spec.rb +45 -0
- data/spec/conversions/new_packet_log_conversion_spec.rb +39 -0
- data/spec/conversions/packet_time_formatted_conversion_spec.rb +58 -0
- data/spec/conversions/packet_time_seconds_conversion_spec.rb +60 -0
- data/spec/conversions/polynomial_conversion_spec.rb +40 -0
- data/spec/conversions/processor_conversion_spec.rb +45 -0
- data/spec/conversions/received_count_conversion_spec.rb +43 -0
- data/spec/conversions/received_time_formatted_conversion_spec.rb +49 -0
- data/spec/conversions/received_time_seconds_conversion_spec.rb +50 -0
- data/spec/conversions/segmented_polynomial_conversion_spec.rb +51 -0
- data/spec/conversions/unix_time_formatted_conversion_spec.rb +74 -0
- data/spec/conversions/unix_time_seconds_conversion_spec.rb +76 -0
- data/spec/core_ext/array_spec.rb +247 -0
- data/spec/core_ext/class_spec.rb +90 -0
- data/spec/core_ext/cosmos_io_spec.rb +77 -0
- data/spec/core_ext/exception_spec.rb +91 -0
- data/spec/core_ext/file_spec.rb +72 -0
- data/spec/core_ext/hash_spec.rb +24 -0
- data/spec/core_ext/io_spec.rb +46 -0
- data/spec/core_ext/kernel_spec.rb +54 -0
- data/spec/core_ext/math_spec.rb +116 -0
- data/spec/core_ext/matrix_spec.rb +127 -0
- data/spec/core_ext/objectspace_spec.rb +32 -0
- data/spec/core_ext/range_spec.rb +21 -0
- data/spec/core_ext/socket_spec.rb +34 -0
- data/spec/core_ext/string_spec.rb +239 -0
- data/spec/core_ext/stringio_spec.rb +21 -0
- data/spec/core_ext/time_spec.rb +222 -0
- data/spec/gui/line_graph/line_clip_spec.rb +324 -0
- data/spec/gui/qt_spec.rb +104 -0
- data/spec/gui/utilities/script_module_gui_spec.rb +83 -0
- data/spec/install/config/data/data.txt +1 -0
- data/spec/install/config/system/system.txt +27 -0
- data/spec/install/config/targets/INST/cmd_tlm/inst_cmd_linc.txt +30 -0
- data/spec/install/config/targets/INST/cmd_tlm/inst_cmds.txt +113 -0
- data/spec/install/config/targets/INST/cmd_tlm/inst_tlm.txt +236 -0
- data/spec/install/config/targets/INST/cmd_tlm/inst_tlm_linc.txt +25 -0
- data/spec/install/config/targets/INST/cmd_tlm_server.txt +5 -0
- data/spec/install/config/targets/INST/lib/sim_inst.rb +305 -0
- data/spec/install/config/targets/INST/screens/hs.txt +42 -0
- data/spec/install/config/targets/INST/target.txt +12 -0
- data/spec/install/config/targets/SYSTEM/cmd_tlm/limits_groups.txt +7 -0
- data/spec/install/config/targets/SYSTEM/cmd_tlm/meta_tlm.txt +10 -0
- data/spec/install/config/targets/SYSTEM/cmd_tlm/system_cmds.txt +41 -0
- data/spec/install/config/targets/SYSTEM/cmd_tlm/system_tlm.txt +7 -0
- data/spec/install/config/targets/SYSTEM/cmd_tlm_server.txt +6 -0
- data/spec/install/config/targets/SYSTEM/screens/status.txt +12 -0
- data/spec/install/config/targets/SYSTEM/target.txt +12 -0
- data/spec/install/config/tools/cmd_tlm_server/cmd_tlm_server.txt +4 -0
- data/spec/install/lib/README.txt +1 -0
- data/spec/install/yaml_docs_spec.rb +132 -0
- data/spec/interfaces/cmd_tlm_server_interface_spec.rb +149 -0
- data/spec/interfaces/interface_spec.rb +513 -0
- data/spec/interfaces/linc_interface_spec.rb +243 -0
- data/spec/interfaces/protocols/burst_protocol_spec.rb +318 -0
- data/spec/interfaces/protocols/crc_protocol_spec.rb +825 -0
- data/spec/interfaces/protocols/fixed_protocol_spec.rb +154 -0
- data/spec/interfaces/protocols/ignore_packet_protocol_spec.rb +243 -0
- data/spec/interfaces/protocols/length_protocol_spec.rb +587 -0
- data/spec/interfaces/protocols/override_protocol_spec.rb +162 -0
- data/spec/interfaces/protocols/preidentified_protocol_spec.rb +368 -0
- data/spec/interfaces/protocols/template_protocol_spec.rb +444 -0
- data/spec/interfaces/protocols/terminated_protocol_spec.rb +174 -0
- data/spec/interfaces/serial_interface_spec.rb +66 -0
- data/spec/interfaces/simulated_target_interface_spec.rb +128 -0
- data/spec/interfaces/tcpip_client_interface_spec.rb +60 -0
- data/spec/interfaces/tcpip_server_interface_spec.rb +157 -0
- data/spec/interfaces/udp_interface_spec.rb +249 -0
- data/spec/io/buffered_file_spec.rb +146 -0
- data/spec/io/io_multiplexer_spec.rb +102 -0
- data/spec/io/json_drb_object_spec.rb +106 -0
- data/spec/io/json_drb_rack_spec.rb +166 -0
- data/spec/io/json_drb_spec.rb +251 -0
- data/spec/io/json_rpc_spec.rb +270 -0
- data/spec/io/posix_serial_driver_spec.rb +87 -0
- data/spec/io/raw_logger_pair_spec.rb +76 -0
- data/spec/io/raw_logger_spec.rb +138 -0
- data/spec/io/serial_driver_spec.rb +64 -0
- data/spec/io/stderr_spec.rb +32 -0
- data/spec/io/stdout_spec.rb +32 -0
- data/spec/io/udp_sockets_spec.rb +139 -0
- data/spec/io/win32_serial_driver_spec.rb +129 -0
- data/spec/packet_logs/packet_log_reader_spec.rb +607 -0
- data/spec/packet_logs/packet_log_writer_pair_spec.rb +30 -0
- data/spec/packet_logs/packet_log_writer_spec.rb +227 -0
- data/spec/packets/binary_accessor_spec.rb +2323 -0
- data/spec/packets/commands_spec.rb +401 -0
- data/spec/packets/limits_response_spec.rb +25 -0
- data/spec/packets/limits_spec.rb +344 -0
- data/spec/packets/packet_config_spec.rb +862 -0
- data/spec/packets/packet_item_limits_spec.rb +161 -0
- data/spec/packets/packet_item_spec.rb +450 -0
- data/spec/packets/packet_spec.rb +1499 -0
- data/spec/packets/parsers/format_string_parser_spec.rb +122 -0
- data/spec/packets/parsers/limits_parser_spec.rb +293 -0
- data/spec/packets/parsers/limits_response_parser_spec.rb +149 -0
- data/spec/packets/parsers/macro_parser_spec.rb +220 -0
- data/spec/packets/parsers/packet_item_parser_spec.rb +405 -0
- data/spec/packets/parsers/packet_parser_spec.rb +99 -0
- data/spec/packets/parsers/processor_parser_spec.rb +114 -0
- data/spec/packets/parsers/state_parser_spec.rb +247 -0
- data/spec/packets/parsers/xtce_parser_spec.rb +395 -0
- data/spec/packets/structure_item_spec.rb +200 -0
- data/spec/packets/structure_spec.rb +657 -0
- data/spec/packets/telemetry_spec.rb +629 -0
- data/spec/processors/new_packet_log_processor_spec.rb +39 -0
- data/spec/processors/processor_spec.rb +55 -0
- data/spec/processors/statistics_processor_spec.rb +95 -0
- data/spec/processors/watermark_processor_spec.rb +51 -0
- data/spec/script/cmd_tlm_server_spec.rb +194 -0
- data/spec/script/commands_disconnect_spec.rb +258 -0
- data/spec/script/commands_spec.rb +283 -0
- data/spec/script/extract_spec.rb +166 -0
- data/spec/script/limits_spec.rb +133 -0
- data/spec/script/script_spec.rb +80 -0
- data/spec/script/scripting_spec.rb +742 -0
- data/spec/script/telemetry_spec.rb +186 -0
- data/spec/script/tools_spec.rb +111 -0
- data/spec/spec_helper.rb +248 -0
- data/spec/streams/serial_stream_spec.rb +122 -0
- data/spec/streams/stream_spec.rb +30 -0
- data/spec/streams/tcpip_client_stream_spec.rb +65 -0
- data/spec/streams/tcpip_socket_stream_spec.rb +231 -0
- data/spec/system/system_spec.rb +1081 -0
- data/spec/system/target_spec.rb +368 -0
- data/spec/tools/cmd_tlm_server/api_spec.rb +1656 -0
- data/spec/tools/cmd_tlm_server/background_task_spec.rb +44 -0
- data/spec/tools/cmd_tlm_server/background_tasks_spec.rb +190 -0
- data/spec/tools/cmd_tlm_server/cmd_tlm_server_config_spec.rb +785 -0
- data/spec/tools/cmd_tlm_server/cmd_tlm_server_spec.rb +496 -0
- data/spec/tools/cmd_tlm_server/commanding_spec.rb +171 -0
- data/spec/tools/cmd_tlm_server/connections_spec.rb +231 -0
- data/spec/tools/cmd_tlm_server/interface_thread_spec.rb +319 -0
- data/spec/tools/cmd_tlm_server/interfaces_spec.rb +248 -0
- data/spec/tools/cmd_tlm_server/limits_groups_background_task_spec.rb +153 -0
- data/spec/tools/cmd_tlm_server/packet_logging_spec.rb +139 -0
- data/spec/tools/cmd_tlm_server/router_thread_spec.rb +150 -0
- data/spec/tools/cmd_tlm_server/routers_spec.rb +219 -0
- data/spec/tools/launcher/launcher_config_spec.rb +474 -0
- data/spec/tools/table_manager/table_config_spec.rb +225 -0
- data/spec/tools/table_manager/table_item_parser_spec.rb +61 -0
- data/spec/tools/table_manager/table_item_spec.rb +57 -0
- data/spec/tools/table_manager/table_parser_spec.rb +96 -0
- data/spec/tools/table_manager/table_spec.rb +90 -0
- data/spec/tools/table_manager/tablemanager_core_spec.rb +556 -0
- data/spec/tools/tlm_viewer/tlm_viewer_config_spec.rb +403 -0
- data/spec/top_level/top_level_spec.rb +545 -0
- data/spec/utilities/crc_spec.rb +45 -0
- data/spec/utilities/csv_spec.rb +148 -0
- data/spec/utilities/logger_spec.rb +102 -0
- data/spec/utilities/message_log_spec.rb +84 -0
- data/spec/utilities/quaternion_spec.rb +107 -0
- data/spec/utilities/ruby_lex_utils_spec.rb +86 -0
- data/tasks/gemfile_stats.rake +103 -0
- data/tasks/manifest.rake +22 -0
- data/tasks/spec.rake +23 -0
- data/test/benchmarks/binary_accessor_benchmark.rb +14 -0
- data/test/benchmarks/gsub_benchmark.rb +152 -0
- data/test/benchmarks/is_a_benchmark.rb +34 -0
- data/test/performance/PACKETS.bat +1 -0
- data/test/performance/Rakefile +77 -0
- data/test/performance/THREADS.bat +1 -0
- data/test/performance/config/data/attitude.bin +0 -0
- data/test/performance/config/data/crc.txt +215 -0
- data/test/performance/config/data/diamond.STL +58 -0
- data/test/performance/config/data/groundoff.gif +0 -0
- data/test/performance/config/data/groundon.gif +0 -0
- data/test/performance/config/data/hselectoff.gif +0 -0
- data/test/performance/config/data/hselecton.gif +0 -0
- data/test/performance/config/data/hswitchoff.gif +0 -0
- data/test/performance/config/data/hswitchon.gif +0 -0
- data/test/performance/config/data/meta_init.txt +4 -0
- data/test/performance/config/data/position.bin +0 -0
- data/test/performance/config/data/poweroff.gif +0 -0
- data/test/performance/config/data/poweron.gif +0 -0
- data/test/performance/config/data/satellite.gif +0 -0
- data/test/performance/config/data/tada.wav +0 -0
- data/test/performance/config/data/vswitchoff.gif +0 -0
- data/test/performance/config/data/vswitchon.gif +0 -0
- data/test/performance/config/system/system.txt +0 -0
- data/test/performance/config/system/system_packets.txt +38 -0
- data/test/performance/config/system/system_threads.txt +58 -0
- data/test/performance/config/targets/COSMOS/cmd_tlm/cosmos_server_cmds.txt +46 -0
- data/test/performance/config/targets/COSMOS/cmd_tlm/cosmos_server_tlm.txt +15 -0
- data/test/performance/config/targets/COSMOS/cmd_tlm_server.txt +6 -0
- data/test/performance/config/targets/COSMOS/screens/limits_change.txt +20 -0
- data/test/performance/config/targets/COSMOS/screens/version.txt +19 -0
- data/test/performance/config/targets/COSMOS/target.txt +11 -0
- data/test/performance/config/targets/PACKET/cmd_tlm/packet_cmds.txt +20 -0
- data/test/performance/config/targets/PACKET/cmd_tlm/packet_tlm.txt +98 -0
- data/test/performance/config/targets/PACKET/cmd_tlm_server.txt +6 -0
- data/test/performance/config/targets/PACKET/lib/packet_interface.rb +22 -0
- data/test/performance/config/targets/PACKET/lib/packet_limits_response.rb +24 -0
- data/test/performance/config/targets/PACKET/screens/status.txt +25 -0
- data/test/performance/config/targets/PACKET/target.txt +28 -0
- data/test/performance/config/targets/SYSTEM/screens/status.txt +12 -0
- data/test/performance/config/targets/THREAD/cmd_tlm/thread_cmds.txt +17 -0
- data/test/performance/config/targets/THREAD/cmd_tlm/thread_tlm.txt +18 -0
- data/test/performance/config/targets/THREAD/cmd_tlm_server.txt +6 -0
- data/test/performance/config/targets/THREAD/lib/thread_interface.rb +22 -0
- data/test/performance/config/targets/THREAD/screens/status.txt +25 -0
- data/test/performance/config/targets/THREAD/target.txt +7 -0
- data/test/performance/config/tools/cmd_tlm_server/cmd_tlm_server_packets.txt +28 -0
- data/test/performance/config/tools/cmd_tlm_server/cmd_tlm_server_threads.txt +68 -0
- data/test/performance/config/tools/data_viewer/data_viewer.txt +11 -0
- data/test/performance/config/tools/handbook_creator/assets/css/bootstrap-theme.css +397 -0
- data/test/performance/config/tools/handbook_creator/assets/css/bootstrap-theme.min.css +7 -0
- data/test/performance/config/tools/handbook_creator/assets/css/bootstrap.css +7118 -0
- data/test/performance/config/tools/handbook_creator/assets/css/bootstrap.min.css +7 -0
- data/test/performance/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/test/performance/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.svg +229 -0
- data/test/performance/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/test/performance/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/test/performance/config/tools/handbook_creator/assets/img/ball_logo.bmp +0 -0
- data/test/performance/config/tools/handbook_creator/assets/img/ball_logo.gif +0 -0
- data/test/performance/config/tools/handbook_creator/assets/img/ball_logo.jpg +0 -0
- data/test/performance/config/tools/handbook_creator/assets/js/bootstrap.js +2006 -0
- data/test/performance/config/tools/handbook_creator/assets/js/bootstrap.min.js +7 -0
- data/test/performance/config/tools/handbook_creator/assets/js/html5shiv.js +8 -0
- data/test/performance/config/tools/handbook_creator/assets/js/jquery-1.10.2.min.js +6 -0
- data/test/performance/config/tools/handbook_creator/assets/js/respond.min.js +6 -0
- data/test/performance/config/tools/handbook_creator/default_toc.xsl +59 -0
- data/test/performance/config/tools/handbook_creator/handbook_creator.txt +66 -0
- data/test/performance/config/tools/handbook_creator/templates/command_packets.html.erb +86 -0
- data/test/performance/config/tools/handbook_creator/templates/command_toc.html.erb +38 -0
- data/test/performance/config/tools/handbook_creator/templates/footer.html.erb +9 -0
- data/test/performance/config/tools/handbook_creator/templates/header.html.erb +25 -0
- data/test/performance/config/tools/handbook_creator/templates/limits_groups.html.erb +13 -0
- data/test/performance/config/tools/handbook_creator/templates/nav.html.erb +27 -0
- data/test/performance/config/tools/handbook_creator/templates/overview.html.erb +1 -0
- data/test/performance/config/tools/handbook_creator/templates/pdf_cover.html.erb +23 -0
- data/test/performance/config/tools/handbook_creator/templates/pdf_footer.html.erb +33 -0
- data/test/performance/config/tools/handbook_creator/templates/pdf_header.html.erb +41 -0
- data/test/performance/config/tools/handbook_creator/templates/telemetry_packets.html.erb +80 -0
- data/test/performance/config/tools/handbook_creator/templates/telemetry_toc.html.erb +38 -0
- data/test/performance/config/tools/handbook_creator/templates/title.html.erb +1 -0
- data/test/performance/config/tools/launcher/launcher_packets.txt +34 -0
- data/test/performance/config/tools/launcher/launcher_threads.txt +83 -0
- data/test/performance/config/tools/limits_monitor/README.txt +1 -0
- data/test/performance/config/tools/opengl_builder/README.txt +1 -0
- data/test/performance/config/tools/script_runner/script_runner.txt +3 -0
- data/test/performance/config/tools/table_manager/ConfigTables_def.txt +8 -0
- data/test/performance/config/tools/table_manager/ExampleTableDefinition.txt +24 -0
- data/test/performance/config/tools/table_manager/MCConfigurationTable_fsw1_def.txt +25 -0
- data/test/performance/config/tools/table_manager/MCConfigurationTable_fsw2_def.txt +25 -0
- data/test/performance/config/tools/table_manager/PPSSelectionTable_def.txt +8 -0
- data/test/performance/config/tools/table_manager/TLMMonitoringTable_def.txt +248 -0
- data/test/performance/config/tools/test_runner/test_runner.txt +17 -0
- data/test/performance/config/tools/tlm_extractor/tlm_extractor.txt +13 -0
- data/test/performance/config/tools/tlm_extractor/tlm_extractor2.txt +2 -0
- data/test/performance/config/tools/tlm_extractor/tlm_extractor3.txt +2 -0
- data/test/performance/config/tools/tlm_extractor/tlm_extractor4.txt +2 -0
- data/test/performance/config/tools/tlm_grapher/README.txt +1 -0
- data/test/performance/config/tools/tlm_grapher/tlm_grapher.txt +204 -0
- data/test/performance/config/tools/tlm_viewer/tlm_viewer.txt +13 -0
- data/test/performance/lib/packet_target.rb +126 -0
- data/test/performance/lib/thread_target.rb +120 -0
- data/test/performance/lib/user_version.rb +3 -0
- data/test/performance/outputs/handbooks/README.txt +1 -0
- data/test/performance/outputs/logs/README.txt +1 -0
- data/test/performance/outputs/saved_config/README.txt +1 -0
- data/test/performance/outputs/tables/README.txt +1 -0
- data/test/performance/outputs/tmp/README.txt +1 -0
- data/test/performance/procedures/checks.rb +11 -0
- data/test/performance/procedures/clear_util.rb +7 -0
- data/test/performance/procedures/collect.rb +18 -0
- data/test/performance/procedures/collect_util.rb +14 -0
- data/test/performance/procedures/cosmos_api_test.rb +293 -0
- data/test/performance/procedures/disconnect.rb +29 -0
- data/test/performance/procedures/example_test.rb +182 -0
- data/test/performance/procedures/plot_test.rb +8 -0
- data/test/performance/procedures/procedure.rb +3 -0
- data/test/performance/procedures/run_example_test.rb +3 -0
- data/test/performance/procedures/test.rb +51 -0
- data/test/performance/tools/CmdExtractor +14 -0
- data/test/performance/tools/CmdExtractor.bat +59 -0
- data/test/performance/tools/CmdSender +14 -0
- data/test/performance/tools/CmdSender.bat +59 -0
- data/test/performance/tools/CmdTlmServer +16 -0
- data/test/performance/tools/CmdTlmServer.bat +59 -0
- data/test/performance/tools/CmdTlmServerMemProf +20 -0
- data/test/performance/tools/CmdTlmServerMemProf.bat +59 -0
- data/test/performance/tools/DataViewer +14 -0
- data/test/performance/tools/DataViewer.bat +59 -0
- data/test/performance/tools/HandbookCreator +14 -0
- data/test/performance/tools/HandbookCreator.bat +61 -0
- data/test/performance/tools/Launcher +14 -0
- data/test/performance/tools/Launcher.bat +59 -0
- data/test/performance/tools/LimitsMonitor +14 -0
- data/test/performance/tools/LimitsMonitor.bat +59 -0
- data/test/performance/tools/OpenGLBuilder +14 -0
- data/test/performance/tools/OpenGLBuilder.bat +59 -0
- data/test/performance/tools/PacketTarget +14 -0
- data/test/performance/tools/PacketTarget.bat +59 -0
- data/test/performance/tools/PacketViewer +14 -0
- data/test/performance/tools/PacketViewer.bat +59 -0
- data/test/performance/tools/Replay +14 -0
- data/test/performance/tools/Replay.bat +59 -0
- data/test/performance/tools/ScpiTarget +14 -0
- data/test/performance/tools/ScpiTarget.bat +59 -0
- data/test/performance/tools/ScriptRunner +14 -0
- data/test/performance/tools/ScriptRunner.bat +59 -0
- data/test/performance/tools/TableManager +14 -0
- data/test/performance/tools/TableManager.bat +59 -0
- data/test/performance/tools/TestRunner +14 -0
- data/test/performance/tools/TestRunner.bat +59 -0
- data/test/performance/tools/ThreadTarget +14 -0
- data/test/performance/tools/ThreadTarget.bat +59 -0
- data/test/performance/tools/TlmExtractor +14 -0
- data/test/performance/tools/TlmExtractor.bat +59 -0
- data/test/performance/tools/TlmGrapher +14 -0
- data/test/performance/tools/TlmGrapher.bat +59 -0
- data/test/performance/tools/TlmGrapherMemProf +19 -0
- data/test/performance/tools/TlmGrapherMemProf.bat +59 -0
- data/test/performance/tools/TlmViewer +14 -0
- data/test/performance/tools/TlmViewer.bat +59 -0
- data/test/performance/tools/TlmViewerMemProf +19 -0
- data/test/performance/tools/TlmViewerMemProf.bat +59 -0
- data/test/performance/tools/identify_performance.rb +82 -0
- data/test/performance/tools/mac/CmdExtractor.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/CmdExtractor.app/Contents/MacOS/CmdExtractor.rb +15 -0
- data/test/performance/tools/mac/CmdExtractor.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/CmdExtractor.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/CmdSender.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/CmdSender.app/Contents/MacOS/CmdSender.rb +15 -0
- data/test/performance/tools/mac/CmdSender.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/CmdSender.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/CmdTlmServer.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/CmdTlmServer.app/Contents/MacOS/CmdTlmServer.rb +15 -0
- data/test/performance/tools/mac/CmdTlmServer.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/CmdTlmServer.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/DataViewer.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/DataViewer.app/Contents/MacOS/DataViewer.rb +15 -0
- data/test/performance/tools/mac/DataViewer.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/DataViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/HandbookCreator.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/HandbookCreator.app/Contents/MacOS/HandbookCreator.rb +15 -0
- data/test/performance/tools/mac/HandbookCreator.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/HandbookCreator.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/Launcher.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/Launcher.app/Contents/MacOS/Launcher.rb +15 -0
- data/test/performance/tools/mac/Launcher.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/Launcher.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/LimitsMonitor.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/LimitsMonitor.app/Contents/MacOS/LimitsMonitor.rb +15 -0
- data/test/performance/tools/mac/LimitsMonitor.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/LimitsMonitor.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/OpenGLBuilder.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/OpenGLBuilder.app/Contents/MacOS/OpenGLBuilder.rb +15 -0
- data/test/performance/tools/mac/OpenGLBuilder.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/OpenGLBuilder.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/PacketViewer.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/PacketViewer.app/Contents/MacOS/PacketViewer.rb +15 -0
- data/test/performance/tools/mac/PacketViewer.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/PacketViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/Replay.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/Replay.app/Contents/MacOS/Replay.rb +15 -0
- data/test/performance/tools/mac/Replay.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/Replay.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/ScriptRunner.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/ScriptRunner.app/Contents/MacOS/ScriptRunner.rb +15 -0
- data/test/performance/tools/mac/ScriptRunner.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/ScriptRunner.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/TableManager.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/TableManager.app/Contents/MacOS/TableManager.rb +15 -0
- data/test/performance/tools/mac/TableManager.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/TableManager.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/TestRunner.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/TestRunner.app/Contents/MacOS/TestRunner.rb +15 -0
- data/test/performance/tools/mac/TestRunner.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/TestRunner.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/TlmExtractor.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/TlmExtractor.app/Contents/MacOS/TlmExtractor.rb +15 -0
- data/test/performance/tools/mac/TlmExtractor.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/TlmExtractor.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/TlmGrapher.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/TlmGrapher.app/Contents/MacOS/TlmGrapher.rb +15 -0
- data/test/performance/tools/mac/TlmGrapher.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/TlmGrapher.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/TlmViewer.app/Contents/Info.plist +38 -0
- data/test/performance/tools/mac/TlmViewer.app/Contents/MacOS/TlmViewer.rb +15 -0
- data/test/performance/tools/mac/TlmViewer.app/Contents/MacOS/main.sh +6 -0
- data/test/performance/tools/mac/TlmViewer.app/Contents/Resources/appIcon.icns +0 -0
- metadata +2286 -0
@@ -0,0 +1,1502 @@
|
|
1
|
+
---
|
2
|
+
VERTICAL:
|
3
|
+
summary: Places the widgets it encapsulates vertically on
|
4
|
+
the screen. The screen defaults to a vertical layout, so if no layout widgets
|
5
|
+
are specified, all widgets will be automatically placed within a VERTICAL
|
6
|
+
layout widget. The VERTICAL widget sizes itself to fit its contents.
|
7
|
+
parameters:
|
8
|
+
- name: Vertical Spacing
|
9
|
+
required: false
|
10
|
+
description: Vertical spacing between widgets in pixels (default = 1)
|
11
|
+
values: .*
|
12
|
+
- name: Vertical Packing
|
13
|
+
required: false
|
14
|
+
description: Pack all widgets vertically (default = true)
|
15
|
+
values: .*
|
16
|
+
VERTICALBOX:
|
17
|
+
summary: Places the widgets it encapsulates vertically
|
18
|
+
on the screen inside of a thin border. The VERTICALBOX widget sizes itself
|
19
|
+
to fit its contents vertically and to fit the screen horizontally.
|
20
|
+
parameters:
|
21
|
+
- name: Title
|
22
|
+
required: false
|
23
|
+
description: Text to place within the border to label the box
|
24
|
+
values: .*
|
25
|
+
- name: Vertical spacing
|
26
|
+
required: false
|
27
|
+
description: Vertical spacing between widgets in pixels (default = 1)
|
28
|
+
values: .*
|
29
|
+
- name: Vertical packing
|
30
|
+
required: false
|
31
|
+
description: Pack all widgets vertically (default = true)
|
32
|
+
values: .*
|
33
|
+
HORIZONTAL:
|
34
|
+
summary: Places the widgets it encapsulates horizontally
|
35
|
+
on the screen. The HORIZONTAL widget sizes itself to fit its contents.
|
36
|
+
parameters:
|
37
|
+
- name: Horizontal spacing
|
38
|
+
required: false
|
39
|
+
description: Horizontal spacing between widgets in pixels (default = 1)
|
40
|
+
values: .*
|
41
|
+
HORIZONTALBOX:
|
42
|
+
summary: Places the widgets it encapsulates horizontally
|
43
|
+
on the screen inside of a thin border. The HORIZONTALBOX widget sizes itself
|
44
|
+
to fit its contents.
|
45
|
+
parameters:
|
46
|
+
- name: Title
|
47
|
+
required: false
|
48
|
+
description: Text to place within the border to label the box
|
49
|
+
values: .*
|
50
|
+
- name: Horizontal spacing
|
51
|
+
required: false
|
52
|
+
description: Horizontal spacing between widgets in pixels (default = 1)
|
53
|
+
values: .*
|
54
|
+
MATRIXBYCOLUMNS:
|
55
|
+
summary: Places the widgets into a table-like matrix.
|
56
|
+
The MATRIXBYCOLUMNS widget sizes itself to fit its contents.
|
57
|
+
parameters:
|
58
|
+
- name: Columns
|
59
|
+
required: true
|
60
|
+
description: The number of columns to create
|
61
|
+
values: .*
|
62
|
+
- name: Horizontal spacing
|
63
|
+
required: false
|
64
|
+
description: Horizontal spacing between matix items in pixels (default = 0)
|
65
|
+
values: .*
|
66
|
+
- name: Vertical spacing
|
67
|
+
required: false
|
68
|
+
description: Vertical spacing between matrix items in pixels (default = 0)
|
69
|
+
values: .*
|
70
|
+
SCROLLWINDOW:
|
71
|
+
summary: Places the widgets inside of it into a scrollable
|
72
|
+
area. The SCROLLWINDOW widget sizes itself to fit the screen in which it is contained.
|
73
|
+
TABBOOK:
|
74
|
+
summary: Creates a tabbed area in which to place TABITEM widgets
|
75
|
+
to form a tabbed layout.
|
76
|
+
TABITEM:
|
77
|
+
summary: Creates a tab into which to place widgets. The tab
|
78
|
+
automatically acts like a VERTICAL widget.
|
79
|
+
parameters:
|
80
|
+
- name: Tab text
|
81
|
+
required: true
|
82
|
+
description: Text to diplay in the tab
|
83
|
+
values: .*
|
84
|
+
LABEL:
|
85
|
+
summary: Displays text on the screen. Generally, label widgets
|
86
|
+
contain a telemetry mnemonic and are placed next to the telemetry VALUE widget.
|
87
|
+
parameters:
|
88
|
+
- name: Text
|
89
|
+
required: true
|
90
|
+
description: Text to display on the label
|
91
|
+
values: .*
|
92
|
+
HORIZONTALLINE:
|
93
|
+
summary: Displays a horizontal line on the screen that can be used as a separator
|
94
|
+
SECTIONHEADER:
|
95
|
+
summary: Displays a label that is underlined with a
|
96
|
+
horizontal line. Generally, SECTIONHEADER widgets are the first widget placed
|
97
|
+
inside of a VERTICALBOX widget.
|
98
|
+
parameters:
|
99
|
+
- name: Text
|
100
|
+
required: true
|
101
|
+
description: Text to display above the horizontal line
|
102
|
+
values: .*
|
103
|
+
TITLE:
|
104
|
+
summary: Displays a large centered title on the screen.
|
105
|
+
parameters:
|
106
|
+
- name: Text
|
107
|
+
required: true
|
108
|
+
description: Text to display above the horizontal line
|
109
|
+
values: .*
|
110
|
+
SPACER:
|
111
|
+
summary: Inserts a spacer into a layout. This can be used to
|
112
|
+
separate or align other widgets.
|
113
|
+
parameters:
|
114
|
+
- name: Width
|
115
|
+
required: true
|
116
|
+
description: The width of the spacer in pixels.
|
117
|
+
values: .*
|
118
|
+
- name: Height
|
119
|
+
required: true
|
120
|
+
description: The height of the spacer in pixels.
|
121
|
+
values: .*
|
122
|
+
- name: Horizontal Policy
|
123
|
+
required: false
|
124
|
+
description: The horizontal size policy of the spacer. Default is MINIMUM.
|
125
|
+
values: <%= %w(FIXED MINIMUM MAXIMUM PREFERRED EXPANDING MINIMUMEXPANDING IGNORED) %>
|
126
|
+
- name: Vertical Policy
|
127
|
+
required: false
|
128
|
+
description: The vertical size policy of the spacer. Default is MINIMUM.
|
129
|
+
values: <%= %w(FIXED MINIMUM MAXIMUM PREFERRED EXPANDING MINIMUMEXPANDING IGNORED) %>
|
130
|
+
ARRAY:
|
131
|
+
summary: Displays data from an array telemetry item.
|
132
|
+
Data is organized into rows and by default space separated.
|
133
|
+
parameters:
|
134
|
+
- name: Target name
|
135
|
+
required: true
|
136
|
+
description: The target name
|
137
|
+
values: <%= System.targets.keys %>
|
138
|
+
- name: Packet name
|
139
|
+
required: true
|
140
|
+
description: The packet name
|
141
|
+
values: .+
|
142
|
+
- name: Item name
|
143
|
+
required: true
|
144
|
+
description: The item name
|
145
|
+
values: .+
|
146
|
+
- name: Width
|
147
|
+
required: false
|
148
|
+
description: Width of the widget (default = 200)
|
149
|
+
values: .*
|
150
|
+
- name: Height
|
151
|
+
required: false
|
152
|
+
description: Height of the widget (default = 100)
|
153
|
+
values: .*
|
154
|
+
- name: Format string
|
155
|
+
required: false
|
156
|
+
description: Format string applied to each array item (default = nil)
|
157
|
+
values: .*
|
158
|
+
- name: Items per row
|
159
|
+
required: false
|
160
|
+
description: Number of array items per row (default = 4)
|
161
|
+
values: .*
|
162
|
+
- name: Value type
|
163
|
+
required: false
|
164
|
+
description: The type of the value to display. Default is CONVERTED.
|
165
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
166
|
+
BLOCK:
|
167
|
+
summary: Displays data from a block telemetry item.
|
168
|
+
Data is organized into rows and space separated.
|
169
|
+
parameters:
|
170
|
+
- name: Target name
|
171
|
+
required: true
|
172
|
+
description: The target name
|
173
|
+
values: <%= System.targets.keys %>
|
174
|
+
- name: Packet name
|
175
|
+
required: true
|
176
|
+
description: The packet name
|
177
|
+
values: .+
|
178
|
+
- name: Item name
|
179
|
+
required: true
|
180
|
+
description: The item name
|
181
|
+
values: .+
|
182
|
+
- name: Width
|
183
|
+
required: false
|
184
|
+
description: Width of the widget (default = 200)
|
185
|
+
values: .*
|
186
|
+
- name: Height
|
187
|
+
required: false
|
188
|
+
description: Height of the widget (default = 100)
|
189
|
+
values: .*
|
190
|
+
- name: Format string
|
191
|
+
required: false
|
192
|
+
description: Format string applied to each array item (default = nil)
|
193
|
+
values: .*
|
194
|
+
- name: Bytes per word
|
195
|
+
required: false
|
196
|
+
description: Number of bytes per word (default = 4)
|
197
|
+
values: .*
|
198
|
+
- name: Words per row
|
199
|
+
required: false
|
200
|
+
description: Number of words per row (default = 4
|
201
|
+
values: .*
|
202
|
+
- name: Address format
|
203
|
+
required: false
|
204
|
+
description: Format for the address printed at the beginning of each line
|
205
|
+
(default = nil which means do not print an address)
|
206
|
+
values: .*
|
207
|
+
- name: Value type
|
208
|
+
required: false
|
209
|
+
description: The type of the value to display. Default is CONVERTED.
|
210
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
211
|
+
FORMATFONTVALUE:
|
212
|
+
summary: Displays a box with a value printed inside
|
213
|
+
that is formatted by the specified string rather than by a format string given
|
214
|
+
in the telemetry definition files. Additionally, this widget can use a specified
|
215
|
+
font. The white portion of the box darkens to gray while the value remains
|
216
|
+
stagnant, then brightens to white each time the value changes. Additionally
|
217
|
+
the value is colored based on the items limits state (Red for example if it is out of limits).
|
218
|
+
parameters:
|
219
|
+
- name: Target name
|
220
|
+
required: true
|
221
|
+
description: The target name
|
222
|
+
values: <%= System.targets.keys %>
|
223
|
+
- name: Packet name
|
224
|
+
required: true
|
225
|
+
description: The packet name
|
226
|
+
values: .+
|
227
|
+
- name: Item name
|
228
|
+
required: true
|
229
|
+
description: The item name
|
230
|
+
values: .+
|
231
|
+
- name: Format string
|
232
|
+
required: false
|
233
|
+
description: Printf style format string to apply to the telemetry item
|
234
|
+
values: .*
|
235
|
+
- name: Value type
|
236
|
+
required: false
|
237
|
+
description: The type of the value to display. Default is CONVERTED.
|
238
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
239
|
+
- name: Number of characters
|
240
|
+
required: false
|
241
|
+
description: The number of characters wide to make the value box (default = 12)
|
242
|
+
values: .*
|
243
|
+
- name: Font name
|
244
|
+
required: false
|
245
|
+
description: The font to use. (default = arial)
|
246
|
+
values: .*
|
247
|
+
- name: Font size
|
248
|
+
required: false
|
249
|
+
description: The font size. (default = 100)
|
250
|
+
values: .*
|
251
|
+
FORMATVALUE:
|
252
|
+
summary: Displays a box with a value printed inside that
|
253
|
+
is formatted by the specified string rather than by a format string given in
|
254
|
+
the telemetry definition files. The white portion of the box darkens to gray
|
255
|
+
while the value remains stagnant, then brightens to white each time the value
|
256
|
+
changes. Additionally the value is colored based on the items limits state
|
257
|
+
(Red for example if it is out of limits).
|
258
|
+
parameters:
|
259
|
+
- name: Target name
|
260
|
+
required: true
|
261
|
+
description: The target name
|
262
|
+
values: <%= System.targets.keys %>
|
263
|
+
- name: Packet name
|
264
|
+
required: true
|
265
|
+
description: The packet name
|
266
|
+
values: .+
|
267
|
+
- name: Item name
|
268
|
+
required: true
|
269
|
+
description: The item name
|
270
|
+
values: .+
|
271
|
+
- name: Format string
|
272
|
+
required: false
|
273
|
+
description: Printf style format string to apply to the telemetry item
|
274
|
+
values: .*
|
275
|
+
- name: Value type
|
276
|
+
required: false
|
277
|
+
description: The type of the value to display. Default is CONVERTED.
|
278
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
279
|
+
- name: Number of characters
|
280
|
+
required: false
|
281
|
+
description: The number of characters wide to make the value box (default = 12)
|
282
|
+
values: .*
|
283
|
+
LABELLED:
|
284
|
+
summary: Displays a Label widget followed by a LED which changes color based on telemetry values.
|
285
|
+
See the LED widget documentation for more information.
|
286
|
+
parameters:
|
287
|
+
- name: Target name
|
288
|
+
required: true
|
289
|
+
description: The target name
|
290
|
+
values: <%= System.targets.keys %>
|
291
|
+
- name: Packet name
|
292
|
+
required: true
|
293
|
+
description: The packet name
|
294
|
+
values: .+
|
295
|
+
- name: Item name
|
296
|
+
required: true
|
297
|
+
description: The item name
|
298
|
+
values: .+
|
299
|
+
- name: Value type
|
300
|
+
required: false
|
301
|
+
description: The type of the value to display. Default is CONVERTED.
|
302
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
303
|
+
- name: Width
|
304
|
+
required: false
|
305
|
+
description: Width of the LED circle (default = 15)
|
306
|
+
values: .*
|
307
|
+
- name: Height
|
308
|
+
required: false
|
309
|
+
description: Height of the LED circle (default = 15)
|
310
|
+
values: .*
|
311
|
+
- name: Justification
|
312
|
+
required: false
|
313
|
+
description: How to justify the label and LED together. The default of
|
314
|
+
'SPLIT' aligns the label to the left and the LED to the right with any
|
315
|
+
additional space going between them. 'CENTER' pushes the label and LED
|
316
|
+
together with any additional space to the left and right. 'LEFT' or 'RIGHT'
|
317
|
+
pushes them to the respective side with the space going on the opposite.
|
318
|
+
values: ['SPLIT','CENTER','LEFT','RIGHT']
|
319
|
+
LABELPROGRESSBAR:
|
320
|
+
summary: Displays a LABEL widget showing the items
|
321
|
+
name followed by a PROGRESSBAR widget to show the items value.
|
322
|
+
parameters:
|
323
|
+
- name: Target name
|
324
|
+
required: true
|
325
|
+
description: The target name
|
326
|
+
values: <%= System.targets.keys %>
|
327
|
+
- name: Packet name
|
328
|
+
required: true
|
329
|
+
description: The packet name
|
330
|
+
values: .+
|
331
|
+
- name: Item name
|
332
|
+
required: true
|
333
|
+
description: The item name
|
334
|
+
values: .+
|
335
|
+
- name: Scale factor
|
336
|
+
required: false
|
337
|
+
description: Value to multiple the telemetry item by before displaying the
|
338
|
+
in the progress bar. Final value should be in the range of 0 to 100. Default is 1.0.
|
339
|
+
values: .*
|
340
|
+
- name: Width
|
341
|
+
required: false
|
342
|
+
description: Width of the progress bar (default = 80 pixels
|
343
|
+
values: .*
|
344
|
+
- name: Value type
|
345
|
+
required: false
|
346
|
+
description: The type of the value to display. Default is CONVERTED.
|
347
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
348
|
+
LABELTRENDLIMITSBAR:
|
349
|
+
summary: Displays a LABEL widget to show the
|
350
|
+
item's name, a VALUE widget to show the telemetry items current value,
|
351
|
+
a VALUE widget to display the value of the item X seconds ago, and a TRENDBAR
|
352
|
+
widget to display the items value within its limits ranges and its trend.
|
353
|
+
parameters:
|
354
|
+
- name: Target name
|
355
|
+
required: true
|
356
|
+
description: The target name
|
357
|
+
values: <%= System.targets.keys %>
|
358
|
+
- name: Packet name
|
359
|
+
required: true
|
360
|
+
description: The packet name
|
361
|
+
values: .+
|
362
|
+
- name: Item name
|
363
|
+
required: true
|
364
|
+
description: The item name
|
365
|
+
values: .+
|
366
|
+
- name: Value type
|
367
|
+
required: false
|
368
|
+
description: The type of the value to display. Default is CONVERTED.
|
369
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
370
|
+
- name: Trend seconds
|
371
|
+
required: false
|
372
|
+
description: The number of seconds in the past to display the trend value (default = 60)
|
373
|
+
values: .*
|
374
|
+
- name: Characters
|
375
|
+
required: false
|
376
|
+
description: The number of characters to display the telemetry value (default = 12)
|
377
|
+
values: .*
|
378
|
+
- name: Width
|
379
|
+
required: false
|
380
|
+
description: Width of the limits bar (default = 160)
|
381
|
+
values: .*
|
382
|
+
- name: Height
|
383
|
+
required: false
|
384
|
+
description: Height of the limits bar (default = 25)
|
385
|
+
values: .*
|
386
|
+
LABELVALUE:
|
387
|
+
summary: Displays a LABEL widget to show the telemetry
|
388
|
+
items name followed by a VALUE widget to display the items value.
|
389
|
+
parameters:
|
390
|
+
- name: Target name
|
391
|
+
required: true
|
392
|
+
description: The target name
|
393
|
+
values: <%= System.targets.keys %>
|
394
|
+
- name: Packet name
|
395
|
+
required: true
|
396
|
+
description: The packet name
|
397
|
+
values: .+
|
398
|
+
- name: Item name
|
399
|
+
required: true
|
400
|
+
description: The item name
|
401
|
+
values: .+
|
402
|
+
- name: Value type
|
403
|
+
required: false
|
404
|
+
description: The type of the value to display. Default is CONVERTED.
|
405
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
406
|
+
- name: Number of characters
|
407
|
+
required: false
|
408
|
+
description: The number of characters wide to make the value box (default = 12)
|
409
|
+
values: .*
|
410
|
+
- name: Justification
|
411
|
+
required: false
|
412
|
+
description: How to justify the label and value together. The default of
|
413
|
+
'SPLIT' aligns the label to the left and the value to the right with any
|
414
|
+
additional space going between them. 'CENTER' pushes the label and value
|
415
|
+
together with any additional space to the left and right. 'LEFT' or 'RIGHT'
|
416
|
+
pushes them to the respective side with the space going on the opposite.
|
417
|
+
values: ['SPLIT','CENTER','LEFT','RIGHT']
|
418
|
+
LABELVALUEDESC:
|
419
|
+
summary: Displays a LABEL widget to show the telemetry
|
420
|
+
items description followed by a VALUE widget to display the items value.
|
421
|
+
parameters:
|
422
|
+
- name: Target name
|
423
|
+
required: true
|
424
|
+
description: The target name
|
425
|
+
values: <%= System.targets.keys %>
|
426
|
+
- name: Packet name
|
427
|
+
required: true
|
428
|
+
description: The packet name
|
429
|
+
values: .+
|
430
|
+
- name: Item name
|
431
|
+
required: true
|
432
|
+
description: The item name
|
433
|
+
values: .+
|
434
|
+
- name: Description
|
435
|
+
required: false
|
436
|
+
description: The description to display in the label (default is to display
|
437
|
+
the description text associated with the telemetry item)
|
438
|
+
values: .*
|
439
|
+
- name: Value type
|
440
|
+
required: false
|
441
|
+
description: The type of the value to display. Default is CONVERTED.
|
442
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
443
|
+
- name: Number of characters
|
444
|
+
required: false
|
445
|
+
description: The number of characters wide to make the value box (default = 12)
|
446
|
+
values: .*
|
447
|
+
LABELFORMATVALUE:
|
448
|
+
summary: Displays a LABEL widget to show the telemetry
|
449
|
+
items name followed by a formatted VALUE widget to display the items value.
|
450
|
+
parameters:
|
451
|
+
- name: Target name
|
452
|
+
required: true
|
453
|
+
description: The target name
|
454
|
+
values: <%= System.targets.keys %>
|
455
|
+
- name: Packet name
|
456
|
+
required: true
|
457
|
+
description: The packet name
|
458
|
+
values: .+
|
459
|
+
- name: Item name
|
460
|
+
required: true
|
461
|
+
description: The item name
|
462
|
+
values: .+
|
463
|
+
- name: Format String
|
464
|
+
required: true
|
465
|
+
description: Printf style format string, for example %0.6f
|
466
|
+
values: .*
|
467
|
+
- name: Value type
|
468
|
+
required: false
|
469
|
+
description: The type of the value to display. Default is CONVERTED.
|
470
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
471
|
+
- name: Number of characters
|
472
|
+
required: false
|
473
|
+
description: The number of characters wide to make the value box (default = 12)
|
474
|
+
values: .*
|
475
|
+
LABELVALUELIMITSBAR:
|
476
|
+
summary: Displays a LABEL widget to show the telemetry item's name,
|
477
|
+
followed by a VALUE widget to display the item's value, followed by a LIMITSBAR widget.
|
478
|
+
parameters:
|
479
|
+
- name: Target name
|
480
|
+
required: true
|
481
|
+
description: The target name
|
482
|
+
values: <%= System.targets.keys %>
|
483
|
+
- name: Packet name
|
484
|
+
required: true
|
485
|
+
description: The packet name
|
486
|
+
values: .+
|
487
|
+
- name: Item name
|
488
|
+
required: true
|
489
|
+
description: The item name
|
490
|
+
values: .+
|
491
|
+
- name: Value type
|
492
|
+
required: false
|
493
|
+
description: The type of the value to display. Default is CONVERTED.
|
494
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
495
|
+
- name: Number of characters
|
496
|
+
required: false
|
497
|
+
description: The number of characters wide to make the value box (default = 12)
|
498
|
+
values: .*
|
499
|
+
LABELVALUELIMITSCOLUMN:
|
500
|
+
summary: Displays a LABEL widget to shows
|
501
|
+
the telemetry itemls name, followed by a VALUE widget to display the item's
|
502
|
+
value, followed by a LIMITSCOLUMN widget.
|
503
|
+
parameters:
|
504
|
+
- name: Target name
|
505
|
+
required: true
|
506
|
+
description: The target name
|
507
|
+
values: <%= System.targets.keys %>
|
508
|
+
- name: Packet name
|
509
|
+
required: true
|
510
|
+
description: The packet name
|
511
|
+
values: .+
|
512
|
+
- name: Item name
|
513
|
+
required: true
|
514
|
+
description: The item name
|
515
|
+
values: .+
|
516
|
+
- name: Value type
|
517
|
+
required: false
|
518
|
+
description: The type of the value to display. Default is CONVERTED.
|
519
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
520
|
+
- name: Number of characters
|
521
|
+
required: false
|
522
|
+
description: The number of characters wide to make the value box (default = 12)
|
523
|
+
values: .*
|
524
|
+
LABELVALUERANGEBAR:
|
525
|
+
summary: Displays a LABEL widget to show the telemetry item's name,
|
526
|
+
followed by a VALUE widget to display the item's value, followed by a RANGEBAR widget.
|
527
|
+
parameters:
|
528
|
+
- name: Target name
|
529
|
+
required: true
|
530
|
+
description: The target name
|
531
|
+
values: <%= System.targets.keys %>
|
532
|
+
- name: Packet name
|
533
|
+
required: true
|
534
|
+
description: The packet name
|
535
|
+
values: .+
|
536
|
+
- name: Item name
|
537
|
+
required: true
|
538
|
+
description: The item name
|
539
|
+
values: .+
|
540
|
+
- name: Low Value
|
541
|
+
required: true
|
542
|
+
description: Minimum value to display on the range bar. If the telemetry
|
543
|
+
item goes below this value the bar is “pegged” on the low end.
|
544
|
+
values: .+
|
545
|
+
- name: High Value
|
546
|
+
required: true
|
547
|
+
description: Maximum value to display on the range bar. If the telemetry
|
548
|
+
item goes above this value the bar is “pegged” on the high end.
|
549
|
+
values: .+
|
550
|
+
- name: Value type
|
551
|
+
required: false
|
552
|
+
description: The type of the value to display. Default is CONVERTED.
|
553
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
554
|
+
- name: Number of characters
|
555
|
+
required: false
|
556
|
+
description: The number of characters wide to make the value box (default = 12)
|
557
|
+
values: .*
|
558
|
+
- name: Width
|
559
|
+
required: false
|
560
|
+
description: Width of the range bar (default = 160)
|
561
|
+
values: .*
|
562
|
+
- name: Height
|
563
|
+
required: false
|
564
|
+
description: Height of the range bar (default = 25)
|
565
|
+
values: .*
|
566
|
+
LABELVALUERANGECOLUMN:
|
567
|
+
summary: Displays a LABEL widget to show the telemetry item's name,
|
568
|
+
followed by a VALUE widget to display the item's value, followed by a RANGECOLUMN widget.
|
569
|
+
parameters:
|
570
|
+
- name: Target name
|
571
|
+
required: true
|
572
|
+
description: The target name
|
573
|
+
values: <%= System.targets.keys %>
|
574
|
+
- name: Packet name
|
575
|
+
required: true
|
576
|
+
description: The packet name
|
577
|
+
values: .+
|
578
|
+
- name: Item name
|
579
|
+
required: true
|
580
|
+
description: The item name
|
581
|
+
values: .+
|
582
|
+
- name: Low Value
|
583
|
+
required: true
|
584
|
+
description: Minimum value to display on the range bar. If the telemetry
|
585
|
+
item goes below this value the bar is “pegged” on the low end.
|
586
|
+
values: .+
|
587
|
+
- name: High Value
|
588
|
+
required: true
|
589
|
+
description: Maximum value to display on the range bar. If the telemetry
|
590
|
+
item goes above this value the bar is “pegged” on the high end.
|
591
|
+
values: .+
|
592
|
+
- name: Value type
|
593
|
+
required: false
|
594
|
+
description: The type of the value to display. Default is CONVERTED.
|
595
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
596
|
+
- name: Number of characters
|
597
|
+
required: false
|
598
|
+
description: The number of characters wide to make the value box (default = 12)
|
599
|
+
values: .*
|
600
|
+
- name: Width
|
601
|
+
required: false
|
602
|
+
description: Width of the range bar (default = 160)
|
603
|
+
values: .*
|
604
|
+
- name: Height
|
605
|
+
required: false
|
606
|
+
description: Height of the range bar (default = 25)
|
607
|
+
values: .*
|
608
|
+
LED:
|
609
|
+
summary: Displays a LED which changes color based on telemetry values.
|
610
|
+
By default TRUE is green and FALSE is red and all other values are black.
|
611
|
+
Additional values can be added by using the LED_COLOR setting. For example
|
612
|
+
LED INST PARAMS VALUE3 RAW can be followed by SETTING LED_COLOR 0 GREEN,
|
613
|
+
SETTING LED_COLOR 1 RED, and SETTING LED_COLOR ANY ORANGE.
|
614
|
+
parameters:
|
615
|
+
- name: Target name
|
616
|
+
required: true
|
617
|
+
description: The target name
|
618
|
+
values: <%= System.targets.keys %>
|
619
|
+
- name: Packet name
|
620
|
+
required: true
|
621
|
+
description: The packet name
|
622
|
+
values: .+
|
623
|
+
- name: Item name
|
624
|
+
required: true
|
625
|
+
description: The item name
|
626
|
+
values: .+
|
627
|
+
- name: Value type
|
628
|
+
required: false
|
629
|
+
description: The type of the value to display. Default is CONVERTED.
|
630
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
631
|
+
- name: Width
|
632
|
+
required: false
|
633
|
+
description: Width of the LED circle (default = 15)
|
634
|
+
values: .*
|
635
|
+
- name: Height
|
636
|
+
required: false
|
637
|
+
description: Height of the LED circle (default = 15)
|
638
|
+
values: .*
|
639
|
+
LIMITSBAR:
|
640
|
+
summary: Displays a graphical representation of where an
|
641
|
+
item's value falls withing its limits ranges horizontally.
|
642
|
+
parameters:
|
643
|
+
- name: Target name
|
644
|
+
required: true
|
645
|
+
description: The target name
|
646
|
+
values: <%= System.targets.keys %>
|
647
|
+
- name: Packet name
|
648
|
+
required: true
|
649
|
+
description: The packet name
|
650
|
+
values: .+
|
651
|
+
- name: Item name
|
652
|
+
required: true
|
653
|
+
description: The item name
|
654
|
+
values: .+
|
655
|
+
- name: Value type
|
656
|
+
required: false
|
657
|
+
description: The type of the value to display. Default is CONVERTED.
|
658
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
659
|
+
- name: Width
|
660
|
+
required: false
|
661
|
+
description: Width of the range bar (default = 160)
|
662
|
+
values: .*
|
663
|
+
- name: Height
|
664
|
+
required: false
|
665
|
+
description: Height of the range bar (default = 25)
|
666
|
+
values: .*
|
667
|
+
LIMITSCOLUMN:
|
668
|
+
summary: Displays a graphical representation of where an
|
669
|
+
item's value falls withing its limits ranges vertically.
|
670
|
+
parameters:
|
671
|
+
- name: Target name
|
672
|
+
required: true
|
673
|
+
description: The target name
|
674
|
+
values: <%= System.targets.keys %>
|
675
|
+
- name: Packet name
|
676
|
+
required: true
|
677
|
+
description: The packet name
|
678
|
+
values: .+
|
679
|
+
- name: Item name
|
680
|
+
required: true
|
681
|
+
description: The item name
|
682
|
+
values: .+
|
683
|
+
- name: Value type
|
684
|
+
required: false
|
685
|
+
description: The type of the value to display. Default is CONVERTED.
|
686
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
687
|
+
- name: Width
|
688
|
+
required: false
|
689
|
+
description: Width of the range bar (default = 160)
|
690
|
+
values: .*
|
691
|
+
- name: Height
|
692
|
+
required: false
|
693
|
+
description: Height of the range bar (default = 25)
|
694
|
+
values: .*
|
695
|
+
LIMITSCOLOR:
|
696
|
+
summary: Displays a stoplight-like circle depicting the
|
697
|
+
limits color of an item
|
698
|
+
parameters:
|
699
|
+
- name: Target name
|
700
|
+
required: true
|
701
|
+
description: The target name
|
702
|
+
values: <%= System.targets.keys %>
|
703
|
+
- name: Packet name
|
704
|
+
required: true
|
705
|
+
description: The packet name
|
706
|
+
values: .+
|
707
|
+
- name: Item name
|
708
|
+
required: true
|
709
|
+
description: The item name
|
710
|
+
values: .+
|
711
|
+
- name: Value type
|
712
|
+
required: false
|
713
|
+
description: The type of the value to display. Default is CONVERTED.
|
714
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
715
|
+
- name: Radius
|
716
|
+
required: false
|
717
|
+
description: Radius of the circle (default is 10)
|
718
|
+
values: .*
|
719
|
+
- name: Full Item Name
|
720
|
+
required: false
|
721
|
+
description: Show the full item name (default is false)
|
722
|
+
values: .*
|
723
|
+
VALUELIMITSBAR:
|
724
|
+
summary: Displays a graphical representation of where
|
725
|
+
an items value falls withing its limits ranges horizontally and its value in
|
726
|
+
a VALUE widget.
|
727
|
+
parameters:
|
728
|
+
- name: Target name
|
729
|
+
required: true
|
730
|
+
description: The target name
|
731
|
+
values: <%= System.targets.keys %>
|
732
|
+
- name: Packet name
|
733
|
+
required: true
|
734
|
+
description: The packet name
|
735
|
+
values: .+
|
736
|
+
- name: Item name
|
737
|
+
required: true
|
738
|
+
description: The item name
|
739
|
+
values: .+
|
740
|
+
- name: Value type
|
741
|
+
required: false
|
742
|
+
description: The type of the value to display. Default is CONVERTED.
|
743
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
744
|
+
- name: Number of characters
|
745
|
+
required: false
|
746
|
+
description: The number of characters wide to make the value box (default = 8)
|
747
|
+
values: .*
|
748
|
+
VALUELIMITSCOLUMN:
|
749
|
+
summary: Displays a graphical representation of where
|
750
|
+
an item's value falls within its limits ranges vertically and its value in a
|
751
|
+
VALUE widget.
|
752
|
+
parameters:
|
753
|
+
- name: Target name
|
754
|
+
required: true
|
755
|
+
description: The target name
|
756
|
+
values: <%= System.targets.keys %>
|
757
|
+
- name: Packet name
|
758
|
+
required: true
|
759
|
+
description: The packet name
|
760
|
+
values: .+
|
761
|
+
- name: Item name
|
762
|
+
required: true
|
763
|
+
description: The item name
|
764
|
+
values: .+
|
765
|
+
- name: Value type
|
766
|
+
required: false
|
767
|
+
description: The type of the value to display. Default is CONVERTED.
|
768
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
769
|
+
- name: Number of characters
|
770
|
+
required: false
|
771
|
+
description: The number of characters wide to make the value box (default = 8)
|
772
|
+
values: .*
|
773
|
+
VALUERANGEBAR:
|
774
|
+
summary: Displays a graphical representation of where an
|
775
|
+
item's value falls within a range horizontally and its value in a VALUE widget.
|
776
|
+
parameters:
|
777
|
+
- name: Target name
|
778
|
+
required: true
|
779
|
+
description: The target name
|
780
|
+
values: <%= System.targets.keys %>
|
781
|
+
- name: Packet name
|
782
|
+
required: true
|
783
|
+
description: The packet name
|
784
|
+
values: .+
|
785
|
+
- name: Item name
|
786
|
+
required: true
|
787
|
+
description: The item name
|
788
|
+
values: .+
|
789
|
+
- name: Low Value
|
790
|
+
required: true
|
791
|
+
description: Minimum value to display on the range bar. If the telemetry
|
792
|
+
item goes below this value the bar is “pegged” on the low end.
|
793
|
+
values: .+
|
794
|
+
- name: High Value
|
795
|
+
required: true
|
796
|
+
description: Maximum value to display on the range bar. If the telemetry
|
797
|
+
item goes above this value the bar is “pegged” on the high end.
|
798
|
+
values: .+
|
799
|
+
- name: Value type
|
800
|
+
required: false
|
801
|
+
description: The type of the value to display. Default is CONVERTED.
|
802
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
803
|
+
- name: Number of characters
|
804
|
+
required: false
|
805
|
+
description: The number of characters wide to make the value box (default = 12)
|
806
|
+
values: .*
|
807
|
+
- name: Width
|
808
|
+
required: false
|
809
|
+
description: Width of the range bar (default = 160)
|
810
|
+
values: .*
|
811
|
+
- name: Height
|
812
|
+
required: false
|
813
|
+
description: Height of the range bar (default = 25)
|
814
|
+
values: .*
|
815
|
+
VALUERANGECOLUMN:
|
816
|
+
summary: Displays a graphical representation of where
|
817
|
+
an item's value falls within a range vertically and its value in a VALUE widget.
|
818
|
+
parameters:
|
819
|
+
- name: Target name
|
820
|
+
required: true
|
821
|
+
description: The target name
|
822
|
+
values: <%= System.targets.keys %>
|
823
|
+
- name: Packet name
|
824
|
+
required: true
|
825
|
+
description: The packet name
|
826
|
+
values: .+
|
827
|
+
- name: Item name
|
828
|
+
required: true
|
829
|
+
description: The item name
|
830
|
+
values: .+
|
831
|
+
- name: Low Value
|
832
|
+
required: true
|
833
|
+
description: Minimum value to display on the range bar. If the telemetry
|
834
|
+
item goes below this value the bar is “pegged” on the low end.
|
835
|
+
values: .+
|
836
|
+
- name: High Value
|
837
|
+
required: true
|
838
|
+
description: Maximum value to display on the range bar. If the telemetry
|
839
|
+
item goes above this value the bar is “pegged” on the high end.
|
840
|
+
values: .+
|
841
|
+
- name: Value type
|
842
|
+
required: false
|
843
|
+
description: The type of the value to display. Default is CONVERTED.
|
844
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
845
|
+
- name: Number of characters
|
846
|
+
required: false
|
847
|
+
description: The number of characters wide to make the value box (default = 12)
|
848
|
+
values: .*
|
849
|
+
- name: Width
|
850
|
+
required: false
|
851
|
+
description: Width of the range bar (default = 160)
|
852
|
+
values: .*
|
853
|
+
- name: Height
|
854
|
+
required: false
|
855
|
+
description: Height of the range bar (default = 25)
|
856
|
+
values: .*
|
857
|
+
LINEGRAPH:
|
858
|
+
summary: Displays a line graph of a telemetry items value
|
859
|
+
verses sample number
|
860
|
+
parameters:
|
861
|
+
- name: Target name
|
862
|
+
required: true
|
863
|
+
description: The target name
|
864
|
+
values: <%= System.targets.keys %>
|
865
|
+
- name: Packet name
|
866
|
+
required: true
|
867
|
+
description: The packet name
|
868
|
+
values: .+
|
869
|
+
- name: Item name
|
870
|
+
required: true
|
871
|
+
description: The item name
|
872
|
+
values: .+
|
873
|
+
- name: Num Samples
|
874
|
+
required: false
|
875
|
+
description: Number of samples to display on the graph (default = 100)
|
876
|
+
values: .*
|
877
|
+
- name: Width
|
878
|
+
required: false
|
879
|
+
description: Width of the graph (default = 300)
|
880
|
+
values: .*
|
881
|
+
- name: Height
|
882
|
+
required: false
|
883
|
+
description: Height of the graph (default = 200)
|
884
|
+
values: .*
|
885
|
+
- name: Value type
|
886
|
+
required: false
|
887
|
+
description: The type of the value to display. Default is CONVERTED.
|
888
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
889
|
+
PROGRESSBAR:
|
890
|
+
summary: Displays a progress bar that is useful for displaying percentages
|
891
|
+
parmeters:
|
892
|
+
- name: Target name
|
893
|
+
required: true
|
894
|
+
description: The target name
|
895
|
+
values: <%= System.targets.keys %>
|
896
|
+
- name: Packet name
|
897
|
+
required: true
|
898
|
+
description: The packet name
|
899
|
+
values: .+
|
900
|
+
- name: Item name
|
901
|
+
required: true
|
902
|
+
description: The item name
|
903
|
+
values: .+
|
904
|
+
- name: Scale factor
|
905
|
+
required: false
|
906
|
+
description: Value to multiple the telemetry item by before displaying the
|
907
|
+
in the progress bar. Final value should be in the range of 0 to 100. Default is 1.0.
|
908
|
+
values: .*
|
909
|
+
- name: Width
|
910
|
+
required: false
|
911
|
+
description: Width of the progress bar (default = 80 pixels
|
912
|
+
values: .*
|
913
|
+
- name: Value type
|
914
|
+
required: false
|
915
|
+
description: The type of the value to display. Default is CONVERTED.
|
916
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
917
|
+
RANGEBAR:
|
918
|
+
summary: Displays a graphical representation of where an
|
919
|
+
item's value falls withing a range horizontally.
|
920
|
+
parameters:
|
921
|
+
- name: Target name
|
922
|
+
required: true
|
923
|
+
description: The target name
|
924
|
+
values: <%= System.targets.keys %>
|
925
|
+
- name: Packet name
|
926
|
+
required: true
|
927
|
+
description: The packet name
|
928
|
+
values: .+
|
929
|
+
- name: Item name
|
930
|
+
required: true
|
931
|
+
description: The item name
|
932
|
+
values: .+
|
933
|
+
- name: Low Value
|
934
|
+
required: true
|
935
|
+
description: Minimum value to display on the range bar. If the telemetry
|
936
|
+
item goes below this value the bar is “pegged” on the low end.
|
937
|
+
values: .+
|
938
|
+
- name: High Value
|
939
|
+
required: true
|
940
|
+
description: Maximum value to display on the range bar. If the telemetry
|
941
|
+
item goes above this value the bar is “pegged” on the high end.
|
942
|
+
values: .+
|
943
|
+
- name: Value type
|
944
|
+
required: false
|
945
|
+
description: The type of the value to display. Default is CONVERTED.
|
946
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
947
|
+
- name: Width
|
948
|
+
required: false
|
949
|
+
description: Width of the range bar (default = 160)
|
950
|
+
values: .*
|
951
|
+
- name: Height
|
952
|
+
required: false
|
953
|
+
description: Height of the range bar (default = 25)
|
954
|
+
values: .*
|
955
|
+
RANGECOLUMN:
|
956
|
+
summary: Displays a graphical representation of where
|
957
|
+
an item's value falls withing a range vertically
|
958
|
+
parameters:
|
959
|
+
- name: Target name
|
960
|
+
required: true
|
961
|
+
description: The target name
|
962
|
+
values: <%= System.targets.keys %>
|
963
|
+
- name: Packet name
|
964
|
+
required: true
|
965
|
+
description: The packet name
|
966
|
+
values: .+
|
967
|
+
- name: Item name
|
968
|
+
required: true
|
969
|
+
description: The item name
|
970
|
+
values: .+
|
971
|
+
- name: Low Value
|
972
|
+
required: true
|
973
|
+
description: Minimum value to display on the range bar. If the telemetry
|
974
|
+
item goes below this value the bar is “pegged” on the low end.
|
975
|
+
values: .+
|
976
|
+
- name: High Value
|
977
|
+
required: true
|
978
|
+
description: Maximum value to display on the range bar. If the telemetry
|
979
|
+
item goes above this value the bar is “pegged” on the high end.
|
980
|
+
values: .+
|
981
|
+
- name: Value type
|
982
|
+
required: false
|
983
|
+
description: The type of the value to display. Default is CONVERTED.
|
984
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
985
|
+
- name: Width
|
986
|
+
required: false
|
987
|
+
description: Width of the range bar (default = 30)
|
988
|
+
values: .*
|
989
|
+
- name: Height
|
990
|
+
required: false
|
991
|
+
description: Height of the range bar (default = 100)
|
992
|
+
values: .*
|
993
|
+
TEXTBOX:
|
994
|
+
summary: Provides a large box for multiline text
|
995
|
+
parameters:
|
996
|
+
- name: Target name
|
997
|
+
required: true
|
998
|
+
description: The target name
|
999
|
+
values: <%= System.targets.keys %>
|
1000
|
+
- name: Packet name
|
1001
|
+
required: true
|
1002
|
+
description: The packet name
|
1003
|
+
values: .+
|
1004
|
+
- name: Item name
|
1005
|
+
required: true
|
1006
|
+
description: The item name
|
1007
|
+
values: .+
|
1008
|
+
- name: Width
|
1009
|
+
required: false
|
1010
|
+
description: Width of the range bar (default = 30)
|
1011
|
+
values: .*
|
1012
|
+
- name: Height
|
1013
|
+
required: false
|
1014
|
+
description: Height of the range bar (default = 100)
|
1015
|
+
values: .*
|
1016
|
+
TIMEGRAPH:
|
1017
|
+
summary: Displays a line graph of a telemetry items value verses time
|
1018
|
+
parameters:
|
1019
|
+
- name: Target name
|
1020
|
+
required: true
|
1021
|
+
description: The target name
|
1022
|
+
values: <%= System.targets.keys %>
|
1023
|
+
- name: Packet name
|
1024
|
+
required: true
|
1025
|
+
description: The packet name
|
1026
|
+
values: .+
|
1027
|
+
- name: Item name
|
1028
|
+
required: true
|
1029
|
+
description: The item name
|
1030
|
+
values: .+
|
1031
|
+
- name: Num Samples
|
1032
|
+
required: false
|
1033
|
+
description: Number of samples to display on graph (default = 100)
|
1034
|
+
values: .*
|
1035
|
+
- name: Width
|
1036
|
+
required: false
|
1037
|
+
description: Width of the graph (default = 300)
|
1038
|
+
values: .*
|
1039
|
+
- name: Height
|
1040
|
+
required: false
|
1041
|
+
description: Height of the graph (default = 200)
|
1042
|
+
values: .*
|
1043
|
+
- name: Show Points
|
1044
|
+
required: false
|
1045
|
+
description: Whether to show points or just draw lines between points (default = true)
|
1046
|
+
values: ['TRUE','FALSE']
|
1047
|
+
- name: Time item name
|
1048
|
+
required: false
|
1049
|
+
description: The telemetry item to use as the time on the X axis (default = TIMESECONDS)
|
1050
|
+
value: .*
|
1051
|
+
- name: Value type
|
1052
|
+
required: false
|
1053
|
+
description: The type of the value to display. Default is CONVERTED.
|
1054
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
1055
|
+
TRENDBAR:
|
1056
|
+
summary: Provides the same functionality as the LIMITSBAR
|
1057
|
+
widget except that it also keeps a history of the telemetry item and
|
1058
|
+
graphically shows where the value was X seconds ago.
|
1059
|
+
parameters:
|
1060
|
+
- name: Target name
|
1061
|
+
required: true
|
1062
|
+
description: The target name
|
1063
|
+
values: <%= System.targets.keys %>
|
1064
|
+
- name: Packet name
|
1065
|
+
required: true
|
1066
|
+
description: The packet name
|
1067
|
+
values: .+
|
1068
|
+
- name: Item name
|
1069
|
+
required: true
|
1070
|
+
description: The item name
|
1071
|
+
values: .+
|
1072
|
+
- name: Value type
|
1073
|
+
required: false
|
1074
|
+
description: The type of the value to display. Default is CONVERTED.
|
1075
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
1076
|
+
- name: Trend Seconds
|
1077
|
+
required: false
|
1078
|
+
description: The number of seconds in the past to display the trend value (default = 60)
|
1079
|
+
values: .*
|
1080
|
+
- name: Width
|
1081
|
+
required: false
|
1082
|
+
description: Width of the limits bar (default = 160)
|
1083
|
+
values: .*
|
1084
|
+
- name: Height
|
1085
|
+
required: false
|
1086
|
+
description: Height of the limits bar (default = 25)
|
1087
|
+
values: .*
|
1088
|
+
TRENDLIMITSBAR:
|
1089
|
+
summary: Displays a VALUE widget to show the telemetry items current value,
|
1090
|
+
a VALUE widget to display the value of the item X seconds ago, and a TRENDBAR
|
1091
|
+
widget to display the items value within its limits ranges and its trend.
|
1092
|
+
parameters:
|
1093
|
+
- name: Target name
|
1094
|
+
required: true
|
1095
|
+
description: The target name
|
1096
|
+
values: <%= System.targets.keys %>
|
1097
|
+
- name: Packet name
|
1098
|
+
required: true
|
1099
|
+
description: The packet name
|
1100
|
+
values: .+
|
1101
|
+
- name: Item name
|
1102
|
+
required: true
|
1103
|
+
description: The item name
|
1104
|
+
values: .+
|
1105
|
+
- name: Value type
|
1106
|
+
required: false
|
1107
|
+
description: The type of the value to display. Default is CONVERTED.
|
1108
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
1109
|
+
- name: Trend Seconds
|
1110
|
+
required: false
|
1111
|
+
description: The number of seconds in the past to display the trend value (default = 60)
|
1112
|
+
values: .*
|
1113
|
+
- name: Characters
|
1114
|
+
required: false
|
1115
|
+
description: The number of characters to display the telemetry value (default = 12)
|
1116
|
+
values: .*
|
1117
|
+
- name: Width
|
1118
|
+
required: false
|
1119
|
+
description: Width of the limits bar (default = 160)
|
1120
|
+
values: .*
|
1121
|
+
- name: Height
|
1122
|
+
required: false
|
1123
|
+
description: Height of the limits bar (default = 25)
|
1124
|
+
values: .*
|
1125
|
+
VALUE:
|
1126
|
+
summary: The VALUE widget displays a box with a value printed inside. The white
|
1127
|
+
portion of the box darkens to gray while the value remains stagnant, then
|
1128
|
+
brightens to white each time the value changes. Additionally the value is
|
1129
|
+
colored based on the items limits state (Red for example if it is out of limits).
|
1130
|
+
parameters:
|
1131
|
+
- name: Target name
|
1132
|
+
required: true
|
1133
|
+
description: The target name
|
1134
|
+
values: <%= System.targets.keys %>
|
1135
|
+
- name: Packet name
|
1136
|
+
required: true
|
1137
|
+
description: The packet name
|
1138
|
+
values: .+
|
1139
|
+
- name: Item name
|
1140
|
+
required: true
|
1141
|
+
description: The item name
|
1142
|
+
values: .+
|
1143
|
+
- name: Value type
|
1144
|
+
required: false
|
1145
|
+
description: The type of the value to display. Default is CONVERTED.
|
1146
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
1147
|
+
- name: Number of characters
|
1148
|
+
required: false
|
1149
|
+
description: The number of characters wide to make the value box (default = 12)
|
1150
|
+
values: .*
|
1151
|
+
BUTTON:
|
1152
|
+
summary: Displays a rectangular clickable button
|
1153
|
+
description: Upon clicking, the button executes the Ruby code assigned. Buttons
|
1154
|
+
can be used to send commands and perform other tasks. If you want your button
|
1155
|
+
to use values from other widgets, define them as named widgets and read their
|
1156
|
+
values using the get_named_widget("WIDGET_NAME").text method.
|
1157
|
+
warning: If your button logic gets complex it's recommended to require a separate
|
1158
|
+
script and pass the screen to the script using self,
|
1159
|
+
e.g. require utility.rb; utility_method(self).
|
1160
|
+
parameters:
|
1161
|
+
- name: Button Text
|
1162
|
+
required: true
|
1163
|
+
description: Text displayed on the button
|
1164
|
+
values: .+
|
1165
|
+
- name: Button Code
|
1166
|
+
required: true
|
1167
|
+
description: Ruby code to execute when the button is pressed
|
1168
|
+
values: .+
|
1169
|
+
BACKGROUNDBUTTON:
|
1170
|
+
summary: Displays a rectangular clickable button
|
1171
|
+
description: Upon clicking, the button executes the Ruby code assigned in a new thread
|
1172
|
+
so the code executes in the background (not in the GUI thread). Buttons
|
1173
|
+
can be used to send commands and perform other tasks. If you want your button
|
1174
|
+
to use values from other widgets, define them as named widgets and read their
|
1175
|
+
values using the get_named_widget("WIDGET_NAME").text method.
|
1176
|
+
warning: If your button logic gets complex it's recommended to require a separate
|
1177
|
+
script and pass the screen to the script using self,
|
1178
|
+
e.g. require utility.rb; utility_method(self).
|
1179
|
+
parameters:
|
1180
|
+
- name: Button Text
|
1181
|
+
required: true
|
1182
|
+
description: Text displayed on the button
|
1183
|
+
values: .+
|
1184
|
+
- name: Button Code
|
1185
|
+
required: true
|
1186
|
+
description: Ruby code to execute when the button is pressed
|
1187
|
+
values: .+
|
1188
|
+
CHECKBUTTON:
|
1189
|
+
summary: Displays a check box
|
1190
|
+
description: Note this is of limited use by itself and is primarily used in
|
1191
|
+
conjunction with NAMED_WIDGET.
|
1192
|
+
parameters:
|
1193
|
+
- name: Checkbox Text
|
1194
|
+
required: true
|
1195
|
+
description: Text displayed next to the checkbox
|
1196
|
+
values: .+
|
1197
|
+
COMBOBOX:
|
1198
|
+
summary: Displays a drop down list of text items
|
1199
|
+
description: Note this is of limited use by itself and is primarily used in
|
1200
|
+
conjunction with NAMED_WIDGET.
|
1201
|
+
parameters:
|
1202
|
+
- name: Option Text
|
1203
|
+
required: true
|
1204
|
+
description: Text to display in the selection drop down
|
1205
|
+
value: .+
|
1206
|
+
RADIOBUTTON:
|
1207
|
+
summary: Displays a radio button and text
|
1208
|
+
description: Note this is of limited use by itself and is primarily used in
|
1209
|
+
conjunction with NAMED_WIDGET.
|
1210
|
+
parameters:
|
1211
|
+
- name: Text
|
1212
|
+
required: true
|
1213
|
+
description: Text to display next to the radio button
|
1214
|
+
values: .+
|
1215
|
+
TEXTFIELD:
|
1216
|
+
summary: Displays a rectangular box where the user can enter text
|
1217
|
+
parameters:
|
1218
|
+
- name: Characters
|
1219
|
+
required: false
|
1220
|
+
description: Width of the text field in characters (default = 12)
|
1221
|
+
values: .*
|
1222
|
+
- name: Text
|
1223
|
+
required: false
|
1224
|
+
description: Default text to put in the text field (default is blank)
|
1225
|
+
values: .*
|
1226
|
+
SCREENSHOTBUTTON:
|
1227
|
+
summary: Creates a button which takes a screenshot of the screen it is on
|
1228
|
+
description: The screenshot automatically gets placed in the outputs/logs directory
|
1229
|
+
with the current date / time and the name of the window.
|
1230
|
+
parameters:
|
1231
|
+
- name: Button Text
|
1232
|
+
required: false
|
1233
|
+
description: The text on the button, default is 'Screenshot'.
|
1234
|
+
values: .*
|
1235
|
+
- name: Screenshot Directory
|
1236
|
+
required: false
|
1237
|
+
description: The directory to put the screenshot. Default is output/logs.
|
1238
|
+
values: .*
|
1239
|
+
CANVAS:
|
1240
|
+
summary: Layout widget for the other canvas widgets
|
1241
|
+
description: All canvas widgets must be enclosed within a CANVAS widget.
|
1242
|
+
warning: The canvas coordinate frame places (0,0) in the upper-left corner of the canvas.
|
1243
|
+
parameters:
|
1244
|
+
- name: Width
|
1245
|
+
required: true
|
1246
|
+
description: Width of the canvas
|
1247
|
+
values: .+
|
1248
|
+
- name: Height
|
1249
|
+
required: true
|
1250
|
+
description: Height of the canvas
|
1251
|
+
values: .+
|
1252
|
+
CANVASLABEL:
|
1253
|
+
summary: Draws text onto the canvas
|
1254
|
+
parameters:
|
1255
|
+
- name: X Position
|
1256
|
+
required: true
|
1257
|
+
description: X position of the upper-left corner of the text on the canvas
|
1258
|
+
values: \d+
|
1259
|
+
- name: Y Position
|
1260
|
+
required: true
|
1261
|
+
description: Y position of the upper-left corner of the text on the canvas
|
1262
|
+
values: \d+
|
1263
|
+
- name: Text
|
1264
|
+
required: true
|
1265
|
+
description: Text to draw onto the canvas
|
1266
|
+
values: .+
|
1267
|
+
- name: Font Size
|
1268
|
+
required: false
|
1269
|
+
description: Font size of the text (Default = 12)
|
1270
|
+
values: \d+
|
1271
|
+
- name: Color
|
1272
|
+
required: false
|
1273
|
+
description: Color of the text
|
1274
|
+
values: .+
|
1275
|
+
CANVASLABELVALUE:
|
1276
|
+
summary: Draws the text value of a telemetry item onto the canvas in an optional frame
|
1277
|
+
parameters:
|
1278
|
+
- name: Target name
|
1279
|
+
required: true
|
1280
|
+
description: The target name
|
1281
|
+
values: <%= System.targets.keys %>
|
1282
|
+
- name: Packet name
|
1283
|
+
required: true
|
1284
|
+
description: The packet name
|
1285
|
+
values: .+
|
1286
|
+
- name: Item name
|
1287
|
+
required: true
|
1288
|
+
description: The item name
|
1289
|
+
values: .+
|
1290
|
+
- name: X Position
|
1291
|
+
required: true
|
1292
|
+
description: X position of the upper-left corner of the text on the canvas
|
1293
|
+
values: \d+
|
1294
|
+
- name: Y Position
|
1295
|
+
required: true
|
1296
|
+
description: Y position of the upper-left corner of the text on the canvas
|
1297
|
+
values: \d+
|
1298
|
+
- name: Font Size
|
1299
|
+
required: false
|
1300
|
+
description: Font size of the text (Default = 12)
|
1301
|
+
values: \d+
|
1302
|
+
- name: Color
|
1303
|
+
required: false
|
1304
|
+
description: Color of the text
|
1305
|
+
values: .+
|
1306
|
+
- name: Frame
|
1307
|
+
required: false
|
1308
|
+
description: Whether to draw a frame around the value
|
1309
|
+
values: ['FALSE', 'TRUE']
|
1310
|
+
- name: Frame Width
|
1311
|
+
required: false
|
1312
|
+
description: Frame width in pixels
|
1313
|
+
values: .*
|
1314
|
+
- name: Value type
|
1315
|
+
required: false
|
1316
|
+
description: The type of the value to display. Default is CONVERTED.
|
1317
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
1318
|
+
CANVASIMAGE:
|
1319
|
+
summary: Displays a GIF image on the canvas
|
1320
|
+
parameters:
|
1321
|
+
- name: Image name
|
1322
|
+
required: true
|
1323
|
+
description: Name of a image file. The file must be located in the
|
1324
|
+
<CONFIG>/data directory.
|
1325
|
+
values: .+
|
1326
|
+
- name: X Position
|
1327
|
+
required: true
|
1328
|
+
description: X position of the upper-left corner of the image on the canvas
|
1329
|
+
values: \d+
|
1330
|
+
- name: Y Position
|
1331
|
+
required: true
|
1332
|
+
description: Y position of the upper-left corner of the image on the canvas
|
1333
|
+
values: \d+
|
1334
|
+
CANVASIMAGEVALUE:
|
1335
|
+
summary: Displays a GIF image on the canvas that changes with a telemetry value
|
1336
|
+
parameters:
|
1337
|
+
- name: Target name
|
1338
|
+
required: true
|
1339
|
+
description: The target name
|
1340
|
+
values: <%= System.targets.keys %>
|
1341
|
+
- name: Packet name
|
1342
|
+
required: true
|
1343
|
+
description: The packet name
|
1344
|
+
values: .+
|
1345
|
+
- name: Item name
|
1346
|
+
required: true
|
1347
|
+
description: The item name
|
1348
|
+
values: .+
|
1349
|
+
- name: Filename Prefix
|
1350
|
+
required: true
|
1351
|
+
description: The prefix part of the filename of the gif images (expected
|
1352
|
+
to be in the <CONFIG>/data directory). The actual filenames will be this
|
1353
|
+
value plus the word 'on' or the word 'off' and '.gif'. For example, your
|
1354
|
+
prefix is 'ground' so the files 'groundon.gif' and 'groundoff.gif' will
|
1355
|
+
be searched for in the <CONFIG>/data directory.
|
1356
|
+
values: .+
|
1357
|
+
- name: X Position
|
1358
|
+
required: true
|
1359
|
+
description: X position of the upper-left corner of the image on the canvas
|
1360
|
+
values: \d+
|
1361
|
+
- name: Y Position
|
1362
|
+
required: true
|
1363
|
+
description: Y position of the upper-left corner of the image on the canvas
|
1364
|
+
values: \d+
|
1365
|
+
CANVASLINE:
|
1366
|
+
summary: Draws a line onto the canvas
|
1367
|
+
parameters:
|
1368
|
+
- name: Start X Position
|
1369
|
+
required: true
|
1370
|
+
description: X position of the start of the line on the canvas
|
1371
|
+
values: \d+
|
1372
|
+
- name: Start Y Position
|
1373
|
+
required: true
|
1374
|
+
description: Y position of the start of the line on the canvas
|
1375
|
+
values: \d+
|
1376
|
+
- name: End X Position
|
1377
|
+
required: true
|
1378
|
+
description: X position of the end of the line on the canvas
|
1379
|
+
values: \d+
|
1380
|
+
- name: End Y Position
|
1381
|
+
required: true
|
1382
|
+
description: Y position of the end of the line on the canvas
|
1383
|
+
values: \d+
|
1384
|
+
- name: Color
|
1385
|
+
required: false
|
1386
|
+
description: Color of the line
|
1387
|
+
values: .+
|
1388
|
+
- name: Width
|
1389
|
+
required: false
|
1390
|
+
description: Width of the line in pixels (default = 1)
|
1391
|
+
values: \d+
|
1392
|
+
- name: Connector
|
1393
|
+
required: false
|
1394
|
+
description: Indicates whether or not to draw a circle at the endpoint of
|
1395
|
+
the line
|
1396
|
+
values: ['NO_CONNECTOR','CONNECTOR']
|
1397
|
+
CANVASLINEVALUE:
|
1398
|
+
summary: Draws a line onto the canvas in one of two colors based on the value
|
1399
|
+
of the associated telemetry item
|
1400
|
+
parameters:
|
1401
|
+
- name: Target name
|
1402
|
+
required: true
|
1403
|
+
description: The target name
|
1404
|
+
values: <%= System.targets.keys %>
|
1405
|
+
- name: Packet name
|
1406
|
+
required: true
|
1407
|
+
description: The packet name
|
1408
|
+
values: .+
|
1409
|
+
- name: Item name
|
1410
|
+
required: true
|
1411
|
+
description: The item name
|
1412
|
+
values: .+
|
1413
|
+
- name: Start X Position
|
1414
|
+
required: true
|
1415
|
+
description: X position of the start of the line on the canvas
|
1416
|
+
values: \d+
|
1417
|
+
- name: Start Y Position
|
1418
|
+
required: true
|
1419
|
+
description: Y position of the start of the line on the canvas
|
1420
|
+
values: \d+
|
1421
|
+
- name: End X Position
|
1422
|
+
required: true
|
1423
|
+
description: X position of the end of the line on the canvas
|
1424
|
+
values: \d+
|
1425
|
+
- name: End Y Position
|
1426
|
+
required: true
|
1427
|
+
description: Y position of the end of the line on the canvas
|
1428
|
+
values: \d+
|
1429
|
+
- name: Color On
|
1430
|
+
required: false
|
1431
|
+
description: Color of the line when the telmetry point is considered on
|
1432
|
+
Default is green.
|
1433
|
+
values: .+
|
1434
|
+
- name: Color Off
|
1435
|
+
required: false
|
1436
|
+
description: Color of the line when the telmetry point is considered off
|
1437
|
+
Default is blue.
|
1438
|
+
values: .+
|
1439
|
+
- name: Width
|
1440
|
+
required: false
|
1441
|
+
description: Width of the line in pixels (default = 3)
|
1442
|
+
values: \d+
|
1443
|
+
- name: Connector
|
1444
|
+
required: false
|
1445
|
+
description: Indicates whether or not to draw a circle at the endpoint of
|
1446
|
+
the line
|
1447
|
+
values: ['NO_CONNECTOR','CONNECTOR']
|
1448
|
+
- name: Value type
|
1449
|
+
required: false
|
1450
|
+
description: The type of the value to display. Default is RAW
|
1451
|
+
values: <%= %w(RAW CONVERTED FORMATTED WITH_UNITS) %>
|
1452
|
+
CANVASDOT:
|
1453
|
+
summary: The CANVASDOT widget draws a dot onto the canvas, and it can be
|
1454
|
+
programmed to change its position with ruby code
|
1455
|
+
parameters:
|
1456
|
+
- name: X Position or Ruby Code
|
1457
|
+
required: true
|
1458
|
+
description: X position of the dot or a String of Ruby code to evalulate
|
1459
|
+
values: .+
|
1460
|
+
- name: Y Position or Ruby Code
|
1461
|
+
required: true
|
1462
|
+
description: Y position of the dot or a String of Ruby code to evalulate
|
1463
|
+
values: .+
|
1464
|
+
- name: Color
|
1465
|
+
required: false
|
1466
|
+
description: Color of the dot. Default is black.
|
1467
|
+
values: .+
|
1468
|
+
- name: Width
|
1469
|
+
required: false
|
1470
|
+
description: Width of the dot in pixels (default = 3)
|
1471
|
+
values: \d+
|
1472
|
+
CANVASELLIPSE:
|
1473
|
+
summary: The CANVASELLIPSE widget draws an ellipse onto the canvas
|
1474
|
+
parameters:
|
1475
|
+
- name: X Center
|
1476
|
+
required: true
|
1477
|
+
description: X position of the center of the ellipse
|
1478
|
+
values: \d+
|
1479
|
+
- name: Y Center
|
1480
|
+
required: true
|
1481
|
+
description: Y position of the center of the ellipse
|
1482
|
+
values: \d+
|
1483
|
+
- name: Width
|
1484
|
+
required: true
|
1485
|
+
description: Width of the ellipse in pixels
|
1486
|
+
values: \d+
|
1487
|
+
- name: Height
|
1488
|
+
required: true
|
1489
|
+
description: Height of the ellipse in pixels
|
1490
|
+
values: \d+
|
1491
|
+
- name: Color
|
1492
|
+
required: false
|
1493
|
+
description: Color of the ellipse. Default is black.
|
1494
|
+
values: .+
|
1495
|
+
- name: Line Width
|
1496
|
+
required: false
|
1497
|
+
description: Width of the line. Default is 1
|
1498
|
+
values: \d+
|
1499
|
+
- name: Fill
|
1500
|
+
required: false
|
1501
|
+
description: Whether to fill the ellipse. Default is false.
|
1502
|
+
values: .+
|