Skip to content

Commit

Permalink
Merge pull request #20 from spacefisch/develop
Browse files Browse the repository at this point in the history
Bugfix for UDP communication interface
  • Loading branch information
robamu authored Jul 12, 2021
2 parents 896abfe + c02b03a commit 25c4e79
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/tmtccmd/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
VERSION_NAME = "tmtccmd"
VERSION_MAJOR = 1
VERSION_MINOR = 7
VERSION_REVISION = 1
VERSION_REVISION = 2

# I think this needs to be in string representation to be parsed so we can't
# use a formatted string here.
__version__ = "1.7.1"
__version__ = "1.7.2"
2 changes: 1 addition & 1 deletion src/tmtccmd/com_if/tcpip_udp_com_if.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def open(self, args: any = None):
from tmtccmd.tc.service_17_test import pack_service17_ping_command
# Send ping command immediately so the reception address is known for UDP
ping_cmd = pack_service17_ping_command(ssc=0)
self.send_telecommand(ping_cmd.pack(), ping_cmd)
self.send(ping_cmd.pack())

def close(self, args: any = None) -> None:
if self.udp_socket is not None:
Expand Down

0 comments on commit 25c4e79

Please sign in to comment.