openc3-cosmos-demo 6.9.0 → 6.9.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/targets/INST/procedures/queue.rb +5 -0
- data/targets/INST2/procedures/queue.py +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b66743a1749398b5302e60eb9c16f9d24ddb4410aeaa24409160d7ca86225735
|
4
|
+
data.tar.gz: b4db0c9e1b8d5e187b93d1cc5c45c737ef03bf2cde1ae995c61f94085df9f189
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '02892fd1c5003d88220b2054f83521c4c361876d2f72596312dddb480f14af83910c5d011f1fbc73098baffb92ac35000ffeaf749e96bd4d9bd6e93fa56ec297'
|
7
|
+
data.tar.gz: 011402a5f6d302bd52efeb7a5a1e9552ba52cf94e38a70f6fd1baae8b857815c531321674dae6e5be38b91ee5f55bf9e7f404c726f4b84498108044fe94b9976
|
@@ -1,4 +1,6 @@
|
|
1
1
|
queue_create("QUEUEAPI")
|
2
|
+
cmd("INST MEMLOAD with DATA 0xDEAD", queue: "QUEUEAPI")
|
3
|
+
cmd("INST MEMLOAD with DATA 0xBEEF", queue: "QUEUEAPI")
|
2
4
|
cmd("INST ABORT", queue: "QUEUEAPI")
|
3
5
|
cmd("INST ARYCMD with ARRAY [1,2,3], CRC 0", queue: "QUEUEAPI")
|
4
6
|
cmd("INST ASCIICMD with STRING 'NOOP', BINARY 0xDEADBEEF, ASCII '0xDEADBEEF'", queue: "QUEUEAPI")
|
@@ -10,6 +12,9 @@ cmd("INST SETPARAMS with VALUE1 1, VALUE2 1, VALUE3 1, VALUE4 1, VALUE5 1, BIGIN
|
|
10
12
|
cmd("INST SLRPNLDEPLOY", queue: "QUEUEAPI")
|
11
13
|
cmd("INST SLRPNLRESET", queue: "QUEUEAPI")
|
12
14
|
cmd("INST TIME_OFFSET with SECONDS 0, IP_ADDRESS 127.0.0.1", queue: "QUEUEAPI")
|
15
|
+
|
16
|
+
queue_remove("QUEUEAPI", 2) # Should remove INST MEMLOAD with DATA 0xBEEF
|
17
|
+
queue_exec("QUEUEAPI") # Should execute INST MEMLOAD with DATA 0xDEAD
|
13
18
|
wait
|
14
19
|
|
15
20
|
queue_disable("QUEUEAPI")
|
@@ -1,4 +1,6 @@
|
|
1
1
|
queue_create("QUEUEAPI")
|
2
|
+
cmd("INST MEMLOAD with DATA 0xDEAD", queue="QUEUEAPI")
|
3
|
+
cmd("INST MEMLOAD with DATA 0xBEEF", queue="QUEUEAPI")
|
2
4
|
cmd("INST ABORT", queue="QUEUEAPI")
|
3
5
|
cmd("INST ARYCMD with ARRAY [1,2,3], CRC 0", queue="QUEUEAPI")
|
4
6
|
cmd("INST ASCIICMD with STRING 'NOOP', BINARY 0xDEADBEEF, ASCII '0xDEADBEEF'", queue="QUEUEAPI")
|
@@ -10,6 +12,8 @@ cmd("INST SETPARAMS with VALUE1 1, VALUE2 1, VALUE3 1, VALUE4 1, VALUE5 1, BIGIN
|
|
10
12
|
cmd("INST SLRPNLDEPLOY", queue="QUEUEAPI")
|
11
13
|
cmd("INST SLRPNLRESET", queue="QUEUEAPI")
|
12
14
|
cmd("INST TIME_OFFSET with SECONDS 0, IP_ADDRESS 127.0.0.1", queue="QUEUEAPI")
|
15
|
+
queue_remove("QUEUEAPI", 2) # Should remove INST MEMLOAD with DATA 0xBEEF
|
16
|
+
queue_exec("QUEUEAPI") # Should execute INST MEMLOAD with DATA 0xDEAD
|
13
17
|
wait()
|
14
18
|
|
15
19
|
queue_disable("QUEUEAPI")
|