Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #78

Merged
merged 1 commit into from
May 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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