2021-12-25 16:05:38 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import re
|
2022-01-07 10:25:28 +00:00
|
|
|
import structlog
|
2021-12-25 16:05:38 +00:00
|
|
|
import atexit
|
2021-12-28 16:05:48 +00:00
|
|
|
import subprocess
|
2021-12-25 16:05:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
# try importing hamlib
|
|
|
|
try:
|
|
|
|
# get python version
|
|
|
|
python_version = str(sys.version_info[0]) + "." + str(sys.version_info[1])
|
|
|
|
|
|
|
|
# installation path for Ubuntu 20.04 LTS python modules
|
|
|
|
sys.path.append('/usr/local/lib/python'+ python_version +'/site-packages')
|
|
|
|
# installation path for Ubuntu 20.10 +
|
|
|
|
sys.path.append('/usr/local/lib/')
|
2021-12-27 16:00:00 +00:00
|
|
|
# installation path for Suse
|
|
|
|
sys.path.append('/usr/local/lib64/python'+ python_version +'/site-packages')
|
2021-12-25 16:05:38 +00:00
|
|
|
import Hamlib
|
|
|
|
|
|
|
|
# https://stackoverflow.com/a/4703409
|
|
|
|
hamlib_version = re.findall(r"[-+]?\d*\.?\d+|\d+", Hamlib.cvar.hamlib_version)
|
|
|
|
hamlib_version = float(hamlib_version[0])
|
|
|
|
|
|
|
|
min_hamlib_version = 4.1
|
|
|
|
if hamlib_version > min_hamlib_version:
|
|
|
|
structlog.get_logger("structlog").info("[TNC] Hamlib found", version=hamlib_version)
|
|
|
|
else:
|
|
|
|
structlog.get_logger("structlog").warning("[TNC] Hamlib outdated", found=hamlib_version, recommend=min_hamlib_version)
|
|
|
|
except Exception as e:
|
2021-12-28 16:05:48 +00:00
|
|
|
structlog.get_logger("structlog").warning("[TNC] Python Hamlib binding not found", error=e)
|
|
|
|
try:
|
|
|
|
structlog.get_logger("structlog").warning("[TNC] Trying to open rigctl", error=e)
|
|
|
|
rigctl = subprocess.Popen("rigctl -V",shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, text=True)
|
|
|
|
hamlib_version = rigctl.stdout.readline()
|
|
|
|
hamlib_version = hamlib_version.split(' ')
|
|
|
|
print(hamlib_version[0])
|
|
|
|
print(hamlib_version[1])
|
|
|
|
print(hamlib_version[2])
|
|
|
|
if hamlib_version[1] == 'Hamlib':
|
|
|
|
rigctl = True
|
|
|
|
print(hamlib_version)
|
|
|
|
else:
|
|
|
|
rigctl = False
|
|
|
|
raise Exception
|
|
|
|
except Exception as e:
|
|
|
|
structlog.get_logger("structlog").critical("[TNC] HAMLIB NOT INSTALLED", error=e)
|
2021-12-25 16:05:38 +00:00
|
|
|
|
|
|
|
class radio:
|
|
|
|
def __init__(self):
|
|
|
|
|
2021-12-26 09:43:55 +00:00
|
|
|
self.devicename = ''
|
2021-12-25 16:05:38 +00:00
|
|
|
self.devicenumber = ''
|
2021-12-26 09:43:55 +00:00
|
|
|
self.deviceport = ''
|
2021-12-27 11:30:43 +00:00
|
|
|
self.serialspeed = ''
|
2021-12-26 09:43:55 +00:00
|
|
|
self.hamlib_ptt_type = ''
|
2021-12-25 16:05:38 +00:00
|
|
|
self.my_rig = ''
|
2021-12-27 11:30:43 +00:00
|
|
|
self.pttport = ''
|
|
|
|
self.data_bits = ''
|
|
|
|
self.stop_bits = ''
|
|
|
|
self.handshake = ''
|
|
|
|
|
|
|
|
def open_rig(self, devicename, deviceport, hamlib_ptt_type, serialspeed, pttport, data_bits, stop_bits, handshake):
|
2021-12-25 16:05:38 +00:00
|
|
|
|
|
|
|
self.devicename = devicename
|
2021-12-28 16:05:48 +00:00
|
|
|
self.deviceport = str(deviceport)
|
2021-12-26 14:42:50 +00:00
|
|
|
self.serialspeed = str(serialspeed) # we need to ensure this is a str, otherwise set_conf functions are crashing
|
2021-12-28 16:05:48 +00:00
|
|
|
self.hamlib_ptt_type = str(hamlib_ptt_type)
|
|
|
|
self.pttport = str(pttport)
|
|
|
|
self.data_bits = str(data_bits)
|
|
|
|
self.stop_bits = str(stop_bits)
|
|
|
|
self.handshake = str(handshake)
|
2021-12-25 16:05:38 +00:00
|
|
|
|
2021-12-27 11:30:43 +00:00
|
|
|
|
2021-12-25 16:05:38 +00:00
|
|
|
# try to init hamlib
|
|
|
|
try:
|
|
|
|
Hamlib.rig_set_debug(Hamlib.RIG_DEBUG_NONE)
|
|
|
|
|
|
|
|
# get devicenumber by looking for deviceobject in Hamlib module
|
|
|
|
try:
|
|
|
|
self.devicenumber = int(getattr(Hamlib, self.devicename))
|
2021-12-28 16:05:48 +00:00
|
|
|
print(self.devicenumber)
|
2021-12-25 16:05:38 +00:00
|
|
|
except:
|
|
|
|
structlog.get_logger("structlog").error("[DMN] Hamlib: rig not supported...")
|
|
|
|
self.devicenumber = 0
|
|
|
|
|
|
|
|
|
|
|
|
self.my_rig = Hamlib.Rig(self.devicenumber)
|
|
|
|
self.my_rig.set_conf("rig_pathname", self.deviceport)
|
|
|
|
self.my_rig.set_conf("retry", "5")
|
2021-12-26 14:42:50 +00:00
|
|
|
self.my_rig.set_conf("serial_speed", self.serialspeed)
|
2021-12-27 11:30:43 +00:00
|
|
|
self.my_rig.set_conf("serial_handshake", self.handshake)
|
|
|
|
self.my_rig.set_conf("stop_bits", self.stop_bits)
|
|
|
|
self.my_rig.set_conf("data_bits", self.data_bits)
|
|
|
|
self.my_rig.set_conf("ptt_pathname", self.pttport)
|
|
|
|
|
2021-12-28 16:05:48 +00:00
|
|
|
|
|
|
|
print(self.my_rig.get_conf("rig_pathname"))
|
|
|
|
print(self.my_rig.get_conf("retry"))
|
|
|
|
print(self.my_rig.get_conf("serial_speed"))
|
|
|
|
print(self.my_rig.get_conf("serial_handshake"))
|
|
|
|
print(self.my_rig.get_conf("stop_bits"))
|
|
|
|
print(self.my_rig.get_conf("data_bits"))
|
|
|
|
print(self.my_rig.get_conf("ptt_pathname"))
|
|
|
|
|
|
|
|
|
2021-12-27 11:30:43 +00:00
|
|
|
|
2021-12-25 16:05:38 +00:00
|
|
|
if self.hamlib_ptt_type == 'RIG':
|
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_RIG
|
2021-12-26 09:22:02 +00:00
|
|
|
self.my_rig.set_conf("ptt_type", 'RIG')
|
2021-12-25 16:05:38 +00:00
|
|
|
|
2021-12-27 11:30:43 +00:00
|
|
|
elif self.hamlib_ptt_type == 'USB':
|
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PORT_USB
|
|
|
|
self.my_rig.set_conf("ptt_type", 'USB')
|
|
|
|
|
|
|
|
|
2021-12-25 16:05:38 +00:00
|
|
|
elif self.hamlib_ptt_type == 'DTR-H':
|
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_SERIAL_DTR
|
|
|
|
self.my_rig.set_conf("dtr_state", "HIGH")
|
|
|
|
self.my_rig.set_conf("ptt_type", "DTR")
|
|
|
|
|
|
|
|
elif self.hamlib_ptt_type == 'DTR-L':
|
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_SERIAL_DTR
|
|
|
|
self.my_rig.set_conf("dtr_state", "LOW")
|
|
|
|
self.my_rig.set_conf("ptt_type", "DTR")
|
|
|
|
|
|
|
|
elif self.hamlib_ptt_type == 'RTS':
|
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_SERIAL_RTS
|
|
|
|
self.my_rig.set_conf("dtr_state", "OFF")
|
|
|
|
self.my_rig.set_conf("ptt_type", "RTS")
|
|
|
|
|
|
|
|
elif self.hamlib_ptt_type == 'PARALLEL':
|
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_PARALLEL
|
|
|
|
|
|
|
|
elif self.hamlib_ptt_type == 'MICDATA':
|
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_RIG_MICDATA
|
|
|
|
|
|
|
|
elif self.hamlib_ptt_type == 'CM108':
|
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_CM108
|
|
|
|
|
|
|
|
else: #self.hamlib_ptt_type == 'RIG_PTT_NONE':
|
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_NONE
|
|
|
|
|
|
|
|
|
|
|
|
self.my_rig.open()
|
|
|
|
atexit.register(self.my_rig.close)
|
2021-12-26 08:55:20 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
# lets determine the error message when opening rig
|
|
|
|
error = str(Hamlib.rigerror(my_rig.error_status)).splitlines()
|
|
|
|
error = error[1].split('err=')
|
|
|
|
error = error[1]
|
|
|
|
|
|
|
|
if error == 'Permission denied':
|
|
|
|
structlog.get_logger("structlog").error("[DMN] Hamlib has no permissions", e = error)
|
|
|
|
help_url = 'https://github.com/DJ2LS/FreeDATA/wiki/UBUNTU-Manual-installation#1-permissions'
|
|
|
|
structlog.get_logger("structlog").error("[DMN] HELP:", check = help_url)
|
|
|
|
except:
|
|
|
|
structlog.get_logger("structlog").info("[DMN] Hamlib device openend", status='SUCCESS')
|
|
|
|
|
|
|
|
|
2021-12-26 09:43:55 +00:00
|
|
|
# set ptt to false if ptt is stuck for some reason
|
|
|
|
self.set_ptt(False)
|
2021-12-25 16:05:38 +00:00
|
|
|
|
|
|
|
# set rig mode to USB
|
2021-12-27 15:38:08 +00:00
|
|
|
# temporarly outcommented because of possible problems.
|
|
|
|
#self.my_rig.set_mode(Hamlib.RIG_MODE_USB)
|
|
|
|
# self.my_rig.set_mode(Hamlib.RIG_MODE_PKTUSB)
|
2021-12-25 16:05:38 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
structlog.get_logger("structlog").error("[TNC] Hamlib - can't open rig", error=e, e=sys.exc_info()[0])
|
|
|
|
return False
|
|
|
|
|
2021-12-26 14:25:35 +00:00
|
|
|
def get_frequency(self):
|
|
|
|
return int(self.my_rig.get_freq())
|
|
|
|
|
|
|
|
def get_mode(self):
|
2021-12-25 16:05:38 +00:00
|
|
|
(hamlib_mode, bandwith) = self.my_rig.get_mode()
|
2021-12-26 14:25:35 +00:00
|
|
|
return Hamlib.rig_strrmode(hamlib_mode)
|
2021-12-25 16:05:38 +00:00
|
|
|
|
2021-12-26 14:25:35 +00:00
|
|
|
def get_bandwith(self):
|
|
|
|
(hamlib_mode, bandwith) = self.my_rig.get_mode()
|
|
|
|
return bandwith
|
|
|
|
|
2021-12-28 16:05:48 +00:00
|
|
|
# not needed yet beacuse of some possible problems
|
|
|
|
#def set_mode(self, mode):
|
|
|
|
# return 0
|
2021-12-26 09:43:55 +00:00
|
|
|
|
|
|
|
def get_ptt(self):
|
|
|
|
return self.my_rig.get_ptt()
|
|
|
|
|
2021-12-25 16:05:38 +00:00
|
|
|
def set_ptt(self, state):
|
|
|
|
if state:
|
2022-01-05 11:01:32 +00:00
|
|
|
self.my_rig.set_ptt(Hamlib.RIG_VFO_CURR, 1)
|
2021-12-25 16:05:38 +00:00
|
|
|
else:
|
2022-01-05 11:01:32 +00:00
|
|
|
self.my_rig.set_ptt(Hamlib.RIG_VFO_CURR, 0)
|
2021-12-25 16:05:38 +00:00
|
|
|
return state
|
2021-12-26 08:55:20 +00:00
|
|
|
|
|
|
|
def close_rig(self):
|
|
|
|
self.my_rig.close()
|