cosmos 4.0.0 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Manifest.txt +16 -3
- data/autohotkey/tools/ConfigEditor +16 -0
- data/autohotkey/tools/packet_viewer.ahk +2 -1
- data/autohotkey/tools/tlm_viewer.ahk +2 -0
- data/autohotkey/tools/tool_launch.rb +38 -0
- data/data/COSMOS_Architecture.png +0 -0
- data/data/config/system.yaml +79 -2
- data/data/crc.txt +29 -28
- data/demo/Gemfile +1 -1
- data/demo/config/data/crc.txt +7 -2
- data/demo/config/targets/SYSTEM/cmd_tlm/meta_tlm.txt +10 -0
- data/demo/config/tools/cmd_tlm_server/cmd_tlm_server.txt +1 -1
- data/demo/tools/mac/ConfigEditor.app/Contents/Info.plist +38 -0
- data/demo/tools/mac/ConfigEditor.app/Contents/MacOS/ConfigEditor.rb +16 -0
- data/demo/tools/mac/ConfigEditor.app/Contents/MacOS/main.sh +10 -0
- data/demo/tools/mac/ConfigEditor.app/Contents/MacOS/tool_launch.rb +38 -0
- data/demo/tools/mac/ConfigEditor.app/Contents/Resources/appIcon.icns +0 -0
- data/install/Gemfile +1 -1
- data/install/config/data/crc.txt +6 -1
- data/install/config/targets/SYSTEM/cmd_tlm/meta_tlm.txt +9 -0
- data/install/tools/mac/ConfigEditor.app/Contents/Info.plist +38 -0
- data/install/tools/mac/ConfigEditor.app/Contents/MacOS/ConfigEditor.rb +16 -0
- data/install/tools/mac/ConfigEditor.app/Contents/MacOS/main.sh +10 -0
- data/install/tools/mac/ConfigEditor.app/Contents/MacOS/tool_launch.rb +38 -0
- data/install/tools/mac/ConfigEditor.app/Contents/Resources/appIcon.icns +0 -0
- data/lib/cosmos/gui/dialogs/set_tlm_dialog.rb +3 -0
- data/lib/cosmos/gui/dialogs/tlm_graph_dialog.rb +7 -13
- data/lib/cosmos/interfaces/interface.rb +1 -1
- data/lib/cosmos/packets/commands.rb +5 -0
- data/lib/cosmos/packets/packet.rb +8 -0
- data/lib/cosmos/packets/packet_item.rb +9 -0
- data/lib/cosmos/script/api_shared.rb +1 -29
- data/lib/cosmos/script/scripting.rb +2 -4
- data/lib/cosmos/script/telemetry.rb +38 -22
- data/lib/cosmos/system/system.rb +51 -53
- data/lib/cosmos/tools/cmd_tlm_server/api.rb +27 -4
- data/lib/cosmos/tools/cmd_tlm_server/gui/packets_tab.rb +1 -7
- data/lib/cosmos/tools/config_editor/config_editor.rb +9 -1
- data/lib/cosmos/tools/config_editor/config_editor_frame.rb +16 -1
- data/lib/cosmos/tools/packet_viewer/packet_viewer.rb +1 -9
- data/lib/cosmos/tools/tlm_viewer/tlm_viewer.rb +1 -1
- data/lib/cosmos/tools/tlm_viewer/widgets/canvas_clickable.rb +33 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/canvas_widget.rb +14 -6
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasdot_widget.rb +15 -17
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasimage_widget.rb +5 -3
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasimagevalue_widget.rb +17 -15
- data/lib/cosmos/tools/tlm_viewer/widgets/canvaslabel_widget.rb +13 -6
- data/lib/cosmos/tools/tlm_viewer/widgets/canvaslabelvalue_widget.rb +5 -7
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasline_widget.rb +2 -4
- data/lib/cosmos/tools/tlm_viewer/widgets/canvaslinevalue_widget.rb +8 -11
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasvalue_widget.rb +2 -4
- data/lib/cosmos/top_level.rb +14 -0
- data/lib/cosmos/utilities/ruby_lex_utils.rb +1 -1
- data/lib/cosmos/version.rb +4 -4
- data/spec/install/config/targets/INST/cmd_tlm/inst_tlm.txt +3 -3
- data/spec/install/config/targets/SYSTEM/cmd_tlm/meta_tlm.txt +10 -0
- data/spec/packets/commands_spec.rb +10 -0
- data/spec/packets/packet_spec.rb +62 -0
- data/spec/script/telemetry_spec.rb +8 -6
- data/spec/system/system_spec.rb +192 -0
- data/spec/system/target_spec.rb +6 -5
- metadata +18 -5
- data/demo/config/targets/SYSTEM/cmd_tlm/meta_cmd_tlm.txt +0 -16
- data/install/config/targets/SYSTEM/cmd_tlm/meta_cmd_tlm.txt +0 -14
- data/spec/install/config/targets/SYSTEM/cmd_tlm/meta_cmd_tlm.txt +0 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c2dc39c9e42b49eb3135216b4d5fe4459e8023a0
|
4
|
+
data.tar.gz: edc125e31c13fff98cc09b1be868a590e49c842a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93e331721f33dfe35ce76d4449384fad52ae2f458ab88a7db33f28cfae180c72515589c3cf4b24bbac21661ed8f286cc0f560bf591ac9ab35116f45b212b10e6
|
7
|
+
data.tar.gz: b6a240745473a694cc47f65f70c2fbf7a9ed864575d76209b6b020011dc60936074c56f0bdde84a1a78b3de220d956b4f27b2c0c3142162086cbc53f6ec9d4f0
|
data/Manifest.txt
CHANGED
@@ -131,6 +131,7 @@ autohotkey/tools/CmdSequenceAHK2
|
|
131
131
|
autohotkey/tools/CmdTlmServer
|
132
132
|
autohotkey/tools/CmdTlmServerAHK
|
133
133
|
autohotkey/tools/CmdTlmServerAHK2
|
134
|
+
autohotkey/tools/ConfigEditor
|
134
135
|
autohotkey/tools/DataViewer
|
135
136
|
autohotkey/tools/DataViewerAHK
|
136
137
|
autohotkey/tools/HandbookCreatorAHK
|
@@ -203,6 +204,7 @@ autohotkey/tools/tlm_viewer.ahk
|
|
203
204
|
autohotkey/tools/tlm_viewer2.ahk
|
204
205
|
autohotkey/tools/tlm_viewer4.ahk
|
205
206
|
autohotkey/tools/tlm_viewer5.ahk
|
207
|
+
autohotkey/tools/tool_launch.rb
|
206
208
|
bin/cosmos
|
207
209
|
bin/cstol_converter
|
208
210
|
bin/exchndl20-x64.dll
|
@@ -404,7 +406,7 @@ demo/config/targets/INST/tools/data_viewer/data_viewer2.txt
|
|
404
406
|
demo/config/targets/INST/tools/table_manager/EventAction_def.txt
|
405
407
|
demo/config/targets/INST/tools/table_manager/McConfigTable_def.txt
|
406
408
|
demo/config/targets/SYSTEM/cmd_tlm/limits_groups.txt
|
407
|
-
demo/config/targets/SYSTEM/cmd_tlm/
|
409
|
+
demo/config/targets/SYSTEM/cmd_tlm/meta_tlm.txt
|
408
410
|
demo/config/targets/SYSTEM/cmd_tlm/override.txt
|
409
411
|
demo/config/targets/SYSTEM/cmd_tlm/system_cmds.txt
|
410
412
|
demo/config/targets/SYSTEM/cmd_tlm/system_tlm.txt
|
@@ -550,6 +552,11 @@ demo/tools/mac/CmdTlmServer.app/Contents/MacOS/CmdTlmServer.rb
|
|
550
552
|
demo/tools/mac/CmdTlmServer.app/Contents/MacOS/main.sh
|
551
553
|
demo/tools/mac/CmdTlmServer.app/Contents/MacOS/tool_launch.rb
|
552
554
|
demo/tools/mac/CmdTlmServer.app/Contents/Resources/appIcon.icns
|
555
|
+
demo/tools/mac/ConfigEditor.app/Contents/Info.plist
|
556
|
+
demo/tools/mac/ConfigEditor.app/Contents/MacOS/ConfigEditor.rb
|
557
|
+
demo/tools/mac/ConfigEditor.app/Contents/MacOS/main.sh
|
558
|
+
demo/tools/mac/ConfigEditor.app/Contents/MacOS/tool_launch.rb
|
559
|
+
demo/tools/mac/ConfigEditor.app/Contents/Resources/appIcon.icns
|
553
560
|
demo/tools/mac/DataViewer.app/Contents/Info.plist
|
554
561
|
demo/tools/mac/DataViewer.app/Contents/MacOS/DataViewer.rb
|
555
562
|
demo/tools/mac/DataViewer.app/Contents/MacOS/main.sh
|
@@ -651,7 +658,7 @@ install/Rakefile
|
|
651
658
|
install/config/data/README.txt
|
652
659
|
install/config/data/crc.txt
|
653
660
|
install/config/system/system.txt
|
654
|
-
install/config/targets/SYSTEM/cmd_tlm/
|
661
|
+
install/config/targets/SYSTEM/cmd_tlm/meta_tlm.txt
|
655
662
|
install/config/targets/SYSTEM/target.txt
|
656
663
|
install/config/tools/cmd_tlm_server/cmd_tlm_server.txt
|
657
664
|
install/config/tools/data_viewer/data_viewer.txt
|
@@ -758,6 +765,11 @@ install/tools/mac/CmdTlmServer.app/Contents/MacOS/CmdTlmServer.rb
|
|
758
765
|
install/tools/mac/CmdTlmServer.app/Contents/MacOS/main.sh
|
759
766
|
install/tools/mac/CmdTlmServer.app/Contents/MacOS/tool_launch.rb
|
760
767
|
install/tools/mac/CmdTlmServer.app/Contents/Resources/appIcon.icns
|
768
|
+
install/tools/mac/ConfigEditor.app/Contents/Info.plist
|
769
|
+
install/tools/mac/ConfigEditor.app/Contents/MacOS/ConfigEditor.rb
|
770
|
+
install/tools/mac/ConfigEditor.app/Contents/MacOS/main.sh
|
771
|
+
install/tools/mac/ConfigEditor.app/Contents/MacOS/tool_launch.rb
|
772
|
+
install/tools/mac/ConfigEditor.app/Contents/Resources/appIcon.icns
|
761
773
|
install/tools/mac/DataViewer.app/Contents/Info.plist
|
762
774
|
install/tools/mac/DataViewer.app/Contents/MacOS/DataViewer.rb
|
763
775
|
install/tools/mac/DataViewer.app/Contents/MacOS/main.sh
|
@@ -1102,6 +1114,7 @@ lib/cosmos/tools/tlm_viewer/widgets/aging_widget.rb
|
|
1102
1114
|
lib/cosmos/tools/tlm_viewer/widgets/array_widget.rb
|
1103
1115
|
lib/cosmos/tools/tlm_viewer/widgets/block_widget.rb
|
1104
1116
|
lib/cosmos/tools/tlm_viewer/widgets/button_widget.rb
|
1117
|
+
lib/cosmos/tools/tlm_viewer/widgets/canvas_clickable.rb
|
1105
1118
|
lib/cosmos/tools/tlm_viewer/widgets/canvas_widget.rb
|
1106
1119
|
lib/cosmos/tools/tlm_viewer/widgets/canvasdot_widget.rb
|
1107
1120
|
lib/cosmos/tools/tlm_viewer/widgets/canvasimage_widget.rb
|
@@ -1218,7 +1231,7 @@ spec/install/config/targets/INST/cmd_tlm_server.txt
|
|
1218
1231
|
spec/install/config/targets/INST/lib/sim_inst.rb
|
1219
1232
|
spec/install/config/targets/INST/target.txt
|
1220
1233
|
spec/install/config/targets/SYSTEM/cmd_tlm/limits_groups.txt
|
1221
|
-
spec/install/config/targets/SYSTEM/cmd_tlm/
|
1234
|
+
spec/install/config/targets/SYSTEM/cmd_tlm/meta_tlm.txt
|
1222
1235
|
spec/install/config/targets/SYSTEM/cmd_tlm/system_cmds.txt
|
1223
1236
|
spec/install/config/targets/SYSTEM/cmd_tlm/system_tlm.txt
|
1224
1237
|
spec/install/config/targets/SYSTEM/cmd_tlm_server.txt
|
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# encoding: ascii-8bit
|
3
|
+
|
4
|
+
# Copyright 2015 Ball Aerospace & Technologies Corp.
|
5
|
+
# All Rights Reserved.
|
6
|
+
#
|
7
|
+
# This program is free software; you can modify and/or redistribute it
|
8
|
+
# under the terms of the GNU General Public License
|
9
|
+
# as published by the Free Software Foundation; version 3 with
|
10
|
+
# attribution addendums as found in the LICENSE.txt
|
11
|
+
|
12
|
+
require_relative 'tool_launch'
|
13
|
+
tool_launch do
|
14
|
+
require 'cosmos/tools/config_editor/config_editor'
|
15
|
+
Cosmos::ConfigEditor.run
|
16
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# encoding: ascii-8bit
|
3
|
+
|
4
|
+
# Copyright 2015 Ball Aerospace & Technologies Corp.
|
5
|
+
# All Rights Reserved.
|
6
|
+
#
|
7
|
+
# This program is free software; you can modify and/or redistribute it
|
8
|
+
# under the terms of the GNU General Public License
|
9
|
+
# as published by the Free Software Foundation; version 3 with
|
10
|
+
# attribution addendums as found in the LICENSE.txt
|
11
|
+
|
12
|
+
def tool_launch
|
13
|
+
begin
|
14
|
+
require 'bundler/setup'
|
15
|
+
require 'cosmos'
|
16
|
+
yield
|
17
|
+
rescue Exception => error
|
18
|
+
popup_error = error; popup_error = $cosmos_fatal_exception if defined? $cosmos_fatal_exception
|
19
|
+
begin
|
20
|
+
raise error if STDIN.isatty # Have a console
|
21
|
+
raise error unless defined? $cosmos_fatal_exception or (error.class != SystemExit and error.class != Interrupt)
|
22
|
+
case RUBY_PLATFORM
|
23
|
+
when /mingw32/
|
24
|
+
require 'fiddle'
|
25
|
+
Fiddle::Function.new(Fiddle.dlopen('user32')['MessageBox'], [Fiddle::TYPE_LONG, Fiddle::TYPE_VOIDP, Fiddle::TYPE_VOIDP, Fiddle::TYPE_LONG], Fiddle::TYPE_LONG).call(0, "#{popup_error.class}:#{popup_error.message}\n\n#{popup_error.backtrace.join("\n")}\n\nNote: Ctrl-C will copy this information to the clipboard.", "Error Starting COSMOS Tool", 0x50030)
|
26
|
+
when /darwin/
|
27
|
+
system("osascript -e 'display notification \"#{popup_error.class}:#{popup_error.message}:#{popup_error.backtrace[0].tr("'\"`<>", '')}\" with title \"Error Starting COSMOS Tool\"'")
|
28
|
+
else
|
29
|
+
message = "#{popup_error.class}:#{popup_error.message}\\n\\n#{popup_error.backtrace.join("\\n").tr("'\"`<>", '')}"
|
30
|
+
command = "zenity --info --text=\"#{message}\" --title=\"Error Starting COSMOS Tool\""
|
31
|
+
success = system(command)
|
32
|
+
system("notify-send \"Error Starting COSMOS Tool\" \"#{message}\"") unless success
|
33
|
+
end
|
34
|
+
ensure
|
35
|
+
raise error
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
Binary file
|
data/data/config/system.yaml
CHANGED
@@ -28,6 +28,29 @@ DECLARE_TARGET:
|
|
28
28
|
description: The name of the file in the target directory which contains the
|
29
29
|
configuration information for the target. By default this is 'target.txt'
|
30
30
|
but if you want to rename this you need to set this parameter.
|
31
|
+
DECLARE_GEM_TARGET:
|
32
|
+
summary: Declare a COSMOS target which resides in a Ruby gem
|
33
|
+
description: COSMOS targets can be distributed in gem form in which case they
|
34
|
+
must be named 'cosmos-<gem-name>' where <gem-name> is the descriptive name of
|
35
|
+
the gem. See the COSMOS documentation at cosmosrb.com for for information on
|
36
|
+
creating a COSMOS gem target.
|
37
|
+
parameters:
|
38
|
+
- name: Gem Name
|
39
|
+
required: true
|
40
|
+
description: The COSMOS gem name which must be cosmos-<gem-name> where <gem-name>
|
41
|
+
is the descriptive gem name. In the above example, the target will be named
|
42
|
+
'GEM-NAME' (note the cosmos- prefix is stripped off).
|
43
|
+
values: .+
|
44
|
+
- name: Substitute Target Name
|
45
|
+
required: false
|
46
|
+
description: The target name in the COSMOS system. This is how the target
|
47
|
+
will be referred to in scripts. If this is not given (or given as nil)
|
48
|
+
the target name will be the gem name as described above.
|
49
|
+
- name: Target Filename
|
50
|
+
required: false
|
51
|
+
description: The name of the file in the target directory which contains the
|
52
|
+
configuration information for the target. By default this is 'target.txt'
|
53
|
+
but if you want to rename this you need to set this parameter.
|
31
54
|
PORT:
|
32
55
|
summary: Set a Server Port
|
33
56
|
description: Port is used to set the default ports used by the Command and Telemetry Server.
|
@@ -41,12 +64,55 @@ PORT:
|
|
41
64
|
TLMVIEWER_API - This port is used to remotely open and close telemetry screens in Telemetry Viewer.
|
42
65
|
CTS_PREIDENTIFIED - This port provides access to a preidentified stream of all telemetry packets
|
43
66
|
in the system. This is currently used by Telemetry Grapher and can be used to chain Command
|
44
|
-
and Telemetry Servers together.
|
45
|
-
|
67
|
+
and Telemetry Servers together as it also accepts commands.
|
68
|
+
CTS_CMD_ROUTER - This port provides access to a stream of all command packets
|
69
|
+
that have been accepted by COSMOS.
|
70
|
+
values: <%= %w(CTS_API TLMVIEWER_API CTS_PREIDENTIFIED CTS_CMD_ROUTER) %>
|
46
71
|
- name: Port Value
|
47
72
|
required: true
|
48
73
|
description: Port number to use for the specified port name
|
49
74
|
values: '\d{2,}'
|
75
|
+
LISTEN_HOST:
|
76
|
+
summary: IP addresses or host names to bind API ports to
|
77
|
+
since: 4.0.0
|
78
|
+
parameters:
|
79
|
+
- name: Host Port Name
|
80
|
+
required: true
|
81
|
+
description: CTS_API - This port is what tools connect to to communicate with the COSMOS Scripting API.
|
82
|
+
TLMVIEWER_API - This port is used to remotely open and close telemetry screens in Telemetry Viewer.
|
83
|
+
CTS_PREIDENTIFIED - This port provides access to a preidentified stream of all telemetry packets
|
84
|
+
in the system. This is currently used by Telemetry Grapher and can be used to chain Command
|
85
|
+
and Telemetry Servers together as it also accepts commands.
|
86
|
+
CTS_CMD_ROUTER - This port provides access to a stream of all command packets
|
87
|
+
that have been accepted by COSMOS.
|
88
|
+
values: <%= %w(CTS_API TLMVIEWER_API CTS_PREIDENTIFIED CTS_CMD_ROUTER) %>
|
89
|
+
- name: Host Value
|
90
|
+
required: true
|
91
|
+
description: The IP address or host name to bind the Host Port Name to. By default,
|
92
|
+
the CTS_API and TLMVIEWER_API are bound to localhost meaning that only tools
|
93
|
+
on the same machine can connect. By default, CTS_PREIDENTIFIED and CTS_CMD_ROUTER
|
94
|
+
are bound to '0.0.0.0' to allow for tools on any machines to connect. This
|
95
|
+
allows for chaining two or more Servers out of the box.
|
96
|
+
values: .+
|
97
|
+
CONNECT_HOST:
|
98
|
+
summary: IP addresses or host names to connect tools to
|
99
|
+
since: 4.0.0
|
100
|
+
parameters:
|
101
|
+
- name: Host Port Name
|
102
|
+
required: true
|
103
|
+
description: CTS_API - This port is what tools connect to to communicate with the COSMOS Scripting API.
|
104
|
+
TLMVIEWER_API - This port is used to remotely open and close telemetry screens in Telemetry Viewer.
|
105
|
+
CTS_PREIDENTIFIED - This port provides access to a preidentified stream of all telemetry packets
|
106
|
+
in the system. This is currently used by Telemetry Grapher and can be used to chain Command
|
107
|
+
and Telemetry Servers together as it also accepts commands.
|
108
|
+
CTS_CMD_ROUTER - This port provides access to a stream of all command packets
|
109
|
+
that have been accepted by COSMOS.
|
110
|
+
values: <%= %w(CTS_API TLMVIEWER_API CTS_PREIDENTIFIED CTS_CMD_ROUTER) %>
|
111
|
+
- name: Host Value
|
112
|
+
required: true
|
113
|
+
description: The IP address or host name to connect tools to. By default all
|
114
|
+
ports are bound to localhost so all tools connect to the local machine.
|
115
|
+
values: .+
|
50
116
|
PATH:
|
51
117
|
summary: Set a Server Path
|
52
118
|
description: Path is used to set the default paths used by the Command and Telemetry Server
|
@@ -126,6 +192,17 @@ ALLOW_ACCESS:
|
|
126
192
|
description: Machine name to allow access or you can specify 'ALL' to allow
|
127
193
|
all machines access
|
128
194
|
values: .+
|
195
|
+
META_INIT:
|
196
|
+
summary: Specify a file to initialize the SYSTEM META packet
|
197
|
+
description: Filename should be a text file with key value pairs where the keyword
|
198
|
+
matches an item in the SYSTEM META packet. Note you do not have to specify ALL
|
199
|
+
the items in the SYSTEM META packet.
|
200
|
+
since: 4.0.0
|
201
|
+
parameters:
|
202
|
+
- name: Filename
|
203
|
+
required: true
|
204
|
+
description: Filename, either fully qualified, or relative to Cosmos::USERPATH
|
205
|
+
values: .+
|
129
206
|
TIME_ZONE_UTC:
|
130
207
|
summary: Report all times as UTC
|
131
208
|
description: COSMOS will report all times as UTC time. If this keyword is not used,
|
data/data/crc.txt
CHANGED
@@ -17,7 +17,7 @@
|
|
17
17
|
"lib/cosmos/processors/processor.rb" 0x1FEB7030
|
18
18
|
"lib/cosmos/processors/statistics_processor.rb" 0xE732AE7F
|
19
19
|
"lib/cosmos/processors/watermark_processor.rb" 0x8829E260
|
20
|
-
"lib/cosmos/version.rb"
|
20
|
+
"lib/cosmos/version.rb" 0xD659E7DD
|
21
21
|
"lib/cosmos/conversions/new_packet_log_conversion.rb" 0x4AA03555
|
22
22
|
"lib/cosmos/conversions/segmented_polynomial_conversion.rb" 0xC498CE81
|
23
23
|
"lib/cosmos/conversions/processor_conversion.rb" 0xC72B73BD
|
@@ -41,7 +41,7 @@
|
|
41
41
|
"lib/cosmos/gui/widgets/packet_log_frame.rb" 0x74EBA303
|
42
42
|
"lib/cosmos/gui/widgets/full_text_search_line_edit.rb" 0x0FD4B1E9
|
43
43
|
"lib/cosmos/gui/widgets/realtime_button_bar.rb" 0xEB0CE858
|
44
|
-
"lib/cosmos/gui/dialogs/set_tlm_dialog.rb"
|
44
|
+
"lib/cosmos/gui/dialogs/set_tlm_dialog.rb" 0x61B98717
|
45
45
|
"lib/cosmos/gui/dialogs/interface_raw_dialog.rb" 0xB3CBF46E
|
46
46
|
"lib/cosmos/gui/dialogs/splash.rb" 0xEB84DFE8
|
47
47
|
"lib/cosmos/gui/dialogs/select_dialog.rb" 0x5DA0A692
|
@@ -55,7 +55,7 @@
|
|
55
55
|
"lib/cosmos/gui/dialogs/pry_dialog.rb" 0xBE843775
|
56
56
|
"lib/cosmos/gui/dialogs/find_replace_dialog.rb" 0x9D89681C
|
57
57
|
"lib/cosmos/gui/dialogs/progress_dialog.rb" 0xF46E4DAE
|
58
|
-
"lib/cosmos/gui/dialogs/tlm_graph_dialog.rb"
|
58
|
+
"lib/cosmos/gui/dialogs/tlm_graph_dialog.rb" 0xC827A206
|
59
59
|
"lib/cosmos/gui/dialogs/tlm_details_dialog.rb" 0x619F2927
|
60
60
|
"lib/cosmos/gui/dialogs/scroll_text_dialog.rb" 0x4DB748F2
|
61
61
|
"lib/cosmos/gui/dialogs/cmd_details_dialog.rb" 0xCC67DC8A
|
@@ -100,12 +100,12 @@
|
|
100
100
|
"lib/cosmos/packets/parsers/packet_parser.rb" 0x26478943
|
101
101
|
"lib/cosmos/packets/telemetry.rb" 0x7D392FC4
|
102
102
|
"lib/cosmos/packets/binary_accessor.rb" 0xCD678EF6
|
103
|
-
"lib/cosmos/packets/packet.rb"
|
103
|
+
"lib/cosmos/packets/packet.rb" 0x186A8824
|
104
104
|
"lib/cosmos/packets/structure.rb" 0xD98A1B1E
|
105
|
-
"lib/cosmos/packets/commands.rb"
|
105
|
+
"lib/cosmos/packets/commands.rb" 0x4D4411BD
|
106
106
|
"lib/cosmos/packets/limits_response.rb" 0xB836D388
|
107
107
|
"lib/cosmos/packets/packet_config.rb" 0x23DCA3C4
|
108
|
-
"lib/cosmos/packets/packet_item.rb"
|
108
|
+
"lib/cosmos/packets/packet_item.rb" 0xE6734330
|
109
109
|
"lib/cosmos/packets/limits.rb" 0x93BE03A8
|
110
110
|
"lib/cosmos/packets/packet_item_limits.rb" 0xC4534EAB
|
111
111
|
"lib/cosmos/packets/structure_item.rb" 0x72CB1545
|
@@ -130,7 +130,7 @@
|
|
130
130
|
"lib/cosmos/interfaces/protocols/override_protocol.rb" 0xEA200EEC
|
131
131
|
"lib/cosmos/interfaces/protocols/fixed_protocol.rb" 0x5B68E7F0
|
132
132
|
"lib/cosmos/interfaces/simulated_target_interface.rb" 0xA09DBFF7
|
133
|
-
"lib/cosmos/interfaces/interface.rb"
|
133
|
+
"lib/cosmos/interfaces/interface.rb" 0x0A161A72
|
134
134
|
"lib/cosmos/interfaces/linc_interface.rb" 0xA85A43C1
|
135
135
|
"lib/cosmos/interfaces/tcpip_server_interface.rb" 0x40E704B6
|
136
136
|
"lib/cosmos/interfaces/tcpip_client_interface.rb" 0xE9F201A9
|
@@ -138,13 +138,13 @@
|
|
138
138
|
"lib/cosmos/packet_logs/packet_log_reader.rb" 0x0BACD572
|
139
139
|
"lib/cosmos/packet_logs/packet_log_writer.rb" 0x3ED503DF
|
140
140
|
"lib/cosmos/packet_logs/ccsds_log_reader.rb" 0x0B80AEA6
|
141
|
-
"lib/cosmos/system/system.rb"
|
141
|
+
"lib/cosmos/system/system.rb" 0x7728F280
|
142
142
|
"lib/cosmos/system/target.rb" 0x61A79882
|
143
|
-
"lib/cosmos/script/scripting.rb"
|
144
|
-
"lib/cosmos/script/telemetry.rb"
|
143
|
+
"lib/cosmos/script/scripting.rb" 0x42C66BC5
|
144
|
+
"lib/cosmos/script/telemetry.rb" 0x5B4B2D87
|
145
145
|
"lib/cosmos/script/commands.rb" 0x58C207A1
|
146
146
|
"lib/cosmos/script/extract.rb" 0xADCA649F
|
147
|
-
"lib/cosmos/script/api_shared.rb"
|
147
|
+
"lib/cosmos/script/api_shared.rb" 0xCB2499E9
|
148
148
|
"lib/cosmos/script/cmd_tlm_server.rb" 0x41C35E5A
|
149
149
|
"lib/cosmos/script/limits.rb" 0xF8EC58DD
|
150
150
|
"lib/cosmos/script/script.rb" 0x5912C11D
|
@@ -155,7 +155,7 @@
|
|
155
155
|
"lib/cosmos/win32/win32.rb" 0xEF748B06
|
156
156
|
"lib/cosmos/win32/win32_main.rb" 0x722DDE0D
|
157
157
|
"lib/cosmos/packet_logs.rb" 0xDBC544CD
|
158
|
-
"lib/cosmos/top_level.rb"
|
158
|
+
"lib/cosmos/top_level.rb" 0x8791286E
|
159
159
|
"lib/cosmos/interfaces.rb" 0x645A71F9
|
160
160
|
"lib/cosmos/core_ext/math.rb" 0xEFD1636D
|
161
161
|
"lib/cosmos/core_ext/string.rb" 0x92666931
|
@@ -173,8 +173,8 @@
|
|
173
173
|
"lib/cosmos/core_ext/range.rb" 0x5D3E08D1
|
174
174
|
"lib/cosmos/core_ext/file.rb" 0x988C5632
|
175
175
|
"lib/cosmos/core_ext/kernel.rb" 0xFF4DF6CF
|
176
|
-
"lib/cosmos/tools/config_editor/config_editor.rb"
|
177
|
-
"lib/cosmos/tools/config_editor/config_editor_frame.rb"
|
176
|
+
"lib/cosmos/tools/config_editor/config_editor.rb" 0xCAF19C07
|
177
|
+
"lib/cosmos/tools/config_editor/config_editor_frame.rb" 0x68487058
|
178
178
|
"lib/cosmos/tools/launcher/launcher.rb" 0xD924A01D
|
179
179
|
"lib/cosmos/tools/launcher/launcher_multitool.rb" 0x1020A3D0
|
180
180
|
"lib/cosmos/tools/launcher/launcher_tool.rb" 0xE2F186A7
|
@@ -192,7 +192,7 @@
|
|
192
192
|
"lib/cosmos/tools/cmd_sequence/sequence_list.rb" 0xB94C6022
|
193
193
|
"lib/cosmos/tools/cmd_sequence/sequence_item.rb" 0xADF1A63D
|
194
194
|
"lib/cosmos/tools/tlm_viewer/tlm_viewer_config.rb" 0x3EF6E9D9
|
195
|
-
"lib/cosmos/tools/tlm_viewer/tlm_viewer.rb"
|
195
|
+
"lib/cosmos/tools/tlm_viewer/tlm_viewer.rb" 0xE8F10BF3
|
196
196
|
"lib/cosmos/tools/tlm_viewer/widgets/labeltrendlimitsbar_widget.rb" 0xD8A2AADE
|
197
197
|
"lib/cosmos/tools/tlm_viewer/widgets/matrixbycolumns_widget.rb" 0x24FF88A9
|
198
198
|
"lib/cosmos/tools/tlm_viewer/widgets/labelvaluerangecolumn_widget.rb" 0x5935BAC8
|
@@ -200,17 +200,18 @@
|
|
200
200
|
"lib/cosmos/tools/tlm_viewer/widgets/rangecolumn_widget.rb" 0xBB050D05
|
201
201
|
"lib/cosmos/tools/tlm_viewer/widgets/layout_widget.rb" 0x799D4376
|
202
202
|
"lib/cosmos/tools/tlm_viewer/widgets/formatfontvalue_widget.rb" 0xBA3127ED
|
203
|
-
"lib/cosmos/tools/tlm_viewer/widgets/canvaslinevalue_widget.rb"
|
203
|
+
"lib/cosmos/tools/tlm_viewer/widgets/canvaslinevalue_widget.rb" 0x2BFFD0E6
|
204
204
|
"lib/cosmos/tools/tlm_viewer/widgets/trendbar_widget.rb" 0xCC7F70CC
|
205
205
|
"lib/cosmos/tools/tlm_viewer/widgets/widget.rb" 0xACDB9307
|
206
206
|
"lib/cosmos/tools/tlm_viewer/widgets/tabitem_widget.rb" 0x390CA44D
|
207
207
|
"lib/cosmos/tools/tlm_viewer/widgets/labelvaluedesc_widget.rb" 0x9FDF915A
|
208
|
+
"lib/cosmos/tools/tlm_viewer/widgets/canvas_clickable.rb" 0xE62BBDD6
|
208
209
|
"lib/cosmos/tools/tlm_viewer/widgets/labelprogressbar_widget.rb" 0xC4662AC8
|
209
210
|
"lib/cosmos/tools/tlm_viewer/widgets/rangebar_widget.rb" 0xDB60C599
|
210
211
|
"lib/cosmos/tools/tlm_viewer/widgets/linegraph_widget.rb" 0xF134F59F
|
211
212
|
"lib/cosmos/tools/tlm_viewer/widgets/limitscolumn_widget.rb" 0x3167CC52
|
212
213
|
"lib/cosmos/tools/tlm_viewer/widgets/labelvaluelimitsbar_widget.rb" 0xF8B0AEA6
|
213
|
-
"lib/cosmos/tools/tlm_viewer/widgets/canvaslabel_widget.rb"
|
214
|
+
"lib/cosmos/tools/tlm_viewer/widgets/canvaslabel_widget.rb" 0x726BDD0B
|
214
215
|
"lib/cosmos/tools/tlm_viewer/widgets/textfield_widget.rb" 0x78E3DDD4
|
215
216
|
"lib/cosmos/tools/tlm_viewer/widgets/labelformatvalue_widget.rb" 0x32F7EC00
|
216
217
|
"lib/cosmos/tools/tlm_viewer/widgets/screenshotbutton_widget.rb" 0xD59B52F4
|
@@ -226,7 +227,7 @@
|
|
226
227
|
"lib/cosmos/tools/tlm_viewer/widgets/horizontal_widget.rb" 0x3410E11C
|
227
228
|
"lib/cosmos/tools/tlm_viewer/widgets/title_widget.rb" 0xA9BB162E
|
228
229
|
"lib/cosmos/tools/tlm_viewer/widgets/multi_widget.rb" 0x692A64C9
|
229
|
-
"lib/cosmos/tools/tlm_viewer/widgets/canvasvalue_widget.rb"
|
230
|
+
"lib/cosmos/tools/tlm_viewer/widgets/canvasvalue_widget.rb" 0xA4C3750E
|
230
231
|
"lib/cosmos/tools/tlm_viewer/widgets/horizontalbox_widget.rb" 0xE84BD2B5
|
231
232
|
"lib/cosmos/tools/tlm_viewer/widgets/array_widget.rb" 0x01FF280E
|
232
233
|
"lib/cosmos/tools/tlm_viewer/widgets/scrollwindow_widget.rb" 0x9CF64770
|
@@ -236,15 +237,15 @@
|
|
236
237
|
"lib/cosmos/tools/tlm_viewer/widgets/horizontalline_widget.rb" 0xF1D7738C
|
237
238
|
"lib/cosmos/tools/tlm_viewer/widgets/aging_widget.rb" 0xF86604BD
|
238
239
|
"lib/cosmos/tools/tlm_viewer/widgets/value_widget.rb" 0x4D6A92A7
|
239
|
-
"lib/cosmos/tools/tlm_viewer/widgets/canvasimagevalue_widget.rb"
|
240
|
+
"lib/cosmos/tools/tlm_viewer/widgets/canvasimagevalue_widget.rb" 0x93009EEF
|
240
241
|
"lib/cosmos/tools/tlm_viewer/widgets/checkbutton_widget.rb" 0x4A22EFCA
|
241
242
|
"lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb" 0xBB872BEE
|
242
243
|
"lib/cosmos/tools/tlm_viewer/widgets/limitscolor_widget.rb" 0x346B0043
|
243
244
|
"lib/cosmos/tools/tlm_viewer/widgets/limitsbar_widget.rb" 0x88713756
|
244
|
-
"lib/cosmos/tools/tlm_viewer/widgets/canvasimage_widget.rb"
|
245
|
+
"lib/cosmos/tools/tlm_viewer/widgets/canvasimage_widget.rb" 0xCC4D8172
|
245
246
|
"lib/cosmos/tools/tlm_viewer/widgets/textbox_widget.rb" 0x9208702E
|
246
247
|
"lib/cosmos/tools/tlm_viewer/widgets/button_widget.rb" 0x189ED964
|
247
|
-
"lib/cosmos/tools/tlm_viewer/widgets/canvasline_widget.rb"
|
248
|
+
"lib/cosmos/tools/tlm_viewer/widgets/canvasline_widget.rb" 0x9BCBE3C8
|
248
249
|
"lib/cosmos/tools/tlm_viewer/widgets/limits_widget.rb" 0x6DE01FA2
|
249
250
|
"lib/cosmos/tools/tlm_viewer/widgets/labelvaluerangebar_widget.rb" 0xEA9E63B6
|
250
251
|
"lib/cosmos/tools/tlm_viewer/widgets/formatvalue_widget.rb" 0x2D9BB6B1
|
@@ -252,9 +253,9 @@
|
|
252
253
|
"lib/cosmos/tools/tlm_viewer/widgets/labelvalue_widget.rb" 0x9D4DBA9C
|
253
254
|
"lib/cosmos/tools/tlm_viewer/widgets/tabbook_widget.rb" 0xD19A5F86
|
254
255
|
"lib/cosmos/tools/tlm_viewer/widgets/block_widget.rb" 0xDF8043E4
|
255
|
-
"lib/cosmos/tools/tlm_viewer/widgets/canvas_widget.rb"
|
256
|
-
"lib/cosmos/tools/tlm_viewer/widgets/canvasdot_widget.rb"
|
257
|
-
"lib/cosmos/tools/tlm_viewer/widgets/canvaslabelvalue_widget.rb"
|
256
|
+
"lib/cosmos/tools/tlm_viewer/widgets/canvas_widget.rb" 0x09A8F2D0
|
257
|
+
"lib/cosmos/tools/tlm_viewer/widgets/canvasdot_widget.rb" 0x3B2B3BAD
|
258
|
+
"lib/cosmos/tools/tlm_viewer/widgets/canvaslabelvalue_widget.rb" 0x14270A26
|
258
259
|
"lib/cosmos/tools/tlm_viewer/widgets.rb" 0x31655A9F
|
259
260
|
"lib/cosmos/tools/tlm_viewer/screen.rb" 0x3D875105
|
260
261
|
"lib/cosmos/tools/data_viewer/data_viewer.rb" 0x2B28E2AC
|
@@ -274,7 +275,7 @@
|
|
274
275
|
"lib/cosmos/tools/cmd_tlm_server/gui/targets_tab.rb" 0xE91F33C5
|
275
276
|
"lib/cosmos/tools/cmd_tlm_server/gui/logging_tab.rb" 0xFF291A22
|
276
277
|
"lib/cosmos/tools/cmd_tlm_server/gui/status_tab.rb" 0xE0667118
|
277
|
-
"lib/cosmos/tools/cmd_tlm_server/gui/packets_tab.rb"
|
278
|
+
"lib/cosmos/tools/cmd_tlm_server/gui/packets_tab.rb" 0x8FBB5BC5
|
278
279
|
"lib/cosmos/tools/cmd_tlm_server/gui/interfaces_tab.rb" 0x290E51A6
|
279
280
|
"lib/cosmos/tools/cmd_tlm_server/commanding.rb" 0x48217D89
|
280
281
|
"lib/cosmos/tools/cmd_tlm_server/background_task.rb" 0xC2141E7E
|
@@ -282,12 +283,12 @@
|
|
282
283
|
"lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server_gui.rb" 0x7BC538F5
|
283
284
|
"lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server.rb" 0xB57ABEFA
|
284
285
|
"lib/cosmos/tools/cmd_tlm_server/connections.rb" 0x6DC54689
|
285
|
-
"lib/cosmos/tools/cmd_tlm_server/api.rb"
|
286
|
+
"lib/cosmos/tools/cmd_tlm_server/api.rb" 0x0AA8D1CB
|
286
287
|
"lib/cosmos/tools/cmd_tlm_server/packet_logging.rb" 0xCE912CF1
|
287
288
|
"lib/cosmos/tools/cmd_tlm_server/interfaces.rb" 0xF5C647E1
|
288
289
|
"lib/cosmos/tools/cmd_tlm_server/router_thread.rb" 0x5070D428
|
289
290
|
"lib/cosmos/tools/cmd_tlm_server/interface_thread.rb" 0x3F3BDB60
|
290
|
-
"lib/cosmos/tools/packet_viewer/packet_viewer.rb"
|
291
|
+
"lib/cosmos/tools/packet_viewer/packet_viewer.rb" 0xC2F0FE7D
|
291
292
|
"lib/cosmos/tools/cmd_sender/cmd_sender.rb" 0x73C0B61A
|
292
293
|
"lib/cosmos/tools/cmd_sender/cmd_param_table_item_delegate.rb" 0x8F2E2BDE
|
293
294
|
"lib/cosmos/tools/cmd_sender/cmd_sender_text_edit.rb" 0xB192AF6E
|
@@ -339,7 +340,7 @@
|
|
339
340
|
"lib/cosmos/config/config_parser.rb" 0x084A19DF
|
340
341
|
"lib/cosmos/config/meta_config_parser.rb" 0xE4521B6B
|
341
342
|
"lib/cosmos/utilities/csv.rb" 0x14EE47F2
|
342
|
-
"lib/cosmos/utilities/ruby_lex_utils.rb"
|
343
|
+
"lib/cosmos/utilities/ruby_lex_utils.rb" 0x340218C1
|
343
344
|
"lib/cosmos/utilities/crc.rb" 0x4C5F0CD1
|
344
345
|
"lib/cosmos/utilities/low_fragmentation_array.rb" 0x265263E1
|
345
346
|
"lib/cosmos/utilities/logger.rb" 0xDD74C6BE
|