Skip to content

Commit

Permalink
Merge pull request #120 from nasa/integration-candidate
Browse files Browse the repository at this point in the history
Integration Candidate 2020-07-29
  • Loading branch information
astrogeco authored Aug 5, 2020
2 parents 9b05270 + e7ebb1d commit 5e879b9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 20 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ See [Guide-GroundSystem.md](https://github.com/nasa/cFS-GroundSystem/blob/master

## Version History

### Development Build: 2.1.0+dev85

- Remove unused code/packages to fix LGTM warnings
- See <https://github.com/nasa/cFS-GroundSystem/pull/120>

### Development Build: 2.1.0+dev76

- Fixes more lgtm warnings
Expand Down
8 changes: 0 additions & 8 deletions Subsystems/cmdGui/Parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
import getopt
import pickle
import re
import shlex
import subprocess
import sys
from pathlib import Path

Expand Down Expand Up @@ -68,12 +66,6 @@ def ProcessSendButton(self):
self.mcu = MiniCmdUtil(pageAddress, pagePort, pageEndian, pagePktId,
cmdCode, param_string.strip())
sendSuccess = self.mcu.sendPacket()
# launch_string = (
# f'{ROOTDIR.parent}/cmdUtil/cmdUtil --host={pageAddress} '
# f'--port={pagePort} --pktid={pagePktId} --endian={pageEndian} '
# f'--cmdcode={cmdCode} {param_string.strip()}')result
# cmd_args = shlex.split(launch_string)
# subprocess.Popen(cmd_args)
if sendSuccess:
self.status_box.setText('Command sent!')
else:
Expand Down
5 changes: 0 additions & 5 deletions Subsystems/cmdGui/UdpCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,6 @@ def __init__(self):
self.setWindowTitle(pageTitle)
self.mcu = None

# for j in range(self.tblCommands.rowCount()):
# btn = self.tblCommands.cellWidget(j, 1)
# btn.clicked.connect(
# lambda _, x=j: self.ProcessSendButtonGeneric(x))

#
# Determines if command requires parameters
#
Expand Down
5 changes: 0 additions & 5 deletions Subsystems/tlmGUI/TelemetrySystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,6 @@ def __init__(self):
self.pktCount = 0
self.subscription = None

# for k in range(21):
# pushButton = getattr(self, f"pushButton_{k}")
# pushButton.clicked.connect(
# lambda _, x=k: self.ProcessButtonGeneric(x))

#
# convert a string of binary bytes to ascii hex
#
Expand Down
4 changes: 2 additions & 2 deletions _version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#

# Development Build Macro Definitions
_cFS_GrndSys_build_number = 76
_cFS_GrndSys_build_number = 85
_cFS_GrndSys_build_baseline = "v2.1.0"

# Version Number Definitions
Expand All @@ -35,7 +35,7 @@
__version__ = "+dev".join((_cFS_GrndSys_build_baseline,str(_cFS_GrndSys_build_number)))

# Development Build format for __version_string__
_version_string = " cFS-GroundSystem Development Build\n " + __version__ + " (Codename: Bootes)"
_version_string = " cFS-GroundSystem DEVELOPMENT BUILD\n " + __version__

# Use the following templates for Official Releases ONLY

Expand Down

0 comments on commit 5e879b9

Please sign in to comment.