mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
Allow specifying custom rigctld cmdline arguments
This commit is contained in:
parent
8003a3c395
commit
a22e4334a1
3 changed files with 21 additions and 4 deletions
|
@ -62,15 +62,12 @@ const configDefaultSettings =
|
||||||
"hamlib_pttprotocol": "ignore",\
|
"hamlib_pttprotocol": "ignore",\
|
||||||
"hamlib_ptt_port": "ignore",\
|
"hamlib_ptt_port": "ignore",\
|
||||||
"hamlib_dcd": "ignore",\
|
"hamlib_dcd": "ignore",\
|
||||||
"hamlib_rigctld_port": "ignore",\
|
|
||||||
"hamlib_rigctld_ip": "ignore",\
|
|
||||||
"hamlib_rigctld_path": "ignore",\
|
|
||||||
"hamlib_rigctld_server_port": "ignore",\
|
|
||||||
"hamlbib_serialspeed_ptt": "9600",\
|
"hamlbib_serialspeed_ptt": "9600",\
|
||||||
"hamlib_rigctld_port" : "4532",\
|
"hamlib_rigctld_port" : "4532",\
|
||||||
"hamlib_rigctld_ip" : "127.0.0.1",\
|
"hamlib_rigctld_ip" : "127.0.0.1",\
|
||||||
"hamlib_rigctld_path" : "",\
|
"hamlib_rigctld_path" : "",\
|
||||||
"hamlib_rigctld_server_port" : "4532",\
|
"hamlib_rigctld_server_port" : "4532",\
|
||||||
|
"hamlib_rigctld_custom_args": "",\
|
||||||
"spectrum": "waterfall",\
|
"spectrum": "waterfall",\
|
||||||
"tnclocation": "localhost",\
|
"tnclocation": "localhost",\
|
||||||
"enable_scatter" : "False",\
|
"enable_scatter" : "False",\
|
||||||
|
|
|
@ -57,6 +57,7 @@ const hamlib_elements = [
|
||||||
"hamlib_rigctld_ip",
|
"hamlib_rigctld_ip",
|
||||||
"hamlib_rigctld_path",
|
"hamlib_rigctld_path",
|
||||||
"hamlib_rigctld_server_port",
|
"hamlib_rigctld_server_port",
|
||||||
|
"hamlib_rigctld_custom_args",
|
||||||
];
|
];
|
||||||
|
|
||||||
// SET dbfs LEVEL GLOBAL
|
// SET dbfs LEVEL GLOBAL
|
||||||
|
@ -646,6 +647,12 @@ window.addEventListener("DOMContentLoaded", () => {
|
||||||
"hamlib_rigctld_server_port"
|
"hamlib_rigctld_server_port"
|
||||||
).value;
|
).value;
|
||||||
paramList = paramList.concat("-t", hamlib_rigctld_server_port);
|
paramList = paramList.concat("-t", hamlib_rigctld_server_port);
|
||||||
|
|
||||||
|
//Custom rigctld arguments to pass to rigctld
|
||||||
|
var hamlib_rigctld_custom_args = document.getElementById(
|
||||||
|
"hamlib_rigctld_custom_args"
|
||||||
|
).value;
|
||||||
|
paramList = paramList.concat(hamlib_rigctld_custom_args);
|
||||||
|
|
||||||
document.getElementById("hamlib_rigctld_command").value =
|
document.getElementById("hamlib_rigctld_command").value =
|
||||||
paramList.join(" "); // join removes the commas
|
paramList.join(" "); // join removes the commas
|
||||||
|
|
|
@ -2182,6 +2182,19 @@
|
||||||
<option value="ON">ON</option>
|
<option value="ON">ON</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="input-group input-group-sm mb-1">
|
||||||
|
<span class="input-group-text" style="width: 180px"
|
||||||
|
>Rigctld custom arguments</span
|
||||||
|
>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
class="form-control"
|
||||||
|
placeholder="not typically needed"
|
||||||
|
id="hamlib_rigctld_custom_args"
|
||||||
|
aria-label="Custom arguments"
|
||||||
|
aria-describedby="basic-addon1"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- TNC Tab contents-->
|
<!-- TNC Tab contents-->
|
||||||
|
|
Loading…
Reference in a new issue