Skip to content

Commit 7a88785

Browse files
committed
Minor cleanups.
1 parent d85abe2 commit 7a88785

8 files changed

+72
-55
lines changed

demod.c

+9-9
Original file line numberDiff line numberDiff line change
@@ -403,8 +403,8 @@ int demod_init (struct audio_s *pa)
403403
/* For signal level reporting, we want a longer term view. */
404404
// TODO: Should probably move this into the init functions.
405405

406-
D->quick_attack = D->agc_fast_attack * 0.2;
407-
D->sluggish_decay = D->agc_slow_decay * 0.2;
406+
D->quick_attack = D->agc_fast_attack * 0.2f;
407+
D->sluggish_decay = D->agc_slow_decay * 0.2f;
408408
}
409409
}
410410
else if (have_plus) {
@@ -458,8 +458,8 @@ int demod_init (struct audio_s *pa)
458458

459459
/* For signal level reporting, we want a longer term view. */
460460

461-
D->quick_attack = D->agc_fast_attack * 0.2;
462-
D->sluggish_decay = D->agc_slow_decay * 0.2;
461+
D->quick_attack = D->agc_fast_attack * 0.2f;
462+
D->sluggish_decay = D->agc_slow_decay * 0.2f;
463463
}
464464
else {
465465
int d;
@@ -511,8 +511,8 @@ int demod_init (struct audio_s *pa)
511511

512512
/* For signal level reporting, we want a longer term view. */
513513

514-
D->quick_attack = D->agc_fast_attack * 0.2;
515-
D->sluggish_decay = D->agc_slow_decay * 0.2;
514+
D->quick_attack = D->agc_fast_attack * 0.2f;
515+
D->sluggish_decay = D->agc_slow_decay * 0.2f;
516516

517517
} /* for each freq pair */
518518
}
@@ -687,7 +687,7 @@ int demod_init (struct audio_s *pa)
687687
dw_printf ("The ratio of audio samples per sec (%d) to data rate in baud (%d) is %.1f\n",
688688
save_audio_config_p->adev[ACHAN2ADEV(chan)].samples_per_sec,
689689
save_audio_config_p->achan[chan].baud,
690-
ratio);
690+
(double)ratio);
691691
if (ratio < 3) {
692692
text_color_set(DW_COLOR_ERROR);
693693
dw_printf ("There is little hope of success with such a low ratio. Use a higher sample rate.\n");
@@ -718,8 +718,8 @@ int demod_init (struct audio_s *pa)
718718

719719
/* For signal level reporting, we want a longer term view. */
720720

721-
D->quick_attack = D->agc_fast_attack * 0.2;
722-
D->sluggish_decay = D->agc_slow_decay * 0.2;
721+
D->quick_attack = D->agc_fast_attack * 0.2f;
722+
D->sluggish_decay = D->agc_slow_decay * 0.2f;
723723
}
724724
break;
725725

demod_9600.c

