openc3-cosmos-fakesat 1.0.4 → 1.0.6
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/targets/FAKESAT/cmd_tlm/_ccsds_cmd.txt +2 -2
- data/targets/FAKESAT/cmd_tlm/cmds.txt +17 -17
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa7c337bf1bd4a0dee5f4cae1c678b30cf30362e1f04f30320f4a799862b05c5
|
4
|
+
data.tar.gz: 4b71541e38959e6e693b89a95f4d5608cc87b9e2fa33303f5d3d92aa1ff6953a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2256d3abd062a0897511bf2ebcac98df12caa4887051b53198764d5fd04ee5dfb1c484a26464b7e838aa8e60569070e981347252f984858e4d0bec496f17670d
|
7
|
+
data.tar.gz: 9e1e408813803f76d0d79164c3fa4f663b49a35ab3a9acf35c34bee284de1c802074f3687ef0260a056c1f76aa4df929e77f3c831e99075bc6fb3d4d3b4f24d3
|
@@ -1,8 +1,8 @@
|
|
1
1
|
PARAMETER CCSDSVER 0 3 UINT 0 0 0 "CCSDS primary header version number"
|
2
2
|
PARAMETER CCSDSTYPE 3 1 UINT 1 1 1 "CCSDS primary header packet type"
|
3
3
|
PARAMETER CCSDSSHF 4 1 UINT 0 0 0 "CCSDS primary header secondary header flag"
|
4
|
-
ID_PARAMETER CCSDSAPID 5 11 UINT 0 2047
|
4
|
+
ID_PARAMETER CCSDSAPID 5 11 UINT 0 2047 <%= apid %> "CCSDS primary header application id"
|
5
5
|
PARAMETER CCSDSSEQFLAGS 16 2 UINT 3 3 3 "CCSDS primary header sequence flags"
|
6
6
|
PARAMETER CCSDSSEQCNT 18 14 UINT 0 16383 0 "CCSDS primary header sequence count"
|
7
7
|
OVERFLOW TRUNCATE
|
8
|
-
PARAMETER CCSDSLENGTH 32 16 UINT MIN MAX
|
8
|
+
PARAMETER CCSDSLENGTH 32 16 UINT MIN MAX 0 "CCSDS primary header packet length"
|
@@ -1,30 +1,30 @@
|
|
1
1
|
COMMAND <%= target_name %> NOOP BIG_ENDIAN "NOOP"
|
2
|
-
<%= render "_ccsds_cmd.txt", locals: {
|
2
|
+
<%= render "_ccsds_cmd.txt", locals: {apid: 1} %>
|
3
3
|
APPEND_PARAMETER IGNORE 8 UINT MIN MAX 0 "Ignored item"
|
4
4
|
|
5
5
|
COMMAND <%= target_name %> COLLECT BIG_ENDIAN "Starts a collect on the <%= target_name %> target"
|
6
|
-
<%= render "_ccsds_cmd.txt", locals: {
|
7
|
-
|
6
|
+
<%= render "_ccsds_cmd.txt", locals: {apid: 2} %>
|
7
|
+
APPEND_PARAMETER TYPE 16 UINT MIN MAX 0 "Collect type"
|
8
8
|
REQUIRED
|
9
9
|
STATE NORMAL 0
|
10
10
|
STATE SPECIAL 1 HAZARDOUS
|
11
|
-
|
12
|
-
|
11
|
+
APPEND_PARAMETER DURATION 32 FLOAT 0.0 10.0 1.0 "Collect duration"
|
12
|
+
APPEND_PARAMETER OPCODE 8 UINT 0x0 0xFF 0xAB "Collect opcode"
|
13
13
|
FORMAT_STRING "0x%0X"
|
14
|
-
|
14
|
+
APPEND_PARAMETER TEMP 32 FLOAT 0.0 25.0 0.0 "Collect temperature"
|
15
15
|
UNITS Celsius C
|
16
16
|
|
17
17
|
COMMAND <%= target_name %> ABORT BIG_ENDIAN "Aborts a collect on the <%= target_name %> instrument"
|
18
|
-
<%= render "_ccsds_cmd.txt", locals: {
|
18
|
+
<%= render "_ccsds_cmd.txt", locals: {apid: 3} %>
|
19
19
|
APPEND_PARAMETER IGNORE 8 UINT MIN MAX 0 "Ignored item"
|
20
20
|
|
21
21
|
COMMAND <%= target_name %> CLEAR BIG_ENDIAN "Clears counters on the <%= target_name %> instrument"
|
22
22
|
HAZARDOUS "Clearing counters may lose valuable information."
|
23
|
-
<%= render "_ccsds_cmd.txt", locals: {
|
23
|
+
<%= render "_ccsds_cmd.txt", locals: {apid: 4} %>
|
24
24
|
APPEND_PARAMETER IGNORE 8 UINT MIN MAX 0 "Ignored item"
|
25
25
|
|
26
26
|
COMMAND <%= target_name %> SET_MODE BIG_ENDIAN "Change spacecraft mode"
|
27
|
-
<%= render "_ccsds_cmd.txt", locals: {
|
27
|
+
<%= render "_ccsds_cmd.txt", locals: {apid: 5} %>
|
28
28
|
APPEND_PARAMETER MODE 8 UINT 0 2 0 "Desired Mode"
|
29
29
|
REQUIRED
|
30
30
|
STATE SAFE 0
|
@@ -32,44 +32,44 @@ COMMAND <%= target_name %> SET_MODE BIG_ENDIAN "Change spacecraft mode"
|
|
32
32
|
STATE OPERATE 2
|
33
33
|
|
34
34
|
COMMAND <%= target_name %> SLRPNLDEPLOY BIG_ENDIAN "Deploy solar array panel"
|
35
|
-
<%= render "_ccsds_cmd.txt", locals: {
|
35
|
+
<%= render "_ccsds_cmd.txt", locals: {apid: 6} %>
|
36
36
|
APPEND_PARAMETER NUM 8 UINT 1 2 1 "Solar Array Number"
|
37
37
|
|
38
38
|
COMMAND <%= target_name %> SLRPNLSTOW BIG_ENDIAN "Stow solar array panel"
|
39
|
-
<%= render "_ccsds_cmd.txt", locals: {
|
39
|
+
<%= render "_ccsds_cmd.txt", locals: {apid: 7} %>
|
40
40
|
APPEND_PARAMETER NUM 8 UINT 1 2 1 "Solar Array Number"
|
41
41
|
|
42
42
|
COMMAND <%= target_name %> SLRPNLANG BIG_ENDIAN "Set Solar Array Panel Angle"
|
43
|
-
<%= render "_ccsds_cmd.txt", locals: {
|
43
|
+
<%= render "_ccsds_cmd.txt", locals: {apid: 8} %>
|
44
44
|
APPEND_PARAMETER NUM 8 UINT 1 2 1 "Solar Array Number"
|
45
45
|
APPEND_PARAMETER ANG 32 FLOAT 0 360 0 "Solar Array Angle"
|
46
46
|
UNITS DEGREES DEG
|
47
47
|
|
48
48
|
COMMAND <%= target_name %> TABLE_LOAD BIG_ENDIAN "Load table"
|
49
|
-
<%= render "_ccsds_cmd.txt", locals: {
|
49
|
+
<%= render "_ccsds_cmd.txt", locals: {apid: 9} %>
|
50
50
|
APPEND_PARAMETER DATA 80 BLOCK "" "Table data"
|
51
51
|
|
52
52
|
COMMAND <%= target_name %> HTR_CTRL BIG_ENDIAN "Heater Control ON/OFF"
|
53
|
-
<%= render "_ccsds_cmd.txt", locals: {
|
53
|
+
<%= render "_ccsds_cmd.txt", locals: {apid: 10} %>
|
54
54
|
APPEND_PARAMETER NUM 8 UINT 1 2 1 "Heater Number"
|
55
55
|
APPEND_PARAMETER STATE 8 UINT 0 1 0 "Desired State"
|
56
56
|
STATE OFF 0 HAZARDOUS
|
57
57
|
STATE ON 1
|
58
58
|
|
59
59
|
COMMAND <%= target_name %> HTR_STATE BIG_ENDIAN "Heater State ON/OFF"
|
60
|
-
<%= render "_ccsds_cmd.txt", locals: {
|
60
|
+
<%= render "_ccsds_cmd.txt", locals: {apid: 11} %>
|
61
61
|
APPEND_PARAMETER NUM 8 UINT 1 2 1 "Heater Number"
|
62
62
|
APPEND_PARAMETER STATE 8 UINT 0 1 0 "Desired State"
|
63
63
|
STATE OFF 0
|
64
64
|
STATE ON 1
|
65
65
|
|
66
66
|
COMMAND <%= target_name %> HTR_SETPT BIG_ENDIAN "Heater Setpoint"
|
67
|
-
<%= render "_ccsds_cmd.txt", locals: {
|
67
|
+
<%= render "_ccsds_cmd.txt", locals: {apid: 12} %>
|
68
68
|
APPEND_PARAMETER NUM 8 UINT 1 2 1 "Heater Number"
|
69
69
|
APPEND_PARAMETER SETPT 32 FLOAT -100 100 0 "Setpoint"
|
70
70
|
|
71
71
|
COMMAND <%= target_name %> ADCS_CTRL BIG_ENDIAN "ADCS Control of Solar Panel Angle ON/OFF"
|
72
|
-
<%= render "_ccsds_cmd.txt", locals: {
|
72
|
+
<%= render "_ccsds_cmd.txt", locals: {apid: 13} %>
|
73
73
|
APPEND_PARAMETER STATE 8 UINT 0 1 0 "Desired State"
|
74
74
|
STATE OFF 0 HAZARDOUS
|
75
75
|
STATE ON 1
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openc3-cosmos-fakesat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Melton
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2023-01-
|
12
|
+
date: 2023-01-25 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: " cosmos-fakesat plugin facilitating COSMOS user training\n"
|
15
15
|
email:
|