cosmos 4.0.3-java

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