Skip to content

Commit 8bca486

Browse files
authored
Merge pull request #305 from BehemothTheKitten/x_fm_calibrate
Steady FM deviation calibration tones for -x
2 parents 52e3a5b + 042a0c4 commit 8bca486

File tree

1 file changed

+80
-22
lines changed

1 file changed

+80
-22
lines changed

src/direwolf.c

+80-22
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,6 @@ int main (int argc, char *argv[])
193193
//int eof;
194194
int j;
195195
char config_file[100];
196-
int xmit_calibrate_option = 0;
197196
int enable_pseudo_terminal = 0;
198197
struct digi_config_s digi_config;
199198
struct cdigi_config_s cdigi_config;
@@ -231,6 +230,8 @@ int main (int argc, char *argv[])
231230
float e_recv_ber = 0.0; /* Receive Bit Error Rate (BER). */
232231
int X_fx25_xmit_enable = 0; /* FX.25 transmit enable. */
233232

233+
int x_opt = 0; /* "-x N" option for transmitting calibration tones. */
234+
234235
strlcpy(l_opt_logdir, "", sizeof(l_opt_logdir));
235236
strlcpy(L_opt_logfile, "", sizeof(L_opt_logfile));
236237
strlcpy(P_opt, "", sizeof(P_opt));
@@ -388,7 +389,7 @@ int main (int argc, char *argv[])
388389

389390
/* ':' following option character means arg is required. */
390391

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",
392393
long_options, &option_index);
393394
if (c == -1)
394395
break;
@@ -490,9 +491,22 @@ int main (int argc, char *argv[])
490491
}
491492
break;
492493

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+
}
494509

495-
xmit_calibrate_option = 1;
496510
break;
497511

498512
case 'r': /* -r audio samples/sec. e.g. 44100 */
@@ -907,30 +921,70 @@ int main (int argc, char *argv[])
907921
xmit_init (&audio_config, d_p_opt);
908922

909923
/*
910-
* If -x option specified, transmit alternating tones for transmitter
924+
* If -x N option specified, transmit calibration tones for transmitter
911925
* 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.
912930
* TODO: enhance for more than one channel.
913931
*/
914932

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+
}
932985
}
933986

987+
934988
/*
935989
* Initialize the digipeater and IGate functions.
936990
*/
@@ -1508,6 +1562,10 @@ static void usage (char **argv)
15081562
dw_printf (" -p Enable pseudo terminal for KISS protocol.\n");
15091563
#endif
15101564
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");
15111569
dw_printf (" -u Print UTF-8 test string and exit.\n");
15121570
dw_printf (" -S Print symbol tables and exit.\n");
15131571
dw_printf (" -T fmt Time stamp format for sent and received frames.\n");

0 commit comments

Comments
 (0)