cosmos 3.8.2 → 3.8.3
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 +5 -5
- data/Rakefile +8 -2
- data/autohotkey/tools/autohotkey.rb +3 -3
- data/data/crc.txt +27 -27
- data/demo/Launcher.bat +3 -3
- data/demo/config/data/crc.txt +27 -27
- data/demo/{procedures → config/targets/INST/procedures}/checks.rb +0 -0
- data/demo/{procedures → config/targets/INST/procedures}/collect.rb +2 -2
- data/demo/{procedures → config/targets/INST/procedures}/disconnect.rb +0 -0
- data/demo/{procedures/clear_util.rb → config/targets/INST/procedures/utilities/clear.rb} +0 -0
- data/demo/{procedures/collect_util.rb → config/targets/INST/procedures/utilities/collect.rb} +2 -2
- data/demo/config/targets/INST/screens/commanding.txt +3 -3
- data/demo/config/tools/table_manager/ExampleTableDefinition.txt +7 -7
- data/demo/procedures/plot_test.rb +1 -1
- data/demo/tools/CmdExtractor.bat +3 -3
- data/demo/tools/CmdSender.bat +3 -3
- data/demo/tools/CmdTlmServer.bat +3 -3
- data/demo/tools/DataViewer.bat +3 -3
- data/demo/tools/ExampleTarget.bat +3 -3
- data/demo/tools/HandbookCreator.bat +3 -3
- data/demo/tools/Launcher.bat +3 -3
- data/demo/tools/LimitsMonitor.bat +3 -3
- data/demo/tools/OpenGLBuilder.bat +3 -3
- data/demo/tools/PacketViewer.bat +3 -3
- data/demo/tools/Replay.bat +3 -3
- data/demo/tools/ScpiTarget.bat +3 -3
- data/demo/tools/ScriptRunner.bat +3 -3
- data/demo/tools/TableManager.bat +3 -3
- data/demo/tools/TestRunner.bat +3 -3
- data/demo/tools/TlmExtractor.bat +3 -3
- data/demo/tools/TlmGrapher.bat +3 -3
- data/demo/tools/TlmViewer.bat +3 -3
- data/demo/tools/ToolLaunch.bat +3 -6
- data/ext/cosmos/ext/packet/packet.c +10 -0
- data/install/config/data/crc.txt +17 -17
- data/install/tools/CmdExtractor.bat +3 -3
- data/install/tools/CmdSender.bat +3 -3
- data/install/tools/CmdTlmServer.bat +3 -3
- data/install/tools/DataViewer.bat +3 -3
- data/install/tools/HandbookCreator.bat +3 -3
- data/install/tools/Launcher.bat +3 -3
- data/install/tools/LimitsMonitor.bat +3 -3
- data/install/tools/OpenGLBuilder.bat +3 -3
- data/install/tools/PacketViewer.bat +3 -3
- data/install/tools/Replay.bat +3 -3
- data/install/tools/ScriptRunner.bat +3 -3
- data/install/tools/TableManager.bat +3 -3
- data/install/tools/TestRunner.bat +3 -3
- data/install/tools/TlmExtractor.bat +3 -3
- data/install/tools/TlmGrapher.bat +3 -3
- data/install/tools/TlmViewer.bat +3 -3
- data/install/tools/ToolLaunch.bat +3 -6
- data/lib/cosmos/config/config_parser.rb +10 -2
- data/lib/cosmos/gui/qt_tool.rb +6 -0
- data/lib/cosmos/gui/utilities/screenshot.rb +8 -0
- data/lib/cosmos/gui/utilities/script_module_gui.rb +37 -11
- data/lib/cosmos/interfaces/cmd_tlm_server_interface.rb +3 -3
- data/lib/cosmos/interfaces/udp_interface.rb +9 -2
- data/lib/cosmos/packet_logs/packet_log_reader.rb +1 -0
- data/lib/cosmos/packets/commands.rb +70 -74
- data/lib/cosmos/packets/packet.rb +14 -7
- data/lib/cosmos/script/scripting.rb +9 -7
- data/lib/cosmos/system/system.rb +4 -0
- data/lib/cosmos/system/target.rb +2 -0
- data/lib/cosmos/tools/cmd_tlm_server/api.rb +10 -10
- data/lib/cosmos/tools/cmd_tlm_server/gui/interfaces_tab.rb +2 -2
- data/lib/cosmos/tools/cmd_tlm_server/interface_thread.rb +1 -1
- data/lib/cosmos/tools/packet_viewer/packet_viewer.rb +5 -15
- data/lib/cosmos/tools/script_runner/script_runner.rb +40 -21
- data/lib/cosmos/tools/table_manager/table.rb +2 -2
- data/lib/cosmos/tools/table_manager/table_config.rb +18 -10
- data/lib/cosmos/tools/table_manager/table_manager.rb +61 -59
- data/lib/cosmos/tools/table_manager/table_manager_core.rb +24 -56
- data/lib/cosmos/tools/test_runner/test_runner.rb +15 -10
- data/lib/cosmos/tools/tlm_viewer/widgets/checkbutton_widget.rb +9 -2
- data/lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb +1 -1
- data/lib/cosmos/tools/tlm_viewer/widgets/radiobutton_widget.rb +9 -1
- data/lib/cosmos/top_level.rb +5 -5
- data/lib/cosmos/version.rb +4 -4
- data/spec/config/config_parser_spec.rb +40 -2
- data/spec/packet_logs/packet_log_reader_spec.rb +66 -2
- data/spec/packets/packet_spec.rb +27 -0
- data/spec/script/scripting_spec.rb +7 -2
- data/spec/spec_helper.rb +4 -5
- data/spec/system/system_spec.rb +18 -0
- metadata +7 -7
data/demo/tools/DataViewer.bat
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat ruby.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" ruby.exe %~n0 %*
|
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
data/demo/tools/Launcher.bat
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
data/demo/tools/PacketViewer.bat
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
data/demo/tools/Replay.bat
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
data/demo/tools/ScpiTarget.bat
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat ruby.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" ruby.exe %~n0 %*
|
data/demo/tools/ScriptRunner.bat
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
data/demo/tools/TableManager.bat
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
data/demo/tools/TestRunner.bat
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
data/demo/tools/TlmExtractor.bat
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
data/demo/tools/TlmGrapher.bat
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
data/demo/tools/TlmViewer.bat
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
data/demo/tools/ToolLaunch.bat
CHANGED
@@ -10,8 +10,8 @@ IF NOT EXIST !TOOL! (
|
|
10
10
|
exit /b
|
11
11
|
)
|
12
12
|
|
13
|
-
IF NOT EXIST %~dp0tool_launch.rb (
|
14
|
-
echo %~dp0tool_launch.rb does not exist
|
13
|
+
IF NOT EXIST "%~dp0tool_launch.rb" (
|
14
|
+
echo "%~dp0tool_launch.rb" does not exist
|
15
15
|
pause
|
16
16
|
exit /b
|
17
17
|
)
|
@@ -42,11 +42,9 @@ goto loop
|
|
42
42
|
|
43
43
|
IF EXIST "!DESTINATION_DIR!Vendor\Ruby" (
|
44
44
|
:: Convert DESTINATION_DIR to absolute path
|
45
|
-
echo !DESTINATION_DIR!
|
46
45
|
pushd !DESTINATION_DIR!
|
47
46
|
SET "DESTINATION_DIR=!CD!\"
|
48
47
|
popd
|
49
|
-
echo !DESTINATION_DIR!
|
50
48
|
|
51
49
|
:: Set environmental variables
|
52
50
|
for /f "delims=" %%a in ('dir "!DESTINATION_DIR!Vendor\Ruby\lib\ruby\gems\2*" /on /ad /b') do set RUBY_ABI=%%a
|
@@ -63,8 +61,7 @@ IF EXIST "!DESTINATION_DIR!Vendor\Ruby" (
|
|
63
61
|
SET RUBYLIB=
|
64
62
|
|
65
63
|
:: Run tool using Installer Ruby
|
66
|
-
ECHO !
|
67
|
-
ECHO Starting tool using installer ruby in !DESTINATION_DIR!
|
64
|
+
ECHO Starting tool using installer ruby in "!DESTINATION_DIR!"
|
68
65
|
START "COSMOS" "!DESTINATION_DIR!Vendor\Ruby\bin\!RUBYEXE!" "!TOOL!" !PARAMS!
|
69
66
|
) else (
|
70
67
|
:: Use System Ruby and Environment
|
@@ -22,6 +22,7 @@ static ID id_method_packet_name_equals = 0;
|
|
22
22
|
static ID id_method_description_equals = 0;
|
23
23
|
static ID id_method_upcase = 0;
|
24
24
|
static ID id_method_clone = 0;
|
25
|
+
static ID id_method_clear = 0;
|
25
26
|
|
26
27
|
static ID id_ivar_id_items = 0;
|
27
28
|
static ID id_ivar_id_value = 0;
|
@@ -169,6 +170,7 @@ static VALUE description_equals(VALUE self, VALUE description) {
|
|
169
170
|
*
|
170
171
|
* @param received_time [Time] Time this packet was received */
|
171
172
|
static VALUE received_time_equals(VALUE self, VALUE received_time) {
|
173
|
+
volatile VALUE read_conversion_cache = rb_ivar_get(self, id_ivar_read_conversion_cache);
|
172
174
|
if (RTEST(received_time)) {
|
173
175
|
if (rb_funcall(received_time, id_method_class, 0) != rb_cTime) {
|
174
176
|
rb_raise(rb_eArgError, "received_time must be a Time but is a %s", RSTRING_PTR(rb_funcall(rb_funcall(received_time, id_method_class, 0), id_method_to_s, 0)));
|
@@ -177,6 +179,9 @@ static VALUE received_time_equals(VALUE self, VALUE received_time) {
|
|
177
179
|
} else {
|
178
180
|
rb_ivar_set(self, id_ivar_received_time, Qnil);
|
179
181
|
}
|
182
|
+
if (RTEST(read_conversion_cache)) {
|
183
|
+
rb_funcall(read_conversion_cache, id_method_clear, 0);
|
184
|
+
}
|
180
185
|
return rb_ivar_get(self, id_ivar_received_time);
|
181
186
|
}
|
182
187
|
|
@@ -185,10 +190,14 @@ static VALUE received_time_equals(VALUE self, VALUE received_time) {
|
|
185
190
|
* @param received_count [Integer] Number of times this packet has been
|
186
191
|
* received */
|
187
192
|
static VALUE received_count_equals(VALUE self, VALUE received_count) {
|
193
|
+
volatile VALUE read_conversion_cache = rb_ivar_get(self, id_ivar_read_conversion_cache);
|
188
194
|
if (rb_funcall(received_count, id_method_class, 0) != rb_cFixnum) {
|
189
195
|
rb_raise(rb_eArgError, "received_count must be a Fixnum but is a %s", RSTRING_PTR(rb_funcall(rb_funcall(received_count, id_method_class, 0), id_method_to_s, 0)));
|
190
196
|
}
|
191
197
|
rb_ivar_set(self, id_ivar_received_count, received_count);
|
198
|
+
if (RTEST(read_conversion_cache)) {
|
199
|
+
rb_funcall(read_conversion_cache, id_method_clear, 0);
|
200
|
+
}
|
192
201
|
return rb_ivar_get(self, id_ivar_received_count);
|
193
202
|
}
|
194
203
|
|
@@ -299,6 +308,7 @@ void Init_packet (void)
|
|
299
308
|
id_method_description_equals = rb_intern("description=");
|
300
309
|
id_method_upcase = rb_intern("upcase");
|
301
310
|
id_method_clone = rb_intern("clone");
|
311
|
+
id_method_clear = rb_intern("clear");
|
302
312
|
|
303
313
|
id_ivar_id_items = rb_intern("@id_items");
|
304
314
|
id_ivar_id_value = rb_intern("@id_value");
|
data/install/config/data/crc.txt
CHANGED
@@ -34,25 +34,25 @@
|
|
34
34
|
"config/tools/handbook_creator/default_toc.xsl" 0x4122A040
|
35
35
|
"config/tools/handbook_creator/handbook_creator.txt" 0x64E4B5CC
|
36
36
|
"config/tools/script_runner/script_runner.txt" 0x1EECD803
|
37
|
-
"tools/TlmExtractor.bat"
|
37
|
+
"tools/TlmExtractor.bat" 0x2B98E027
|
38
38
|
"tools/Launcher" 0xFD4E356C
|
39
39
|
"tools/TlmViewer" 0xFE723189
|
40
40
|
"tools/CmdTlmServer" 0x4C7A4FCB
|
41
41
|
"tools/ScriptRunner" 0x20F38758
|
42
42
|
"tools/tool_launch.rb" 0x0BDB6696
|
43
43
|
"tools/LimitsMonitor" 0x04FD96D8
|
44
|
-
"tools/Replay.bat"
|
45
|
-
"tools/CmdExtractor.bat"
|
46
|
-
"tools/TlmViewer.bat"
|
44
|
+
"tools/Replay.bat" 0x2B98E027
|
45
|
+
"tools/CmdExtractor.bat" 0x2B98E027
|
46
|
+
"tools/TlmViewer.bat" 0x2B98E027
|
47
47
|
"tools/DataViewer" 0x9D20734C
|
48
|
-
"tools/ScriptRunner.bat"
|
49
|
-
"tools/CmdTlmServer.bat"
|
48
|
+
"tools/ScriptRunner.bat" 0x2B98E027
|
49
|
+
"tools/CmdTlmServer.bat" 0x2B98E027
|
50
50
|
"tools/Replay" 0xAC00D2AD
|
51
|
-
"tools/HandbookCreator.bat"
|
51
|
+
"tools/HandbookCreator.bat" 0x2B98E027
|
52
52
|
"tools/PacketViewer" 0xF23A40BB
|
53
53
|
"tools/TlmGrapher" 0x9464F502
|
54
|
-
"tools/DataViewer.bat"
|
55
|
-
"tools/LimitsMonitor.bat"
|
54
|
+
"tools/DataViewer.bat" 0x2B98E027
|
55
|
+
"tools/LimitsMonitor.bat" 0x2B98E027
|
56
56
|
"tools/mac/TestRunner.app/Contents/Info.plist" 0x482B3BA5
|
57
57
|
"tools/mac/TestRunner.app/Contents/Resources/appIcon.icns" 0xC8D32D55
|
58
58
|
"tools/mac/TestRunner.app/Contents/MacOS/tool_launch.rb" 0x0BDB6696
|
@@ -133,19 +133,19 @@
|
|
133
133
|
"tools/mac/DataViewer.app/Contents/MacOS/DataViewer.rb" 0x9D20734C
|
134
134
|
"tools/mac/DataViewer.app/Contents/MacOS/tool_launch.rb" 0x0BDB6696
|
135
135
|
"tools/mac/DataViewer.app/Contents/MacOS/main.sh" 0xD40D9D6C
|
136
|
-
"tools/TableManager.bat"
|
136
|
+
"tools/TableManager.bat" 0x2B98E027
|
137
137
|
"tools/HandbookCreator" 0xD927814C
|
138
|
-
"tools/TestRunner.bat"
|
138
|
+
"tools/TestRunner.bat" 0x2B98E027
|
139
139
|
"tools/CmdSender" 0x10346CF4
|
140
|
-
"tools/OpenGLBuilder.bat"
|
140
|
+
"tools/OpenGLBuilder.bat" 0x2B98E027
|
141
141
|
"tools/TableManager" 0x71F21C88
|
142
142
|
"tools/TestRunner" 0x0B0E0B8B
|
143
|
-
"tools/TlmGrapher.bat"
|
143
|
+
"tools/TlmGrapher.bat" 0x2B98E027
|
144
144
|
"tools/TlmExtractor" 0x1EC4639A
|
145
|
-
"tools/PacketViewer.bat"
|
146
|
-
"tools/Launcher.bat"
|
147
|
-
"tools/ToolLaunch.bat"
|
145
|
+
"tools/PacketViewer.bat" 0x2B98E027
|
146
|
+
"tools/Launcher.bat" 0x2B98E027
|
147
|
+
"tools/ToolLaunch.bat" 0x4E6549E0
|
148
148
|
"tools/CmdExtractor" 0x96E82AC3
|
149
149
|
"tools/OpenGLBuilder" 0x585EA691
|
150
|
-
"tools/CmdSender.bat"
|
150
|
+
"tools/CmdSender.bat" 0x2B98E027
|
151
151
|
"procedures/README.txt" 0x93B2C07E
|
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
data/install/tools/CmdSender.bat
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
data/install/tools/Launcher.bat
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|
@@ -1,9 +1,9 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
|
-
IF NOT EXIST %~dp0ToolLaunch.bat (
|
4
|
-
echo %~dp0ToolLaunch.bat does not exist
|
3
|
+
IF NOT EXIST "%~dp0ToolLaunch.bat" (
|
4
|
+
echo "%~dp0ToolLaunch.bat" does not exist
|
5
5
|
pause
|
6
6
|
exit /b
|
7
7
|
)
|
8
8
|
|
9
|
-
call %~dp0ToolLaunch.bat rubyw.exe %~n0 %*
|
9
|
+
call "%~dp0ToolLaunch.bat" rubyw.exe %~n0 %*
|