jmason86 / MinXSS_Beacon_Decoder

Beacon decoder for the MinXSS CubeSat in space; MinXSS-2 launch on 2018-11-19
http://lasp.colorado.edu/home/minxss
GNU General Public License v3.0
11 stars 6 forks source link

'connect_port_get_packet' is not defined #8

Closed K4KDR closed 7 years ago

K4KDR commented 7 years ago

In commit 72b2df8, when the "Connect" button is clicked, no TCP connection is made to the software modem on the specified port. In the terminal window where minxss_beacon_decoder.py was launched, the following is logged:

  File "minxss_beacon_decoder.py", line 83, in connectClicked
    connectedPort = connect_port_get_packet.connect_socket(ipAddress, port, self.log)
NameError: global name 'connect_port_get_packet' is not defined
jmason86 commented 7 years ago

Whoops! That's because I forgot to uncomment the import statement for connect_port_get_packet after I was debugging the pyinstaller stuff (to create executables). New commit up with this line uncommented.