Skip to content

Commit

Permalink
Merge pull request #78 from pgrimaud/master
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
astrogeco authored May 8, 2020
2 parents c513574 + 7b32ef5 commit 043a33d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion RoutingService.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
udpRecvPort = 1235

#
# Receive telemetry packets, apply the appropiate header
# Receive telemetry packets, apply the appropriate header
# and publish the message with zeroMQ
#
class RoutingService(QtCore.QThread):
Expand Down
4 changes: 2 additions & 2 deletions Subsystems/cmdGui/CHeaderParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
# the user for necessary information, and parsing the cFS header files, this
# program will generate up to two different "pickle" files for the ground
# system to use (for information about pickle files and the pickle python
# libary, see the link here: https://docs.python.org/2/library/pickle.html).
# library, see the link here: https://docs.python.org/2/library/pickle.html).
# These files will be placed in CommandFiles/ or ParameterFiles/.
#
# Usage:
Expand Down Expand Up @@ -422,7 +422,7 @@ def getFileList(self, filename='CHeaderParser-hdr-paths.txt'):
# Add original data type (C data type) to list
dataTypesOrig.append(line_split[0])

# Get rid of any occurance of ';' (at the end of the line)
# Get rid of any occurrence of ';' (at the end of the line)
paramNames.append(re.sub(';','',line_split[1]))

# Not sure about why we are keeping track of this yet
Expand Down
2 changes: 1 addition & 1 deletion Subsystems/cmdGui/CommandSystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def ProcessQuickButton(self, idx):
Command = CommandSystem()

#
# Read in the contents of the telemetry packet defintion
# Read in the contents of the telemetry packet definition
#
cmdPageIsValid = []
cmdPageDesc = []
Expand Down
2 changes: 1 addition & 1 deletion Subsystems/cmdGui/Parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def ProcessSendButton(self):
elif opt in ("-d", "--descrip"):
cmdDesc = arg # command name, eg No-Op
elif opt in ("-i", "--idx"):
idx = int(arg) # comand index in command definition file
idx = int(arg) # command index in command definition file
elif opt in ("-h", "--host"):
pageAddress = arg # send to address
elif opt in ("-p", "--port"):
Expand Down
2 changes: 1 addition & 1 deletion Subsystems/tlmGUI/GenericTelemetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def usage():
Telem.ui.packetId.display(appId)

#
# Read in the contents of the telemetry packet defintion
# Read in the contents of the telemetry packet definition
#
tlmItemIsValid = []
tlmItemDesc = []
Expand Down
2 changes: 1 addition & 1 deletion Subsystems/tlmGUI/TelemetrySystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def run(self):

print ('Telemetry System started. Subscribed to ' + subscription)
#
# Read in the contents of the telemetry packet defintion
# Read in the contents of the telemetry packet definition
#
tlmPageIsValid = []
tlmPageDesc = []
Expand Down

0 comments on commit 043a33d

Please sign in to comment.