mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
89 lines
2.9 KiB
Python
89 lines
2.9 KiB
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Created on Tue Dec 22 16:58:45 2020
|
|
|
|
@author: DJ2LS
|
|
|
|
"""
|
|
|
|
|
|
import argparse
|
|
import threading
|
|
import static
|
|
import subprocess
|
|
import sys
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
|
# --------------------------------------------GET PARAMETER INPUTS
|
|
PARSER = argparse.ArgumentParser(description='Simons TEST TNC')
|
|
PARSER.add_argument('--rx', dest="audio_input_device", default=0, help="listening sound card", type=int)
|
|
PARSER.add_argument('--tx', dest="audio_output_device", default=0, help="transmitting sound card", type=int)
|
|
PARSER.add_argument('--port', dest="socket_port", default=3000, help="Socket port", type=int)
|
|
PARSER.add_argument('--deviceport', dest="hamlib_device_port", default="/dev/ttyUSB0", help="Socket port", type=str)
|
|
PARSER.add_argument('--deviceid', dest="hamlib_device_id", default=3011, help="Socket port", type=str)
|
|
PARSER.add_argument('--serialspeed', dest="hamlib_serialspeed", default=9600, help="Serialspeed", type=str)
|
|
PARSER.add_argument('--ptt', dest="hamlib_ptt_type", default='RTS', help="PTT Type", type=str)
|
|
|
|
|
|
ARGS = PARSER.parse_args()
|
|
|
|
static.AUDIO_INPUT_DEVICE = ARGS.audio_input_device
|
|
static.AUDIO_OUTPUT_DEVICE = ARGS.audio_output_device
|
|
static.PORT = ARGS.socket_port
|
|
static.HAMLIB_DEVICE_ID = ARGS.hamlib_device_id
|
|
static.HAMLIB_DEVICE_PORT = ARGS.hamlib_device_port
|
|
static.HAMLIB_PTT_TYPE = ARGS.hamlib_ptt_type
|
|
static.HAMLIB_SERIAL_SPEED = ARGS.hamlib_serialspeed
|
|
|
|
# we need to wait until we got all parameters from argparse first before we can load the other modules
|
|
import sock
|
|
import helpers
|
|
|
|
|
|
|
|
# config logging
|
|
helpers.setup_logging()
|
|
|
|
# --------------------------------------------START CMD SERVER
|
|
|
|
CMD_SERVER_THREAD = threading.Thread(target=sock.start_cmd_socket, name="cmd server")
|
|
CMD_SERVER_THREAD.start()
|
|
|
|
WATCHDOG_SERVER_THREAD = threading.Thread(target=helpers.watchdog, name="watchdog")
|
|
WATCHDOG_SERVER_THREAD.start()
|
|
|
|
'''
|
|
# Start RIGCTLD
|
|
|
|
if static.HAMLIB_PTT_TYPE == "RTS":
|
|
dtr_state = "OFF"
|
|
else:
|
|
dtr_state = "NONE"
|
|
|
|
if sys.platform == "linux":
|
|
command = "exec ./hamlib/linux/rigctld -r " + str(static.HAMLIB_DEVICE_PORT) + \
|
|
" -s "+ str(static.HAMLIB_SERIAL_SPEED) + \
|
|
" -P "+ str(static.HAMLIB_PTT_TYPE) + \
|
|
" -m "+ str(static.HAMLIB_DEVICE_ID) + \
|
|
" --set-conf=dtr_state=" + dtr_state
|
|
try:
|
|
p = subprocess.Popen(command, shell=True)
|
|
except:
|
|
print("hamlib not started")
|
|
sys.exit()
|
|
|
|
elif sys.platform == "darwin":
|
|
print("platform not yet supported")
|
|
sys.exit()
|
|
|
|
elif sys.platform == "win32":
|
|
print("platform not yet supported")
|
|
sys.exit()
|
|
|
|
else:
|
|
print("platform not supported!")
|
|
sys.exit()
|
|
'''
|