Skip to content

Commit 178375f

Browse files
committed
Clean up fix-bits feature. New experimental demodulator.
1 parent 95c2298 commit 178375f

28 files changed

+676
-972
lines changed

CHANGES.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11

22
# Revision History #
33

4+
----------
5+
6+
## Version 1.3 -- Development snapshot H -- November 2015 ##
7+
8+
### New Feature: ###
9+
10+
- New experimental demodulator. More details later.
11+
12+
413
----------
514

615
## Version 1.3 -- Development snapshot G -- November 2015 ##

Makefile.win

+4-4
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,7 @@ strlcat.o : misc/strlcat.c
238238
check : dtest ttest tttexttest pftest tlmtest lltest enctest kisstest check-modem1200 check-modem300 check-modem9600
239239

240240
# Can we encode and decode at popular data rates?
241+
# Verify that single bit fixup increases the count.
241242

242243
check-modem1200 : gen_packets atest
243244
gen_packets -n 100 -o test1.wav
@@ -361,14 +362,13 @@ demod_9600.o : tune.h
361362
demod_afsk.o : tune.h
362363

363364

364-
testagc : atest.c demod.c dsp.c demod_afsk.c demod_9600.c fsk_demod_agc.h \
365+
testagc : atest.c demod.c dsp.c demod_afsk.c demod_9600.o fsk_demod_agc.h \
365366
hdlc_rec.o hdlc_rec2.o multi_modem.o \
366367
rrbb.o fcs_calc.o ax25_pad.o decode_aprs.o latlong.o symbols.o textcolor.o telemetry.o \
367-
regex.a misc.a \
368-
368+
dwgpsnmea.o dwgps.o serial_port.o tt_text.o regex.a misc.a
369369
rm -f atest.exe
370370
$(CC) $(CFLAGS) -o atest $^
371-
./atest -P E ../02_Track_2.wav | grep "packets decoded in" >atest.out
371+
./atest -P GGG- -F 0 ../02_Track_2.wav | grep "packets decoded in" >atest.out
372372
echo " " > tune.h
373373

374374

aprs_tt.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1561,7 +1561,7 @@ static void raw_tt_data_to_app (int chan, char *msg)
15611561
alevel.mark = -2;
15621562
alevel.space = -2;
15631563

