Skip to content

Commit

Permalink
attempt overriding ptt port
Browse files Browse the repository at this point in the history
  • Loading branch information
DJ2LS committed Feb 25, 2025
1 parent 644f345 commit d1c2695
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
25 changes: 25 additions & 0 deletions freedata_gui/src/components/settings_hamlib.vue
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,31 @@ const settings = ref({
</select>
</div>

<!-- Radio Custom Port -->
<div class="input-group input-group-sm mb-1">
<label class="input-group-text w-50 text-wrap">
Radio custom port
<button
type="button"
class="btn btn-link p-0 ms-2"
data-bs-toggle="tooltip"
title="Override the com port of your radio if its not listed above"
>
<i class="bi bi-question-circle"></i>
</button>
</label>

<input
type="text"
class="form-control"
placeholder="settings.remote.RADIO.serial_port.port"
id="rigctldIp"
aria-label="Rigctld IP"
@change="onChange"
v-model="settings.remote.RADIO.serial_port"
/>
</div>

<!-- Serial Speed -->
<div class="input-group input-group-sm mb-1">
<label class="input-group-text w-50 text-wrap">
Expand Down
24 changes: 24 additions & 0 deletions freedata_gui/src/components/settings_serial_ptt.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,30 @@
</select>
</div>

<!-- Radio Custom Port -->
<div class="input-group input-group-sm mb-1">
<label class="input-group-text w-50 text-wrap">
Custom PTT port
<button
type="button"
class="btn btn-link p-0 ms-2"
data-bs-toggle="tooltip"
title="Override the com port of your radio if its not listed above"
>
<i class="bi bi-question-circle"></i>
</button>
</label>

<input
type="text"
class="form-control"
placeholder="settings.remote.RADIO.ptt_port.port"
id="rigctldIp"
aria-label="Rigctld IP"
@change="onChange"
v-model="settings.remote.RADIO.ptt_port"
/>
</div>
<!-- PTT via DTR Selector -->
<div class="input-group input-group-sm mb-1">
<label class="input-group-text w-50 text-wrap">
Expand Down

0 comments on commit d1c2695

Please sign in to comment.