@@ -193,7 +193,6 @@ int main (int argc, char *argv[])
193
193
//int eof;
194
194
int j ;
195
195
char config_file [100 ];
196
- int xmit_calibrate_option = 0 ;
197
196
int enable_pseudo_terminal = 0 ;
198
197
struct digi_config_s digi_config ;
199
198
struct cdigi_config_s cdigi_config ;
@@ -231,6 +230,8 @@ int main (int argc, char *argv[])
231
230
float e_recv_ber = 0.0 ; /* Receive Bit Error Rate (BER). */
232
231
int X_fx25_xmit_enable = 0 ; /* FX.25 transmit enable. */
233
232
233
+ int x_opt = 0 ; /* "-x N" option for transmitting calibration tones. */
234
+
234
235
strlcpy (l_opt_logdir , "" , sizeof (l_opt_logdir ));
235
236
strlcpy (L_opt_logfile , "" , sizeof (L_opt_logfile ));
236
237
strlcpy (P_opt , "" , sizeof (P_opt ));
@@ -388,7 +389,7 @@ int main (int argc, char *argv[])
388
389
389
390
/* ':' following option character means arg is required. */
390
391
391
- c = getopt_long (argc , argv , "hP:B:gjJD:U:c:pxr :b:n:d:q:t:ul:L:Sa:E:T:e:X:A" ,
392
+ c = getopt_long (argc , argv , "hP:B:gjJD:U:c:px:r :b:n:d:q:t:ul:L:Sa:E:T:e:X:A" ,
392
393
long_options , & option_index );
393
394
if (c == -1 )
394
395
break ;
@@ -490,9 +491,22 @@ int main (int argc, char *argv[])
490
491
}
491
492
break ;
492
493
493
- case 'x' : /* -x for transmit calibration tones. */
494
+ case 'x' : /* -x N for transmit calibration tones. */
495
+
496
+ switch (* optarg ) {
497
+ case 'a' : x_opt = 1 ; break ; // Alternating tones
498
+ case 'm' : x_opt = 2 ; break ; // Mark tone
499
+ case '1' : x_opt = 2 ; break ; // Mark tone alternative
500
+ case 's' : x_opt = 3 ; break ; // Space tone
501
+ case '2' : x_opt = 3 ; break ; // Space tone alternative
502
+ case 'p' : x_opt = 4 ; break ; // Set PTT only
503
+ default :
504
+ text_color_set (DW_COLOR_ERROR );
505
+ dw_printf ("Invalid option for -x. \n" );
506
+ exit (EXIT_FAILURE );
507
+ break ;
508
+ }
494
509
495
- xmit_calibrate_option = 1 ;
496
510
break ;
497
511
498
512
case 'r' : /* -r audio samples/sec. e.g. 44100 */
@@ -907,30 +921,70 @@ int main (int argc, char *argv[])
907
921
xmit_init (& audio_config , d_p_opt );
908
922
909
923
/*
910
- * If -x option specified, transmit alternating tones for transmitter
924
+ * If -x N option specified, transmit calibration tones for transmitter
911
925
* audio level adjustment, up to 1 minute then quit.
926
+ * N = a: Alternating mark/space tones
927
+ * N = m: (or 1): Mark tone (e.g. 1200Hz)
928
+ * N = s: (or 2): Space tone (e.g. 2200Hz)
929
+ * N = p: Set PTT only.
912
930
* TODO: enhance for more than one channel.
913
931
*/
914
932
915
- if (xmit_calibrate_option ) {
916
-
917
- int max_duration = 60 ; /* seconds */
918
- int n = audio_config .achan [0 ].baud * max_duration ;
919
- int chan = 0 ;
920
-
921
- text_color_set (DW_COLOR_INFO );
922
- dw_printf ("\nSending transmit calibration tones. Press control-C to terminate.\n" );
923
-
924
- ptt_set (OCTYPE_PTT , chan , 1 );
925
- while (n -- > 0 ) {
926
-
927
- tone_gen_put_bit (chan , n & 1 );
928
-
929
- }
930
- ptt_set (OCTYPE_PTT , chan , 0 );
931
- exit (0 );
933
+ if (x_opt != 0 ) {
934
+ if (audio_config .achan [0 ].mark_freq
935
+ && audio_config .achan [0 ].space_freq ) {
936
+ int max_duration = 60 ;
937
+ int n = audio_config .achan [0 ].baud * max_duration ;
938
+ int chan = 0 ;
939
+
940
+ text_color_set (DW_COLOR_INFO );
941
+ ptt_set (OCTYPE_PTT , chan , 1 );
942
+
943
+ switch (x_opt ) {
944
+ case 1 : // Alternating tones: -x a
945
+ dw_printf (
946
+ "\nSending alternating mark/space calibration tones (%d/%dHz).\nPress control-C to terminate.\n" ,
947
+ audio_config .achan [0 ].mark_freq ,
948
+ audio_config .achan [0 ].space_freq );
949
+ while (n -- > 0 ) {
950
+ tone_gen_put_bit (chan , n & 1 );
951
+ }
952
+ break ;
953
+ case 2 : // "Mark" tone: -x m
954
+ dw_printf (
955
+ "\nSending mark calibration tone (%dHz).\nPress control-C to terminate.\n" ,
956
+ audio_config .achan [0 ].mark_freq );
957
+ while (n -- > 0 ) {
958
+ tone_gen_put_bit (chan , 0 );
959
+ }
960
+ break ;
961
+ case 3 : // "Space" tone: -x s
962
+ dw_printf (
963
+ "\nSending space calibration tone (%dHz).\nPress control-C to terminate.\n" ,
964
+ audio_config .achan [0 ].space_freq );
965
+ while (n -- > 0 ) {
966
+ tone_gen_put_bit (chan , 1 );
967
+ }
968
+ break ;
969
+ case 4 : // Silence - set PTT only: -x p
970
+ dw_printf (
971
+ "\nSending silence (Set PTT only).\nPress control-C to terminate.\n" );
972
+ sleep (max_duration );
973
+ break ;
974
+ }
975
+
976
+ ptt_set (OCTYPE_PTT , chan , 0 );
977
+ exit (0 );
978
+
979
+ } else {
980
+ text_color_set (DW_COLOR_ERROR );
981
+ dw_printf (
982
+ "\nSpace/mark frequencies not defined. Cannot calibrate using this modem type.\n" );
983
+ exit (EXIT_FAILURE );
984
+ }
932
985
}
933
986
987
+
934
988
/*
935
989
* Initialize the digipeater and IGate functions.
936
990
*/
@@ -1508,6 +1562,10 @@ static void usage (char **argv)
1508
1562
dw_printf (" -p Enable pseudo terminal for KISS protocol.\n" );
1509
1563
#endif
1510
1564
dw_printf (" -x Send Xmit level calibration tones.\n" );
1565
+ dw_printf (" a a = Alternating mark/space tones.\n" );
1566
+ dw_printf (" m m (or 1) = Steady mark tone (e.g. 1200Hz).\n" );
1567
+ dw_printf (" s s (or 2) = Steady space tone (e.g. 2200Hz).\n" );
1568
+ dw_printf (" p p = Silence (Set PTT only).\n" );
1511
1569
dw_printf (" -u Print UTF-8 test string and exit.\n" );
1512
1570
dw_printf (" -S Print symbol tables and exit.\n" );
1513
1571
dw_printf (" -T fmt Time stamp format for sent and received frames.\n" );
0 commit comments