1564-
dlq_append (DLQ_REC_FRAME, chan, -1, pp, alevel, RETRY_NONE, "tt");
1564+
dlq_append (DLQ_REC_FRAME, chan, -1, 0, pp, alevel, RETRY_NONE, "tt");
15651565
}
15661566
else {
15671567
text_color_set(DW_COLOR_ERROR);

atest.c

+42-16
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,10 @@ static void usage (void);
167167

168168
static int decode_only = 0; /* Set to 0 or 1 to decode only one channel. 2 for both. */
169169

170+
static int sample_number = -1; /* Sample number from the file. */
171+
/* Incremented only for channel 0. */
172+
/* Use to print timestamp, relative to beginning */
173+
/* of file, when frame was decoded. */
170174

171175
int main (int argc, char *argv[])
172176
{
@@ -495,6 +499,8 @@ int main (int argc, char *argv[])
495499
if (audio_sample >= 256 * 256)
496500
e_o_f = 1;
497501

502+
if (c == 0) sample_number++;
503+
498504
if (decode_only == 0 && c != 0) continue;
499505
if (decode_only == 1 && c != 1) continue;
500506

@@ -572,16 +578,16 @@ int audio_get (int a)
572578

573579
void rdq_append (rrbb_t rrbb)
574580
{
575-
int chan;
581+
int chan, subchan, slice;
576582
alevel_t alevel;
577-
int subchan;
578583

579584

580585
chan = rrbb_get_chan(rrbb);
581586
subchan = rrbb_get_subchan(rrbb);
587+
slice = rrbb_get_slice(rrbb);
582588
alevel = rrbb_get_audio_level(rrbb);
583589

584-
hdlc_rec2_try_to_fix_later (rrbb, chan, subchan, alevel);
590+
hdlc_rec2_try_to_fix_later (rrbb, chan, subchan, slice, alevel);
585591
rrbb_delete (rrbb);
586592
}
587593

@@ -590,7 +596,7 @@ void rdq_append (rrbb_t rrbb)
590596
* This is called when we have a good frame.
591597
*/
592598

593-
void dlq_append (dlq_type_t type, int chan, int subchan, packet_t pp, alevel_t alevel, retry_t retries, char *spectrum)
599+
void dlq_append (dlq_type_t type, int chan, int subchan, int slice, packet_t pp, alevel_t alevel, retry_t retries, char *spectrum)
594600
{
595601

596602
char stemp[500];
@@ -627,6 +633,15 @@ void dlq_append (dlq_type_t type, int chan, int subchan, packet_t pp, alevel_t a
627633
text_color_set(DW_COLOR_DEBUG);
628634
dw_printf ("\n");
629635
dw_printf("DECODED[%d] ", packets_decoded );
636+
637+
/* Insert time stamp relative to start of file. */
638+
639+
double sec = (double)sample_number / my_audio_config.adev[0].samples_per_sec;
640+
int min = (int)(sec / 60.);
641+
sec -= min * 60;
642+
643+
dw_printf ("%d:%07.4f ", min, sec);
644+
630645
if (h != AX25_SOURCE) {
631646
dw_printf ("Digipeater ");
632647
}
@@ -641,27 +656,38 @@ void dlq_append (dlq_type_t type, int chan, int subchan, packet_t pp, alevel_t a
641656

642657
#endif
643658

644-
#if defined(EXPERIMENT_G) || defined(EXPERIMENT_H)
645-
int j;
646-
647-
for (j=0; j<MAX_SUBCHANS; j++) {
648-
if (spectrum[j] == '|') {
649-
count[j]++;
650-
}
651-
}
652-
#endif
659+
//#if defined(EXPERIMENT_G) || defined(EXPERIMENT_H)
660+
// int j;
661+
//
662+
// for (j=0; j<MAX_SUBCHANS; j++) {
663+
// if (spectrum[j] == '|') {
664+
// count[j]++;
665+
// }
666+
// }
667+
//#endif
653668

654669

655670
// Display non-APRS packets in a different color.
656671

657-
// TODO: display subchannel if appropriate.
672+
// Display channel with subchannel/slice if applicable.
658673

659674
if (ax25_is_aprs(pp)) {
660675
text_color_set(DW_COLOR_REC);
661-
dw_printf ("[%d] ", chan);
662676
}
663677
else {
664678
text_color_set(DW_COLOR_DEBUG);
679+
}
680+
681+
if (my_audio_config.achan[chan].num_subchan > 1 && my_audio_config.achan[chan].num_slicers == 1) {
682+
dw_printf ("[%d.%d] ", chan, subchan);
683+
}
684+
else if (my_audio_config.achan[chan].num_subchan == 1 && my_audio_config.achan[chan].num_slicers > 1) {
685+
dw_printf ("[%d.%d] ", chan, slice);
686+
}
687+
else if (my_audio_config.achan[chan].num_subchan > 1 && my_audio_config.achan[chan].num_slicers > 1) {
688+
dw_printf ("[%d.%d.%d] ", chan, subchan, slice);
689+
}
690+
else {
665691
dw_printf ("[%d] ", chan);
666692
}
667693

@@ -671,7 +697,7 @@ void dlq_append (dlq_type_t type, int chan, int subchan, packet_t pp, alevel_t a
671697

672698
ax25_delete (pp);
673699

674-
} /* end app_process_rec_packet */
700+
} /* end fake dlq_append */
675701

676702

677703
void ptt_set (int ot, int chan, int ptt_signal)

audio.h

+14-24
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,12 @@ enum audio_in_type_e {
4141

4242
typedef enum retry_e {
4343
RETRY_NONE=0,
44-
RETRY_SWAP_SINGLE=1,
45-
RETRY_SWAP_DOUBLE=2,
46-
RETRY_SWAP_TRIPLE=3,
47-
RETRY_REMOVE_SINGLE=4,
48-
RETRY_REMOVE_DOUBLE=5,
49-
RETRY_REMOVE_TRIPLE=6,
50-
RETRY_INSERT_SINGLE=7,
51-
RETRY_INSERT_DOUBLE=8,
52-
RETRY_SWAP_TWO_SEP=9,
53-
RETRY_SWAP_MANY=10,
54-
RETRY_REMOVE_MANY=11,
55-
RETRY_REMOVE_TWO_SEP=12,
56-
RETRY_MAX = 13} retry_t;
44+
RETRY_INVERT_SINGLE=1,
45+
RETRY_INVERT_DOUBLE=2,
46+
RETRY_INVERT_TRIPLE=3,
47+
RETRY_INVERT_TWO_SEP=4,
48+
RETRY_MAX = 5} retry_t;
49+
5750

5851
typedef enum sanity_e { SANITY_APRS, SANITY_AX25, SANITY_NONE } sanity_t;
5952

@@ -126,6 +119,9 @@ struct audio_s {
126119
int decimate; /* Reduce AFSK sample rate by this factor to */
127120
/* decrease computational requirements. */
128121

122+
int interleave; /* If > 1, interleave samples among multiple decoders. */
123+
/* Quick hack for experiment. */
124+
129125
int mark_freq; /* Two tones for AFSK modulation, in Hz. */
130126
int space_freq; /* Standard tones are 1200 and 2200 for 1200 baud. */
131127

@@ -140,19 +136,13 @@ struct audio_s {
140136

141137
int offset; /* Spacing between filter frequencies. */
142138

143-
/* Next two are derived from 3 above by demod_init. */
139+
int num_slicers; /* Number of different threshold points to decide */
140+
/* between mark or space. */
144141

145-
int num_demod; /* Number of different demodulators (filters). */
146-
/* Previously this was same as num_subchan but we add */
147-
/* a new variation in version 1.2 where a single modem */
148-
/* can feed multiple slicers and HDLC decoders. */
142+
/* This is derived from above by demod_init. */
149143

150-
/* num_slicers could be added to be more general but */
151-
/* for the intial experiment, we can just examine profiles. */
144+
int num_subchan; /* Total number of modems for each channel. */
152145

153-
int num_subchan; /* Total number of modems / hdlc decoders for each channel. */
154-
/* Potentially it could be product of strlen(profiles) * num_freq. */
155-
/* Currently can't use both at once. */
156146

157147
/* These are for dealing with imperfect frames. */
158148

@@ -267,7 +257,7 @@ struct audio_s {
267257

268258
#define DEFAULT_BITS_PER_SAMPLE 16
269259

270-
#define DEFAULT_FIX_BITS RETRY_SWAP_SINGLE
260+
#define DEFAULT_FIX_BITS RETRY_INVERT_SINGLE
271261

272262
/*
273263
* Standard for AFSK on VHF FM.

beacon.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ static void beacon_send (int j, dwgps_info_t *gpsinfo)
914914
/* Simulated reception. */
915915

916916
memset (&alevel, 0xff, sizeof(alevel));
917-
dlq_append (DLQ_REC_FRAME, g_misc_config_p->beacon[j].sendto_chan, 0, pp, alevel, 0, "");
917+
dlq_append (DLQ_REC_FRAME, g_misc_config_p->beacon[j].sendto_chan, 0, 0, pp, alevel, 0, "");
918918
break;
919919
}
920920
}

config.c

+16-4
Original file line numberDiff line numberDiff line change
@@ -1390,15 +1390,27 @@ void config_init (char *fname, struct audio_s *p_audio_config,
13901390
continue;
13911391
}
13921392
n = atoi(t);
1393-
if (n >= RETRY_NONE && n <= RETRY_REMOVE_TWO_SEP) {
1393+
if (n >= RETRY_NONE && n < RETRY_MAX) { // MAX is actually last valid +1
13941394
p_audio_config->achan[channel].fix_bits = (retry_t)n;
13951395
}
13961396
else {
13971397
p_audio_config->achan[channel].fix_bits = DEFAULT_FIX_BITS;
13981398
text_color_set(DW_COLOR_ERROR);
1399-
dw_printf ("Line %d: Invalid value for FIX_BITS. Using %d.\n",
1400-
line, p_audio_config->achan[channel].fix_bits);
1401-
}
1399+
dw_printf ("Line %d: Invalid value %d for FIX_BITS. Using default of %d.\n",
1400+
line, n, p_audio_config->achan[channel].fix_bits);
1401+
}
1402+
1403+
if (p_audio_config->achan[channel].fix_bits > RETRY_INVERT_SINGLE) {
1404+
text_color_set(DW_COLOR_INFO);
1405+
dw_printf ("Line %d: Using a FIX_BITS value greater than %d is not recommended for normal operation.\n",
1406+
line, RETRY_INVERT_SINGLE);
1407+
}
1408+
1409+
if (p_audio_config->achan[channel].fix_bits >= RETRY_INVERT_TWO_SEP) {
1410+
text_color_set(DW_COLOR_INFO);
1411+
dw_printf ("Line %d: Using a FIX_BITS value of %d will waste a lot of CPU power and produce wrong results.\n",
1412+
line, RETRY_INVERT_TWO_SEP);
1413+
}
14021414

14031415
t = split(NULL,0);
14041416
while (t != NULL) {

0 commit comments

Comments
 (0)