mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
commit
c329070606
3 changed files with 6 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
||||||
"name": "FreeDATA",
|
"name": "FreeDATA",
|
||||||
"description": "FreeDATA Client application for connecting to FreeDATA server",
|
"description": "FreeDATA Client application for connecting to FreeDATA server",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.13.4-alpha",
|
"version": "0.13.6-alpha",
|
||||||
"main": "dist-electron/main/index.js",
|
"main": "dist-electron/main/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "vite",
|
"start": "vite",
|
||||||
|
|
|
@ -244,7 +244,8 @@ class radio:
|
||||||
|
|
||||||
# Serial DCD and DTR
|
# Serial DCD and DTR
|
||||||
if not should_ignore(config.get('serial_dcd')):
|
if not should_ignore(config.get('serial_dcd')):
|
||||||
args += ['--set-dcd', config['serial_dcd']]
|
args += ['--dcd-type', config['serial_dcd']]
|
||||||
|
|
||||||
if not should_ignore(config.get('serial_dtr')):
|
if not should_ignore(config.get('serial_dtr')):
|
||||||
args += ['--set-conf', f'dtr_state={config["serial_dtr"]}']
|
args += ['--set-conf', f'dtr_state={config["serial_dtr"]}']
|
||||||
|
|
||||||
|
@ -255,6 +256,8 @@ class radio:
|
||||||
args += ['--set-conf', f'stop_bits={config["stop_bits"]}']
|
args += ['--set-conf', f'stop_bits={config["stop_bits"]}']
|
||||||
|
|
||||||
# Fixme #rts_state
|
# Fixme #rts_state
|
||||||
|
# if not should_ignore(config.get('rts_state')):
|
||||||
|
# args += ['--set-conf', f'stop_bits={config["rts_state"]}']
|
||||||
|
|
||||||
# Handle custom arguments for rigctld
|
# Handle custom arguments for rigctld
|
||||||
# Custom args are split via ' ' so python doesn't add extranaeous quotes on windows
|
# Custom args are split via ' ' so python doesn't add extranaeous quotes on windows
|
||||||
|
|
|
@ -29,7 +29,7 @@ app = Flask(__name__)
|
||||||
CORS(app)
|
CORS(app)
|
||||||
CORS(app, resources={r"/*": {"origins": "*"}})
|
CORS(app, resources={r"/*": {"origins": "*"}})
|
||||||
sock = Sock(app)
|
sock = Sock(app)
|
||||||
MODEM_VERSION = "0.13.4-alpha"
|
MODEM_VERSION = "0.13.6-alpha"
|
||||||
|
|
||||||
# set config file to use
|
# set config file to use
|
||||||
def set_config():
|
def set_config():
|
||||||
|
|
Loading…
Reference in a new issue