Skip to content

Commit ef573f2

Browse files
committed
Pull request 439 - Fix audio level display for B demodulator.
1 parent 399ffcc commit ef573f2

File tree

2 files changed

+22
-7
lines changed

2 files changed

+22
-7
lines changed

src/ax25_pad.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -1866,7 +1866,7 @@ packet_t ax25_get_nextp (packet_t this_p)
18661866
*
18671867
* Inputs: this_p - Current packet object.
18681868
*
1869-
* release_time - Time as returned by dtime_now().
1869+
* release_time - Time as returned by dtime_monotonic().
18701870
*
18711871
*------------------------------------------------------------------------------*/
18721872

@@ -2923,7 +2923,9 @@ int ax25_alevel_to_text (alevel_t alevel, char text[AX25_ALEVEL_TO_TEXT_SIZE])
29232923

29242924
snprintf (text, AX25_ALEVEL_TO_TEXT_SIZE, "%d(%+d/%+d)", alevel.rec, alevel.mark, alevel.space);
29252925
}
2926-
else if (alevel.mark == -1 && alevel.space == -1) { /* PSK - single number. */
2926+
else if ((alevel.mark == -1 && alevel.space == -1) || /* PSK */
2927+
(alevel.mark == -99 && alevel.space == -99)) { /* v. 1.7 "B" FM demodulator. */
2928+
// ?? Where does -99 come from?
29272929

29282930
snprintf (text, AX25_ALEVEL_TO_TEXT_SIZE, "%d", alevel.rec);
29292931
}

src/demod_afsk.c

+18-5
Original file line numberDiff line numberDiff line change
@@ -309,10 +309,6 @@ void demod_afsk_init (int samples_per_sec, int baud, int mark_freq,
309309
D->lp_window = BP_WINDOW_TRUNCATED;
310310
}
311311

312-
D->agc_fast_attack = 0.820;
313-
D->agc_slow_decay = 0.000214;
314-
D->agc_fast_attack = 0.45;
315-
D->agc_slow_decay = 0.000195;
316312
D->agc_fast_attack = 0.70;
317313
D->agc_slow_decay = 0.000090;
318314

@@ -372,10 +368,16 @@ void demod_afsk_init (int samples_per_sec, int baud, int mark_freq,
372368
// For scaling phase shift into normallized -1 to +1 range for mark and space.
373369
D->u.afsk.normalize_rpsam = 1.0 / (0.5 * abs(mark_freq - space_freq) * 2 * M_PI / samples_per_sec);
374370

371+
// New "B" demodulator does not use AGC but demod.c needs this to derive "quick" and
372+
// "sluggish" values for overall signal amplitude. That probably should be independent
373+
// of these values.
374+
D->agc_fast_attack = 0.70;
375+
D->agc_slow_decay = 0.000090;
376+
375377
D->pll_locked_inertia = 0.74;
376378
D->pll_searching_inertia = 0.50;
377379

378-
D->alevel_mark_peak = -1; // FIXME: disable display
380+
D->alevel_mark_peak = -1; // Disable received signal (m/s) display.
379381
D->alevel_space_peak = -1;
380382
break;
381383

@@ -868,6 +870,7 @@ static void nudge_pll (int chan, int subchan, int slice, float demod_out, struct
868870
{
869871
D->slicer[slice].prev_d_c_pll = D->slicer[slice].data_clock_pll;
870872

873+
871874
// Perform the add as unsigned to avoid signed overflow error.
872875
D->slicer[slice].data_clock_pll = (signed)((unsigned)(D->slicer[slice].data_clock_pll) + (unsigned)(D->pll_step_per_sample));
873876

@@ -901,7 +904,15 @@ static void nudge_pll (int chan, int subchan, int slice, float demod_out, struct
901904

902905
#endif
903906

907+
908+
#if 1
904909
hdlc_rec_bit (chan, subchan, slice, demod_out > 0, 0, quality);
910+
#else // TODO: new feature to measure data speed error.
911+
// Maybe hdlc_rec_bit could provide indication when frame starts.
912+
hdlc_rec_bit_new (chan, subchan, slice, demod_out > 0, 0, quality,
913+
&(D->slicer[slice].pll_nudge_total), &(D->slicer[slice].pll_symbol_count));
914+
D->slicer[slice].pll_symbol_count++;
915+
#endif
905916
pll_dcd_each_symbol2 (D, chan, subchan, slice);
906917
}
907918

@@ -912,12 +923,14 @@ static void nudge_pll (int chan, int subchan, int slice, float demod_out, struct
912923

913924
pll_dcd_signal_transition2 (D, slice, D->slicer[slice].data_clock_pll);
914925

926+
// TODO: signed int before = (signed int)(D->slicer[slice].data_clock_pll); // Treat as signed.
915927
if (D->slicer[slice].data_detect) {
916928
D->slicer[slice].data_clock_pll = (int)(D->slicer[slice].data_clock_pll * D->pll_locked_inertia);
917929
}
918930
else {
919931
D->slicer[slice].data_clock_pll = (int)(D->slicer[slice].data_clock_pll * D->pll_searching_inertia);
920932
}
933+
// TODO: D->slicer[slice].pll_nudge_total += (int64_t)((signed int)(D->slicer[slice].data_clock_pll)) - (int64_t)before;
921934
}
922935

923936
/*

0 commit comments

Comments
 (0)