+16-16
Original file line numberDiff line numberDiff line change
@@ -87,21 +87,21 @@ __attribute__((hot)) __attribute__((always_inline))
8787
static inline float agc (float in, float fast_attack, float slow_decay, float *ppeak, float *pvalley)
8888
{
8989
if (in >= *ppeak) {
90-
*ppeak = in * fast_attack + *ppeak * (1. - fast_attack);
90+
*ppeak = in * fast_attack + *ppeak * (1.0f - fast_attack);
9191
}
9292
else {
93-
*ppeak = in * slow_decay + *ppeak * (1. - slow_decay);
93+
*ppeak = in * slow_decay + *ppeak * (1.0f - slow_decay);
9494
}
9595

9696
if (in <= *pvalley) {
97-
*pvalley = in * fast_attack + *pvalley * (1. - fast_attack);
97+
*pvalley = in * fast_attack + *pvalley * (1.0f - fast_attack);
9898
}
9999
else {
100-
*pvalley = in * slow_decay + *pvalley * (1. - slow_decay);
100+
*pvalley = in * slow_decay + *pvalley * (1.0f - slow_decay);
101101
}
102102

103103
if (*ppeak > *pvalley) {
104-
return ((in - 0.5 * (*ppeak + *pvalley)) / (*ppeak - *pvalley));
104+
return ((in - 0.5f * (*ppeak + *pvalley)) / (*ppeak - *pvalley));
105105
}
106106
return (0.0);
107107
}
@@ -144,8 +144,8 @@ void demod_9600_init (int samples_per_sec, int baud, struct demodulator_state_s
144144
D->lp_filter_len_bits = 76 * 9600.0 / (44100.0 * 2.0);
145145

146146
// Works best with odd number in some tests. Even is better in others.
147-
//D->lp_filter_size = ((int) (0.5 * ( D->lp_filter_len_bits * (float)samples_per_sec / (float)baud ))) * 2 + 1;
148-
D->lp_filter_size = (int) (( D->lp_filter_len_bits * (float)samples_per_sec / baud) + 0.5);
147+
//D->lp_filter_size = ((int) (0.5f * ( D->lp_filter_len_bits * (float)samples_per_sec / (float)baud ))) * 2 + 1;
148+
D->lp_filter_size = (int) (( D->lp_filter_len_bits * (float)samples_per_sec / baud) + 0.5f);
149149

150150
D->lp_window = BP_WINDOW_HAMMING;
151151
D->lpf_baud = 0.62;
@@ -199,7 +199,7 @@ void demod_9600_init (int samples_per_sec, int baud, struct demodulator_state_s
199199
/* Version 1.2: Experiment with different slicing levels. */
200200

201201
for (j = 0; j < MAX_SUBCHANS; j++) {
202-
slice_point[j] = 0.02 * (j - 0.5 * (MAX_SUBCHANS-1));
202+
slice_point[j] = 0.02f * (j - 0.5f * (MAX_SUBCHANS-1));
203203
//dw_printf ("slice_point[%d] = %+5.2f\n", j, slice_point[j]);
204204
}
205205

@@ -333,17 +333,17 @@ void demod_9600_process_sample (int chan, int sam, struct demodulator_state_s *D
333333
// TODO: probably no need for this. Just use D->m_peak, D->m_valley
334334

335335
if (amp >= D->alevel_mark_peak) {
336-
D->alevel_mark_peak = amp * D->quick_attack + D->alevel_mark_peak * (1. - D->quick_attack);
336+
D->alevel_mark_peak = amp * D->quick_attack + D->alevel_mark_peak * (1.0f - D->quick_attack);
337337
}
338338
else {
339-
D->alevel_mark_peak = amp * D->sluggish_decay + D->alevel_mark_peak * (1. - D->sluggish_decay);
339+
D->alevel_mark_peak = amp * D->sluggish_decay + D->alevel_mark_peak * (1.0f - D->sluggish_decay);
340340
}
341341

342342
if (amp <= D->alevel_space_peak) {
343-
D->alevel_space_peak = amp * D->quick_attack + D->alevel_space_peak * (1. - D->quick_attack);
343+
D->alevel_space_peak = amp * D->quick_attack + D->alevel_space_peak * (1.0f - D->quick_attack);
344344
}
345345
else {
346-
D->alevel_space_peak = amp * D->sluggish_decay + D->alevel_space_peak * (1. - D->sluggish_decay);
346+
D->alevel_space_peak = amp * D->sluggish_decay + D->alevel_space_peak * (1.0f - D->sluggish_decay);
347347
}
348348

349349
/*
@@ -544,10 +544,10 @@ static void inline nudge_pll (int chan, int subchan, int slice, float demod_out_
544544
fprintf (demod_log_fp, "Audio, Peak, Valley, Demod, SData, Descram, Clock\n");
545545
}
546546
fprintf (demod_log_fp, "%.3f, %.3f, %.3f, %.3f, %.2f, %.2f, %.2f\n",
547-
0.5 * fsam + 3.5,
548-
0.5 * D->m_peak + 3.5,
549-
0.5 * D->m_valley + 3.5,
550-
0.5 * demod_out + 2.0,
547+
0.5f * fsam + 3.5,
548+
0.5f * D->m_peak + 3.5,
549+
0.5f * D->m_valley + 3.5,
550+
0.5f * demod_out + 2.0,
551551
demod_data ? 1.35 : 1.0,
552552
descram ? .9 : .55,
553553
(D->data_clock_pll & 0x80000000) ? .1 : .45);

demod_afsk.c

+13-13
Original file line numberDiff line numberDiff line change
@@ -528,24 +528,24 @@ void demod_afsk_init (int samples_per_sec, int baud, int mark_freq,
528528
for (j=0; j<D->ms_filter_size; j++) {
529529
float am;
530530
float center;
531-
float shape = 1; /* Shape is an attempt to smooth out the */
531+
float shape = 1.0f; /* Shape is an attempt to smooth out the */
532532
/* abrupt edges in hopes of reducing */
533533
/* overshoot and ringing. */
534534
/* My first thought was to use a cosine shape. */
535535
/* Should investigate Hamming and Blackman */
536536
/* windows mentioned in the literature. */
537537
/* http://en.wikipedia.org/wiki/Window_function */
538538

539-
center = 0.5 * (D->ms_filter_size - 1);
540-
am = ((float)(j - center) / (float)samples_per_sec) * ((float)mark_freq) * (2 * M_PI);
539+
center = 0.5f * (D->ms_filter_size - 1);
540+
am = ((float)(j - center) / (float)samples_per_sec) * ((float)mark_freq) * (2.0f * (float)M_PI);
541541

542542
shape = window (D->ms_window, D->ms_filter_size, j);
543543

544-
D->m_sin_table[j] = sin(am) * shape;
545-
D->m_cos_table[j] = cos(am) * shape;
544+
D->m_sin_table[j] = sinf(am) * shape;
545+
D->m_cos_table[j] = cosf(am) * shape;
546546

547-
Gs += D->m_sin_table[j] * sin(am);
548-
Gc += D->m_cos_table[j] * cos(am);
547+
Gs += D->m_sin_table[j] * sinf(am);
548+
Gc += D->m_cos_table[j] * cosf(am);
549549

550550
#if DEBUG1
551551
dw_printf ("%6d %6.2f %6.2f %6.2f\n", j, shape, D->m_sin_table[j], D->m_cos_table[j]) ;
@@ -576,18 +576,18 @@ void demod_afsk_init (int samples_per_sec, int baud, int mark_freq,
576576
for (j=0; j<D->ms_filter_size; j++) {
577577
float as;
578578
float center;
579-
float shape = 1;
579+
float shape = 1.0f;
580580

581581
center = 0.5 * (D->ms_filter_size - 1);
582-
as = ((float)(j - center) / (float)samples_per_sec) * ((float)space_freq) * (2 * M_PI);
582+
as = ((float)(j - center) / (float)samples_per_sec) * ((float)space_freq) * (2.0f * (float)M_PI);
583583

584584
shape = window (D->ms_window, D->ms_filter_size, j);
585585

586-
D->s_sin_table[j] = sin(as) * shape;
587-
D->s_cos_table[j] = cos(as) * shape;
586+
D->s_sin_table[j] = sinf(as) * shape;
587+
D->s_cos_table[j] = cosf(as) * shape;
588588

589-
Gs += D->s_sin_table[j] * sin(as);
590-
Gc += D->s_cos_table[j] * cos(as);
589+
Gs += D->s_sin_table[j] * sinf(as);
590+
Gc += D->s_cos_table[j] * cosf(as);
591591

592592
#if DEBUG1
593593
dw_printf ("%6d %6.2f %6.2f %6.2f\n", j, shape, D->s_sin_table[j], D->s_cos_table[j] ) ;

demod_psk.c

+18-14
Original file line numberDiff line numberDiff line change
@@ -293,9 +293,9 @@ void demod_psk_init (enum modem_t modem_type, int samples_per_sec, int bps, char
293293

294294
D->ms_filter_len_bits = 1.25; // Delay line > 13/12 * symbol period
295295

296-
D->coffs = (int) round( (11. / 12.) * (float)samples_per_sec / (float)correct_baud );
296+
D->coffs = (int) round( (11.f / 12.f) * (float)samples_per_sec / (float)correct_baud );
297297
D->boffs = (int) round( (float)samples_per_sec / (float)correct_baud );
298-
D->soffs = (int) round( (13. / 12.) * (float)samples_per_sec / (float)correct_baud );
298+
D->soffs = (int) round( (13.f / 12.f) * (float)samples_per_sec / (float)correct_baud );
299299
}
300300
else {
301301

@@ -380,18 +380,18 @@ void demod_psk_init (enum modem_t modem_type, int samples_per_sec, int bps, char
380380

381381
D->ms_filter_len_bits = 1.25; // Delay line > 10/9 * symbol period
382382

383-
D->coffs = (int) round( (8. / 9.) * (float)samples_per_sec / (float)correct_baud );
383+
D->coffs = (int) round( (8.f / 9.f) * (float)samples_per_sec / (float)correct_baud );
384384
D->boffs = (int) round( (float)samples_per_sec / (float)correct_baud );
385-
D->soffs = (int) round( (10. / 9.) * (float)samples_per_sec / (float)correct_baud );
385+
D->soffs = (int) round( (10.f / 9.f) * (float)samples_per_sec / (float)correct_baud );
386386
}
387387

388388

389389
if (D->psk_use_lo) {
390-
D->lo_step = (int) round( 256. * 256. * 256. * 256. * carrier_freq / (float)samples_per_sec);
390+
D->lo_step = (int) round( 256. * 256. * 256. * 256. * carrier_freq / (double)samples_per_sec);
391391

392392
assert (MAX_FILTER_SIZE >= 256);
393393
for (j = 0; j < 256; j++) {
394-
D->m_sin_table[j] = sinf(2. * M_PI * j / 256.);
394+
D->m_sin_table[j] = sinf(2.f * (float)M_PI * j / 256.f);
395395
}
396396
}
397397

@@ -491,11 +491,11 @@ void demod_psk_init (enum modem_t modem_type, int samples_per_sec, int bps, char
491491
f2 = carrier_freq + D->prefilter_baud * correct_baud;
492492
#if 0
493493
text_color_set(DW_COLOR_DEBUG);
494-
dw_printf ("Generating prefilter %.0f to %.0f Hz.\n", f1, f2);
494+
dw_printf ("Generating prefilter %.0f to %.0f Hz.\n", (double)f1, (double)f2);
495495
#endif
496496
if (f1 <= 0) {
497497
text_color_set (DW_COLOR_ERROR);
498-
dw_printf ("Prefilter of %.0f to %.0f Hz doesn't make sense.\n", f1, f2);
498+
dw_printf ("Prefilter of %.0f to %.0f Hz doesn't make sense.\n", (double)f1, (double)f2);
499499
f1 = 10;
500500
}
501501

@@ -642,7 +642,7 @@ void demod_psk_process_sample (int chan, int subchan, int sam, struct demodulato
642642
/* 256 units/cycle makes modulo processing easier. */
643643
/* Make sure it is positive before truncating to integer. */
644644

645-
id = ((int)((delta / (2.f * M_PI) + 1.f) * 256.f)) & 0xff;
645+
id = ((int)((delta / (2.f * (float)M_PI) + 1.f) * 256.f)) & 0xff;
646646

647647
if (D->modem_type == MODEM_QPSK) {
648648
demod_phase_shift = ((id + 32) >> 6) & 0x3;
@@ -686,7 +686,7 @@ void demod_psk_process_sample (int chan, int subchan, int sam, struct demodulato
686686
}
687687
#else
688688
a = my_atan2f(I,Q);
689-
int id = ((int)((a / (2.f * M_PI) + 1.f) * 256.f)) & 0xff;
689+
int id = ((int)((a / (2.f * (float)M_PI) + 1.f) * 256.f)) & 0xff;
690690
// 128 compensates for 180 degree phase shift due
691691
// to 1 1/2 carrier cycles per symbol period.
692692
demod_phase_shift = ((id + 128) >> 6) & 0x3;
@@ -697,7 +697,7 @@ void demod_psk_process_sample (int chan, int subchan, int sam, struct demodulato
697697
int idelta;
698698

699699
a = my_atan2f(I,Q);
700-
idelta = ((int)((a / (2.f * M_PI) + 1.f) * 256.f)) & 0xff;
700+
idelta = ((int)((a / (2.f * (float)M_PI) + 1.f) * 256.f)) & 0xff;
701701
// 32 (90 degrees) compensates for 1800 carrier vs. 1800 baud.
702702
// 16 is to set threshold between constellation points.
703703
demod_phase_shift = ((idelta - 32 - 16) >> 5) & 0x7;
@@ -827,16 +827,20 @@ static void inline nudge_pll (int chan, int subchan, int slice, int demod_bits,
827827

828828
/*
829829
* If demodulated data has changed,
830-
* pull the PLL phase closer to zero.
830+
* Pull the PLL phase closer to zero.
831+
* Use "floor" instead of simply casting so the sign won't flip.
832+
* For example if we had -0.7 we want to end up with -1 rather than 0.
831833
*/
832834

835+
// TODO: demod_9600 has an improved technique. Would it help us here?
836+
833837
if (demod_bits != D->slicer[slice].prev_demod_data) {
834838

835839
if (hdlc_rec_gathering (chan, subchan, slice)) {
836-
D->slicer[slice].data_clock_pll = (int)floor((double)(D->slicer[slice].data_clock_pll) * D->pll_locked_inertia);
840+
D->slicer[slice].data_clock_pll = (int)floorf((float)(D->slicer[slice].data_clock_pll) * D->pll_locked_inertia);
837841
}
838842
else {
839-
D->slicer[slice].data_clock_pll = (int)floor((double)(D->slicer[slice].data_clock_pll) * D->pll_searching_inertia);
843+
D->slicer[slice].data_clock_pll = (int)floorf((float)(D->slicer[slice].data_clock_pll) * D->pll_searching_inertia);
840844
}
841845
}
842846

doc/APRS-Telemetry-Toolkit.pdf

5.96 KB
Binary file not shown.

morse.c

+2
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,8 @@ int morse_send (int chan, char *str, int wpm, int txdelay, int txtail)
272272
time_units, morse_units_str(str));
273273
}
274274

275+
audio_flush(ACHAN2ADEV(chan));
276+
275277
return (txdelay +
276278
(int) (TIME_UNITS_TO_MS(time_units, wpm) + 0.5) +
277279
txtail);

telemetry.c

+10-1
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,16 @@ void telemetry_bit_sense_message (char *station, char *msg, int quiet)
835835
}
836836
}
837837

838-
/* Skip comma if first character of comment field. */
838+
/*
839+
* Skip comma if first character of comment field.
840+
*
841+
* The protocol spec is inconsistent here.
842+
* The definition shows the Project Title immediately after a fixed width field of 8 binary digits.
843+
* The example has a comma in there.
844+
*
845+
* The toolkit telem-bits.pl script does insert the comma because it seems more sensible.
846+
* Here we accept it either way. i.e. Discard first character after data values if it is comma.
847+
*/
839848

840849
if (msg[n] == ',') n++;
841850

tocalls.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
APRS TO-CALL VERSION NUMBERS 14 Nov 2016
1+
APRS TO-CALL VERSION NUMBERS 6 Dec 2016
22
-------------------------------------------------------------------
33
WB4APR
4+
16 Dec 16 added APYSxx for W2GMD's Python APRS
45
14 Nov 16 Added APINxx for PinPoint by AB0WV
56
09 Nov 16 added APNICx for SQ5EKU http://sq5eku.blogspot.com/
67
24 Oct 16 added APTKPT TrackPoint N0LP, removed APZTKP
@@ -137,7 +138,7 @@ a TOCALL number series:
137138
APRRTx RPC electronics
138139
APRS Generic, (obsolete. Digis should use APNxxx instead)
139140
APRXxx >40 APRSmax
140-
APRXxx <39 for OH2MQK's RX-igate
141+
APRXxx <39 for OH2MQK's igate
141142
APRTLM used in MIM's and Mic-lites, etc
142143
APRtfc APRStraffic
143144
APRSTx APRStt (Touch tone)
@@ -176,6 +177,7 @@ a TOCALL number series:
176177
APY008 Yaesu VX-8 series
177178
APY350 Yaesu FTM-350 series
178179
APYTxx for YagTracker
180+
APYSxx for W2GMD's Python APRS
179181
APZ APZxxx Experimental
180182
APZ247 for UPRS NR0Q
181183
APZ0xx Xastir (old versions. See APX)

0 commit comments

Comments
 (0)