@@ -984,10 +984,20 @@ void ptt_init (struct audio_s *audio_config_p)
984
984
/* For "AUTO" model, try to guess what is out there. */
985
985
986
986
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
988
988
989
989
memset (& hport , 0 , sizeof (hport ));
990
990
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
+
991
1001
rig_load_all_backends ();
992
1002
audio_config_p -> achan [ch ].octrl [ot ].ptt_model = rig_probe (& hport );
993
1003
@@ -1011,6 +1021,29 @@ void ptt_init (struct audio_s *audio_config_p)
1011
1021
}
1012
1022
1013
1023
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
+ }
1014
1047
int err = rig_open (rig [ch ][ot ]);
1015
1048
if (err != RIG_OK ) {
1016
1049
text_color_set (DW_COLOR_ERROR );
0 commit comments