Skip to content

Commit acace8c

Browse files
committed
Variable speed for gen_packets.
1 parent 429d095 commit acace8c

File tree

3 files changed

+64
-7
lines changed

3 files changed

+64
-7
lines changed

CHANGES.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
### New Features: ###
99

10+
11+
- New variable speed option for gen_packets. For example, "-v 5,0.1" would generate packets from 5% too slow to 5% too fast with increments of 0.1. Some implementations might have imprecise timing. Use this to test how well TNCs tolerate sloppy timing.
12+
1013
- Improved Layer 2 Protocol [(IL2P)](https://en.wikipedia.org/wiki/FX.25_Forward_Error_Correction). Use "-I 1" on command line to enable transmit for first channel. Compatible with Nino TNC for 1200 and 9600 bps.
1114

1215
- Limited support for CM109/CM119 GPIO PTT on Windows.
@@ -17,7 +20,7 @@
1720

1821
- The BEACON configuration now recognizes the SOURCE= option. This replaces the AX.25 source address rather than using the MYCALL value for the channel. This is useful for sending more than 5 analog telemetry channels. Use two, or more, source addresses with up to 5 analog channels each.
1922

20-
- For more flexibility, the FX.25 transmit property can now be set individually by channel, rather than having a global setting for all channels. The -X on the command line applies only to channel 0. For other channels you need to add a new line to the configuration file.
23+
- For more flexibility, the FX.25 transmit property can now be set individually by channel, rather than having a global setting for all channels. The -X on the command line applies only to channel 0. For other channels you need to add a new line to the configuration file. You can specify a specific number of parity bytes (16, 32, 64) or 1 to choose automatically based on packet size.
2124

2225
> After: "CHANNEL 1" (or other channel)
2326
>

man/gen_packets.1

+5-1
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,13 @@ Send output to .wav file.
100100
8 bit audio rather than 16.
101101

102102
.TP
103-
.B "-2"
103+
.BI "-2"
104104
2 channels of audio rather than 1.
105105

106+
.TP
107+
.BI "-v" "max[,incr]"
108+
Variable speed with specified maximum error and optional increment.
109+
106110

107111
.SH EXAMPLES
108112
.P

src/gen_packets.c

+55-5
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,15 @@
5656
* gen_packets -n 100 -o z2.wav
5757
* atest z2.wav
5858
*
59-
*
59+
* Variable speed. e.g. 95% to 105% of normal speed.
60+
* Required parameter is max % below and above normal.
61+
* Optionally specify step other than 0.1%.
62+
* Used to test how tolerant TNCs are to senders not
63+
* not using exactly the right baud rate.
64+
*
65+
* gen_packets -v 5
66+
* gen_packets -v 5,0.5
67+
*
6068
*------------------------------------------------------------------*/
6169

6270

@@ -67,6 +75,7 @@
6775
#include <getopt.h>
6876
#include <string.h>
6977
#include <assert.h>
78+
#include <math.h>
7079

7180
#include "audio.h"
7281
#include "ax25_pad.h"
@@ -100,6 +109,7 @@ static float g_noise_level = 0;
100109
static int g_morse_wpm = 0; /* Send morse code at this speed. */
101110

102111

112+
103113
static struct audio_s modem;
104114

105115

@@ -179,6 +189,9 @@ int main(int argc, char **argv)
179189
int X_opt = 0; // send FX.25
180190
int I_opt = -1; // send IL2P rather than AX.25, normal polarity
181191
int i_opt = -1; // send IL2P rather than AX.25, inverted polarity
192+
double variable_speed_max_error = 0; // both in percent
193+
double variable_speed_increment = 0.1;
194+
182195

183196
/*
184197
* Set up default values for the modem.
@@ -230,7 +243,7 @@ int main(int argc, char **argv)
230243

231244
/* ':' following option character means arg is required. */
232245

233-
c = getopt_long(argc, argv, "gjJm:s:a:b:B:r:n:N:o:z:82M:X:I:i:",
246+
c = getopt_long(argc, argv, "gjJm:s:a:b:B:r:n:N:o:z:82M:X:I:i:v:",
234247
long_options, &option_index);
235248
if (c == -1)
236249
break;
@@ -469,6 +482,16 @@ int main(int argc, char **argv)
469482
i_opt = atoi(optarg);
470483
break;
471484

485+
case 'v': // Variable speed data + an - this percentage
486+
// optional comma and increment.
487+
488+
variable_speed_max_error = fabs(atof(optarg));
489+
char *q = strchr(optarg, ',');
490+
if (q != NULL) {
491+
variable_speed_increment = fabs(atof(q+1));
492+
}
493+
break;
494+
472495
case '?':
473496

474497
/* Unknown option message was already printed. */
@@ -479,7 +502,7 @@ int main(int argc, char **argv)
479502

480503
/* Should not be here. */
481504
text_color_set(DW_COLOR_ERROR);
482-
dw_printf("?? getopt returned character code 0%o ??\n", c);
505+
dw_printf("?? getopt returned character code 0%o ??\n", (unsigned)c);
483506
usage (argv);
484507
}
485508
}
@@ -647,9 +670,35 @@ int main(int argc, char **argv)
647670
*/
648671
text_color_set(DW_COLOR_INFO);
649672
dw_printf ("built in message...\n");
650-
651673

652-
if (packet_count > 0) {
674+
//
675+
// Generate packets with variable speed.
676+
// This overrides any other number of packets or adding noise.
677+
//
678+
679+
680+
if (variable_speed_max_error != 0) {
681+
682+
int normal_speed = modem.achan[0].baud;
683+
684+
text_color_set(DW_COLOR_INFO);
685+
dw_printf ("Variable speed.\n");
686+
687+
for (double speed_error = - variable_speed_max_error;
688+
speed_error <= variable_speed_max_error + 0.001;
689+
speed_error += variable_speed_increment) {
690+
691+
// Baud is int so we get some roundoff. Make it real?
692+
modem.achan[0].baud = (int)round(normal_speed * (1. + speed_error / 100.));
693+
gen_tone_init (&modem, amplitude/2, 1);
694+
695+
char stemp[256];
696+
snprintf (stemp, sizeof(stemp), "WB2OSZ-15>TEST:, speed %+0.1f%% The quick brown fox jumps over the lazy dog!", speed_error);
697+
send_packet (stemp);
698+
}
699+
}
700+
701+
else if (packet_count > 0) {
653702

654703
/*
655704
* Generate packets with increasing noise level.
@@ -730,6 +779,7 @@ static void usage (char **argv)
730779
dw_printf (" -o <file> Send output to .wav file.\n");
731780
dw_printf (" -8 8 bit audio rather than 16.\n");
732781
dw_printf (" -2 2 channels (stereo) audio rather than one channel.\n");
782+
dw_printf (" -v max[,incr] Variable speed with specified maximum error and increment.\n");
733783
// dw_printf (" -z <number> Number of leading zero bits before frame.\n");
734784
// dw_printf (" Default is 12 which is .01 seconds at 1200 bits/sec.\n");
735785

0 commit comments

Comments
 (0)