la5nta / pat

A cross-platform Winlink client written in Go
https://getpat.io
MIT License
497 stars 86 forks source link

ax25_linux "Rigcontrol is not configured for the selected transport" #441

Closed craigerl closed 7 months ago

craigerl commented 10 months ago

When using ax25_linux, rigcontrol is disabled (can't change frequencies). When using ax25 (no _linux suffix) rigcontrol works.

Mouse-hover over crossed-out frequency displays

Rigcontrol is not configured for the selected transport. Set radio frequency manually.

  "listen": [],
  "hamlib_rigs": {
    "RigCtl Radio": {"address": "localhost:4532", "network": "tcp"}
  },
  "ax25_linux": {
    "port": "radio",
    "beacon": {
      "every": 3600,
      "message": "Winlink P2P",
      "destination": "IDENT"
    },
    "rig": "RigCtl Radio",
    "ptt_ctrl": true,
    "beacon_interval": 0,
    "cwid_enabled": true
  },
martinhpedersen commented 7 months ago

The rig options should be specified in the common ax25 section.

"ax25_linux": {
    "port": "radio"
},
"ax25": {
    "engine": "linux",
    "beacon": {
      "every": 3600,
      "message": "Winlink P2P",
      "destination": "IDENT"
    },
    "rig": "RigCtl Radio",
    "ptt_ctrl": true,
    "beacon_interval": 0,
    "cwid_enabled": true
  }