Skip to content

Commit 8ad565c

Browse files
committed
WIP: Enhancement nasa#103 - updates to miniCmdUtil
1 parent a0d1872 commit 8ad565c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Subsystems/cmdGui/MiniCmdUtil.py

+2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def __init__(self,
4545
cmdCode=None,
4646
payload=None):
4747
endians = {"BE": ">", "LE": "<"}
48+
self.dataTypes = {"byte": 8, "half": 16, "long": 32}
4849

4950
self.host = host
5051
self.port = port
@@ -65,5 +66,6 @@ def assemblePriHeader(self):
6566
if self.hdrVer == 2:
6667
totalPacketLen += len(self.ccsdsExt)
6768

69+
6870
def assemblePayload(self):
6971
pass

0 commit comments

Comments
 (0)