Skip to content

Commit 7d4a49a

Browse files
committed
Issue 290 - Add capability to set serial port speed for hamlib.
1 parent f0bd085 commit 7d4a49a

File tree

3 files changed

+51
-3
lines changed

3 files changed

+51
-3
lines changed

src/audio.h

+2
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,8 @@ struct audio_s {
278278
#ifdef USE_HAMLIB
279279

280280
int ptt_model; /* HAMLIB model. -1 for AUTO. 2 for rigctld. Others are radio model. */
281+
int ptt_rate; /* Serial port speed when using hamlib CAT control for PTT. */
282+
/* If zero, hamlib will come up with a default for pariticular rig. */
281283
#endif
282284

283285
} octrl[NUM_OCTYPES];

src/config.c

+15-2
Original file line numberDiff line numberDiff line change
@@ -1682,8 +1682,8 @@ void config_init (char *fname, struct audio_s *p_audio_config,
16821682
* xxx serial-port [-]rts-or-dtr [ [-]rts-or-dtr ]
16831683
* xxx GPIO [-]gpio-num
16841684
* xxx LPT [-]bit-num
1685-
* PTT RIG model port
1686-
* PTT RIG AUTO port
1685+
* PTT RIG model port [ rate ]
1686+
* PTT RIG AUTO port [ rate ]
16871687
* PTT CM108 [ [-]bit-num ] [ hid-device ]
16881688
*
16891689
* When model is 2, port would host:port like 127.0.0.1:4532
@@ -1808,6 +1808,19 @@ void config_init (char *fname, struct audio_s *p_audio_config,
18081808
}
18091809
strlcpy (p_audio_config->achan[channel].octrl[ot].ptt_device, t, sizeof(p_audio_config->achan[channel].octrl[ot].ptt_device));
18101810

1811+
// Optional serial port rate for CAT controll PTT.
1812+
1813+
t = split(NULL,0);
1814+
if (t != NULL) {
1815+
if ( ! alldigits(t)) {
1816+
text_color_set(DW_COLOR_ERROR);
1817+
dw_printf ("Config file line %d: An optional number is required here for CAT serial port speed: %s\n", line, t);
1818+
continue;
1819+
}
1820+
int n = atoi(t);
1821+
p_audio_config->achan[channel].octrl[ot].ptt_rate = n;
1822+
}
1823+
18111824
t = split(NULL,0);
18121825
if (t != NULL) {
18131826
text_color_set(DW_COLOR_ERROR);

src/ptt.c

+34-1
Original file line numberDiff line numberDiff line change
@@ -984,10 +984,20 @@ void ptt_init (struct audio_s *audio_config_p)
984984
/* For "AUTO" model, try to guess what is out there. */
985985

986986
if (audio_config_p->achan[ch].octrl[ot].ptt_model == -1) {
987-
hamlib_port_t hport;
987+
hamlib_port_t hport; // http://hamlib.sourceforge.net/manuals/1.2.15/structhamlib__port__t.html
988988

989989
memset (&hport, 0, sizeof(hport));
990990
strlcpy (hport.pathname, audio_config_p->achan[ch].octrl[ot].ptt_device, sizeof(hport.pathname));
991+
992+
if (audio_config_p->achan[ch].octrl[ot].ptt_rate > 0) {
993+
// Override the default serial port data rate.
994+
hport.parm.serial.rate = audio_config_p->achan[ch].octrl[ot].ptt_rate;
995+
hport.parm.serial.data_bits = 8;
996+
hport.parm.serial.stop_bits = 1;
997+
hport.parm.serial.parity = RIG_PARITY_NONE;
998+
hport.parm.serial.handshake = RIG_HANDSHAKE_NONE;
999+
}
1000+
9911001
rig_load_all_backends();
9921002
audio_config_p->achan[ch].octrl[ot].ptt_model = rig_probe(&hport);
9931003

@@ -1011,6 +1021,29 @@ void ptt_init (struct audio_s *audio_config_p)
10111021
}
10121022

10131023
strlcpy (rig[ch][ot]->state.rigport.pathname, audio_config_p->achan[ch].octrl[ot].ptt_device, sizeof(rig[ch][ot]->state.rigport.pathname));
1024+
1025+
// Issue 290.
1026+
// We had a case where hamlib defaulted to 9600 baud for a particular
1027+
// radio model but 38400 was needed. Add an option for the configuration
1028+
// file to override the hamlib default speed.
1029+
1030+
text_color_set(DW_COLOR_INFO);
1031+
if (audio_config_p->achan[ch].octrl[ot].ptt_model != 2) { // 2 is network, not serial port.
1032+
dw_printf ("Hamlib determined CAT control serial port rate of %d.\n", rig[ch][ot]->state.rigport.parm.serial.rate);
1033+
}
1034+
1035+
// Config file can optionally override the rate that hamlib came up with.
1036+
1037+
if (audio_config_p->achan[ch].octrl[ot].ptt_rate > 0) {
1038+
dw_printf ("User configuration overriding hamlib CAT control speed to %d.\n", audio_config_p->achan[ch].octrl[ot].ptt_rate);
1039+
rig[ch][ot]->state.rigport.parm.serial.rate = audio_config_p->achan[ch].octrl[ot].ptt_rate;
1040+
1041+
// Do we want to explicitly set all of these or let it default?
1042+
rig[ch][ot]->state.rigport.parm.serial.data_bits = 8;
1043+
rig[ch][ot]->state.rigport.parm.serial.stop_bits = 1;
1044+
rig[ch][ot]->state.rigport.parm.serial.parity = RIG_PARITY_NONE;
1045+
rig[ch][ot]->state.rigport.parm.serial.handshake = RIG_HANDSHAKE_NONE;
1046+
}
10141047
int err = rig_open(rig[ch][ot]);
10151048
if (err != RIG_OK) {
10161049
text_color_set(DW_COLOR_ERROR);

0 commit comments

Comments
 (0)