@@ -230,7 +230,8 @@ int main (int argc, char *argv[])
230
230
float e_recv_ber = 0.0 ; /* Receive Bit Error Rate (BER). */
231
231
int X_fx25_xmit_enable = 0 ; /* FX.25 transmit enable. */
232
232
233
- int x_opt = 0 ; /* "-x N" option for transmitting calibration tones. */
233
+ char x_opt_mode = ' ' ; /* "-x N" option for transmitting calibration tones. */
234
+ int x_opt_chan = 0 ; /* Split into 2 parts. Mode e.g. m, a, and optional channel. */
234
235
235
236
strlcpy (l_opt_logdir , "" , sizeof (l_opt_logdir ));
236
237
strlcpy (L_opt_logfile , "" , sizeof (L_opt_logfile ));
@@ -492,21 +493,42 @@ int main (int argc, char *argv[])
492
493
break ;
493
494
494
495
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
496
+ /* N is composed of a channel number and/or one letter */
497
+ /* for the mode: mark, space, alternate, ptt-only. */
498
+
499
+ for (char * p = optarg ; * p != '\0' ; p ++ ) {
500
+ switch (* p ) {
501
+ case '0' :
502
+ case '1' :
503
+ case '2' :
504
+ case '3' :
505
+ case '4' :
506
+ case '5' :
507
+ case '6' :
508
+ case '7' :
509
+ case '8' :
510
+ case '9' :
511
+ x_opt_chan = x_opt_chan * 10 + * p - '0' ;
512
+ if (x_opt_mode == ' ' ) x_opt_mode = 'a' ;
513
+ break ;
514
+ case 'a' : x_opt_mode = * p ; break ; // Alternating tones
515
+ case 'm' : x_opt_mode = * p ; break ; // Mark tone
516
+ case 's' : x_opt_mode = * p ; break ; // Space tone
517
+ case 'p' : x_opt_mode = * p ; break ; // Set PTT only
503
518
default :
504
- text_color_set (DW_COLOR_ERROR );
505
- dw_printf ("Invalid option for -x. \n" );
519
+ text_color_set (DW_COLOR_ERROR );
520
+ dw_printf ("Invalid option '%c' for -x. Must be a, m, s, or p.\n" , * p );
521
+ text_color_set (DW_COLOR_INFO );
506
522
exit (EXIT_FAILURE );
507
523
break ;
508
524
}
509
-
525
+ }
526
+ if (x_opt_chan < 0 || x_opt_chan >= MAX_CHANS ) {
527
+ text_color_set (DW_COLOR_ERROR );
528
+ dw_printf ("Invalid channel %d for -x. \n" , x_opt_chan );
529
+ text_color_set (DW_COLOR_INFO );
530
+ exit (EXIT_FAILURE );
531
+ }
510
532
break ;
511
533
512
534
case 'r' : /* -r audio samples/sec. e.g. 44100 */
@@ -923,65 +945,72 @@ int main (int argc, char *argv[])
923
945
/*
924
946
* If -x N option specified, transmit calibration tones for transmitter
925
947
* 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.
930
- * TODO: enhance for more than one channel.
948
+ * a: Alternating mark/space tones
949
+ * m : Mark tone (e.g. 1200Hz)
950
+ * s : Space tone (e.g. 2200Hz)
951
+ * p: Set PTT only.
952
+ * A leading or trailing number is the channel.
931
953
*/
932
954
933
- if (x_opt != 0 ) {
934
- if (audio_config .achan [0 ].mark_freq
935
- && audio_config .achan [0 ].space_freq ) {
955
+ if (x_opt_mode != ' ' ) {
956
+ if (audio_config .achan [x_opt_chan ].medium == MEDIUM_RADIO ) {
957
+ if (audio_config .achan [x_opt_chan ].mark_freq
958
+ && audio_config .achan [x_opt_chan ].space_freq ) {
936
959
int max_duration = 60 ;
937
- int n = audio_config .achan [0 ].baud * max_duration ;
938
- int chan = 0 ;
960
+ int n = audio_config .achan [x_opt_chan ].baud * max_duration ;
939
961
940
962
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 );
963
+ ptt_set (OCTYPE_PTT , x_opt_chan , 1 );
964
+
965
+ switch (x_opt_mode ) {
966
+ default :
967
+ case 'a' : // Alternating tones: -x a
968
+ dw_printf ("\nSending alternating mark/space calibration tones (%d/%dHz) on channel %d.\nPress control-C to terminate.\n" ,
969
+ audio_config .achan [x_opt_chan ].mark_freq ,
970
+ audio_config .achan [x_opt_chan ].space_freq ,
971
+ x_opt_chan );
949
972
while (n -- > 0 ) {
950
- tone_gen_put_bit (chan , n & 1 );
973
+ tone_gen_put_bit (x_opt_chan , n & 1 );
951
974
}
952
975
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 );
976
+ case 'm' : // "Mark" tone: -x m
977
+ dw_printf ("\nSending mark calibration tone (%dHz) on channel %d.\nPress control-C to terminate.\n" ,
978
+ audio_config . achan [ x_opt_chan ]. mark_freq ,
979
+ x_opt_chan );
957
980
while (n -- > 0 ) {
958
- tone_gen_put_bit (chan , 0 );
981
+ tone_gen_put_bit (x_opt_chan , 0 );
959
982
}
960
983
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 );
984
+ case 's' : // "Space" tone: -x s
985
+ dw_printf ("\nSending space calibration tone (%dHz) on channel %d.\nPress control-C to terminate.\n" ,
986
+ audio_config . achan [ x_opt_chan ]. space_freq ,
987
+ x_opt_chan );
965
988
while (n -- > 0 ) {
966
- tone_gen_put_bit (chan , 1 );
989
+ tone_gen_put_bit (x_opt_chan , 1 );
967
990
}
968
991
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 );
992
+ case 'p' : // Silence - set PTT only: -x p
993
+ dw_printf ("\nSending silence (Set PTT only) on channel %d.\nPress control-C to terminate.\n" , x_opt_chan );
994
+ SLEEP_SEC (max_duration );
973
995
break ;
974
996
}
975
997
976
- ptt_set (OCTYPE_PTT , chan , 0 );
977
- exit (0 );
998
+ ptt_set (OCTYPE_PTT , x_opt_chan , 0 );
999
+ text_color_set (DW_COLOR_INFO );
1000
+ exit (EXIT_SUCCESS );
978
1001
979
1002
} else {
980
1003
text_color_set (DW_COLOR_ERROR );
981
- dw_printf (
982
- "\nSpace/mark frequencies not defined. Cannot calibrate using this modem type.\n" );
1004
+ dw_printf ("\nMark/Space frequencies not defined for channel %d. Cannot calibrate using this modem type.\n" , x_opt_chan );
1005
+ text_color_set ( DW_COLOR_INFO );
983
1006
exit (EXIT_FAILURE );
984
1007
}
1008
+ } else {
1009
+ text_color_set (DW_COLOR_ERROR );
1010
+ dw_printf ("\nChannel %d is not configured as a radio channel.\n" , x_opt_chan );
1011
+ text_color_set (DW_COLOR_INFO );
1012
+ exit (EXIT_FAILURE );
1013
+ }
985
1014
}
986
1015
987
1016
@@ -1562,10 +1591,11 @@ static void usage (char **argv)
1562
1591
dw_printf (" -p Enable pseudo terminal for KISS protocol.\n" );
1563
1592
#endif
1564
1593
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" );
1594
+ dw_printf (" a a = Alternating mark/space tones.\n" );
1595
+ dw_printf (" m m = Steady mark tone (e.g. 1200Hz).\n" );
1596
+ dw_printf (" s s = Steady space tone (e.g. 2200Hz).\n" );
1597
+ dw_printf (" p p = Silence (Set PTT only).\n" );
1598
+ dw_printf (" chan Optionally add a number to specify radio channel.\n" );
1569
1599
dw_printf (" -u Print UTF-8 test string and exit.\n" );
1570
1600
dw_printf (" -S Print symbol tables and exit.\n" );
1571
1601
dw_printf (" -T fmt Time stamp format for sent and received frames.\n" );
@@ -1583,6 +1613,7 @@ static void usage (char **argv)
1583
1613
dw_printf ("Complete documentation can be found in /usr/local/share/doc/direwolf\n" );
1584
1614
#endif
1585
1615
dw_printf ("or online at https://github.com/wb2osz/direwolf/tree/master/doc\n" );
1616
+ text_color_set (DW_COLOR_INFO );
1586
1617
exit (EXIT_FAILURE );
1587
1618
}
1588
1619
0 commit comments