Skip to content

Commit ccae752

Browse files
committed
Allow data rates greater than 9600 baud.
modified: audio.h modified: demod.c modified: direwolf.c modified: gen_packets.c modified: gen_tone.c
1 parent 8b9c6fc commit ccae752

File tree

5 files changed

+77
-27
lines changed

5 files changed

+77
-27
lines changed

audio.h

+10-6
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,12 @@ struct audio_s {
278278
/* 44100 works a little better than 22050. */
279279
/* If you have a reasonable machine, use the highest rate. */
280280
#define MIN_SAMPLES_PER_SEC 8000
281-
#define MAX_SAMPLES_PER_SEC 48000 /* Formerly 44100. */
282-
/* Software defined radio often uses 48000. */
281+
//#define MAX_SAMPLES_PER_SEC 48000 /* Originally 44100. Later increased because */
282+
/* Software Defined Radio often uses 48000. */
283+
284+
#define MAX_SAMPLES_PER_SEC 192000 /* The cheap USB-audio adapters (e.g. CM108) can handle 44100 and 48000. */
285+
/* The "soundcard" in my desktop PC can do 96kHz or even 192kHz. */
286+
/* We will probably need to increase the sample rate to go much above 9600 baud. */
283287

284288
#define DEFAULT_BITS_PER_SAMPLE 16
285289

@@ -301,12 +305,12 @@ struct audio_s {
301305
#define DEFAULT_BAUD 1200
302306

303307
/* Used for sanity checking in config file and command line options. */
304-
/* 9600 is known to work. */
305-
/* TODO: Is 19200 possible with a soundcard at 44100 samples/sec? */
308+
/* 9600 baud is known to work. */
309+
/* TODO: Is 19200 possible with a soundcard at 44100 samples/sec or do we need a higher sample rate? */
306310

307311
#define MIN_BAUD 100
308-
#define MAX_BAUD 10000
309-
312+
//#define MAX_BAUD 10000
313+
#define MAX_BAUD 40000 // Anyone want to try 38.4 k baud?
310314

311315
/*
312316
* Typical transmit timings for VHF.

demod.c

+29
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,35 @@ int demod_init (struct audio_s *pa)
562562
save_audio_config_p->achan[chan].num_slicers = MAX_SLICERS;
563563
}
564564

565+
566+
/* We need a minimum number of audio samples per bit time for good performance. */
567+
/* Easier to check here because demod_9600_init might have an adjusted sample rate. */
568+
569+
float ratio = (float)(save_audio_config_p->adev[ACHAN2ADEV(chan)].samples_per_sec)
570+
/ (float)(save_audio_config_p->achan[chan].baud);
571+
572+
text_color_set(DW_COLOR_INFO);
573+
dw_printf ("The ratio of audio samples per sec (%d) to data rate in baud (%d) is %.1f\n",
574+
save_audio_config_p->adev[ACHAN2ADEV(chan)].samples_per_sec,
575+
save_audio_config_p->achan[chan].baud,
576+
ratio);
577+
if (ratio < 3) {
578+
text_color_set(DW_COLOR_ERROR);
579+
dw_printf ("There is little hope of success with such a low ratio. Use a higher sample rate.\n");
580+
}
581+
else if (ratio < 5) {
582+
dw_printf ("This is on the low side for best performance. Can you use a higher sample rate?\n");
583+
}
584+
else if (ratio < 6) {
585+
dw_printf ("Increasing the sample rate should improve decoder performance.\n");
586+
}
587+
else if (ratio > 15) {
588+
dw_printf ("Sample rate is more than adequate. You might lower it if CPU load is a concern.\n");
589+
}
590+
else {
591+
dw_printf ("This is a suitable ratio for good performance.\n");
592+
}
593+
565594
demod_9600_init (UPSAMPLE * save_audio_config_p->adev[ACHAN2ADEV(chan)].samples_per_sec, save_audio_config_p->achan[chan].baud, D);
566595

567596
if (strchr(save_audio_config_p->achan[chan].profiles, '+') != NULL) {

direwolf.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -369,9 +369,9 @@ int main (int argc, char *argv[])
369369
case 'B': /* -B baud rate and modem properties. */
370370

371371
B_opt = atoi(optarg);
372-
if (B_opt < 100 || B_opt > 10000) {
372+
if (B_opt < MIN_BAUD || B_opt > MAX_BAUD) {
373373
text_color_set(DW_COLOR_ERROR);
374-
dw_printf ("Use a more reasonable data baud rate in range of 100 - 10000.\n");
374+
dw_printf ("Use a more reasonable data baud rate in range of %d - %d.\n", MIN_BAUD, MAX_BAUD);
375375
exit (EXIT_FAILURE);
376376
}
377377
break;

gen_packets.c

+12-11
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,9 @@ int main(int argc, char **argv)
196196
modem.achan[0].baud = atoi(optarg);
197197
text_color_set(DW_COLOR_INFO);
198198
dw_printf ("Data rate set to %d bits / second.\n", modem.achan[0].baud);
199-
if (modem.achan[0].baud < 100 || modem.achan[0].baud > 10000) {
199+
if (modem.achan[0].baud < MIN_BAUD || modem.achan[0].baud > MAX_BAUD) {
200200
text_color_set(DW_COLOR_ERROR);
201-
dw_printf ("Use a more reasonable bit rate in range of 100 - 10000.\n");
201+
dw_printf ("Use a more reasonable bit rate in range of %d - %d.\n", MIN_BAUD, MAX_BAUD);
202202
exit (EXIT_FAILURE);
203203
}
204204
break;
@@ -208,29 +208,30 @@ int main(int argc, char **argv)
208208
/* 1200 implies 1200/2200 AFSK. */
209209
/* 9600 implies scrambled. */
210210

211+
/* If you want something else, specify -B first */
212+
/* then anything to override these defaults. */
213+
211214
modem.achan[0].baud = atoi(optarg);
212215
text_color_set(DW_COLOR_INFO);
213216
dw_printf ("Data rate set to %d bits / second.\n", modem.achan[0].baud);
214-
if (modem.achan[0].baud < 100 || modem.achan[0].baud > 10000) {
217+
if (modem.achan[0].baud < MIN_BAUD || modem.achan[0].baud > MAX_BAUD) {
215218
text_color_set(DW_COLOR_ERROR);
216-
dw_printf ("Use a more reasonable bit rate in range of 100 - 10000.\n");
219+
dw_printf ("Use a more reasonable bit rate in range of %d - %d.\n", MIN_BAUD, MAX_BAUD);
217220
exit (EXIT_FAILURE);
218221
}
219222

220-
switch (modem.achan[0].baud) {
221-
case 300:
223+
if (modem.achan[0].baud < 600) {
222224
modem.achan[0].mark_freq = 1600;
223225
modem.achan[0].space_freq = 1800;
224-
break;
225-
case 1200:
226+
}
227+
else if (modem.achan[0].baud <= 2400) {
226228
modem.achan[0].mark_freq = 1200;
227229
modem.achan[0].space_freq = 2200;
228-
break;
229-
case 9600:
230+
}
231+
else {
230232
modem.achan[0].modem_type = MODEM_SCRAMBLE;
231233
text_color_set(DW_COLOR_INFO);
232234
dw_printf ("Using scrambled baseband signal rather than AFSK.\n");
233-
break;
234235
}
235236
break;
236237

gen_tone.c

+24-8
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,18 @@ int gen_tone_init (struct audio_s *audio_config_p, int amp)
210210
a = ((double)(j) / 256.0) * (2 * M_PI);
211211
s = (int) (sin(a) * 32767 * amp / 100.0);
212212

213-
/* 16 bit sound sample is in range of -32768 .. +32767. */
214-
215-
assert (s >= -32768 && s <= 32767);
213+
/* 16 bit sound sample must fit in range of -32768 .. +32767. */
216214

215+
if (s < -32768) {
216+
text_color_set(DW_COLOR_ERROR);
217+
dw_printf ("gen_tone_init: Excessive amplitude is being clipped.\n");
218+
s = -32768;
219+
}
220+
else if (s > 32767) {
221+
text_color_set(DW_COLOR_ERROR);
222+
dw_printf ("gen_tone_init: Excessive amplitude is being clipped.\n");
223+
s = 32767;
224+
}
217225
sine_table[j] = s;
218226
}
219227

@@ -235,7 +243,8 @@ int gen_tone_init (struct audio_s *audio_config_p, int amp)
235243
/* These numbers were by trial and error. Need more investigation here. */
236244

237245
float filter_len_bits = 88 * 9600.0 / (44100.0 * 2.0);
238-
/* Filter length in number of data bits. */
246+
/* Filter length in number of data bits. */
247+
/* Currently 9.58 */
239248

240249
float lpf_baud = 0.8; /* Lowpass cutoff freq as fraction of baud rate */
241250

@@ -250,10 +259,15 @@ int gen_tone_init (struct audio_s *audio_config_p, int amp)
250259

251260
lp_filter_size[chan] = (int) (( filter_len_bits * (float)samples_per_sec / baud) + 0.5);
252261

253-
if (lp_filter_size[chan] < 10 || lp_filter_size[chan] > MAX_FILTER_SIZE) {
254-
text_color_set(DW_COLOR_ERROR);
255-
dw_printf ("gen_tone_init: INTERNAL ERROR, chan %d, lp_filter_size %d\n", chan, lp_filter_size[chan]);
256-
lp_filter_size[chan] = MAX_FILTER_SIZE / 2;
262+
if (lp_filter_size[chan] < 10) {
263+
text_color_set(DW_COLOR_DEBUG);
264+
dw_printf ("gen_tone_init: unexpected, chan %d, lp_filter_size %d < 10\n", chan, lp_filter_size[chan]);
265+
lp_filter_size[chan] = 10;
266+
}
267+
else if (lp_filter_size[chan] > MAX_FILTER_SIZE) {
268+
text_color_set(DW_COLOR_DEBUG);
269+
dw_printf ("gen_tone_init: unexpected, chan %d, lp_filter_size %d > %d\n", chan, lp_filter_size[chan], MAX_FILTER_SIZE);
270+
lp_filter_size[chan] = MAX_FILTER_SIZE;
257271
}
258272

259273
fc = (float)baud * lpf_baud / (float)samples_per_sec;
@@ -358,6 +372,8 @@ void gen_tone_put_sample (int chan, int a, int sam) {
358372

359373
assert (save_audio_config_p->adev[a].bits_per_sample == 16);
360374

375+
// TODO: Should print message telling user to reduce output level.
376+
361377
if (sam < -32767) sam = -32767;
362378
else if (sam > 32767) sam = 32767;
363379

0 commit comments

Comments
 (0)