@@ -198,46 +198,57 @@ int demod_init (struct audio_s *pa)
198
198
assert (num_letters == (int )(strlen (just_letters )));
199
199
200
200
/*
201
- * Pick a good default demodulator if none specified.
201
+ * Pick a good default demodulator if none specified.
202
+ * Previously, we had "D" optimized for 300 bps.
203
+ * Gone in 1.7 so it is always "A+".
202
204
*/
203
205
if (num_letters == 0 ) {
206
+ strlcpy (just_letters , "A" , sizeof (just_letters ));
207
+ num_letters = strlen (just_letters );
204
208
205
- if (save_audio_config_p -> achan [chan ].baud < 600 ) {
206
-
207
- /* This has been optimized for 300 baud. */
208
-
209
- strlcpy (just_letters , "D" , sizeof (just_letters ));
209
+ if (have_plus != -1 ) have_plus = 1 ; // Add as default for version 1.2
210
+ // If not explicitly turned off.
211
+ }
210
212
211
- }
212
- else {
213
+ /*
214
+ * Special case for ARM.
215
+ * The higher end ARM chips have loads of power but many people
216
+ * are using a single core Pi Zero or similar.
217
+ * (I'm still using a model 1 for my digipeater/IGate!)
218
+ * Decreasing CPU requirement has a negligible impact on decoding performance.
219
+ *
220
+ * atest -PA- 01_Track_1.wav --> 1002 packets decoded.
221
+ * atest -PA- -D3 01_Track_1.wav --> 997 packets decoded.
222
+ *
223
+ * Someone concerned about 1/2 of one percent difference can add "-D 1"
224
+ */
213
225
#if __arm__
214
- /* We probably don't have a lot of CPU power available. */
215
- /* Previously we would use F if possible otherwise fall back to A. */
216
-
217
- /* In version 1.2, new default is E+ /3. */
218
- strlcpy (just_letters , "E" , sizeof (just_letters )); // version 1.2 now E.
219
- if (have_plus != -1 ) have_plus = 1 ; // Add as default for version 1.2
220
- // If not explicitly turned off.
221
- if (save_audio_config_p -> achan [chan ].decimate == 0 ) {
222
- if (save_audio_config_p -> adev [ACHAN2ADEV (chan )].samples_per_sec > 40000 ) {
223
- save_audio_config_p -> achan [chan ].decimate = 3 ;
224
- }
225
- }
226
- #else
227
- strlcpy (just_letters , "E" , sizeof (just_letters )); // version 1.2 changed C to E.
228
- if (have_plus != -1 ) have_plus = 1 ; // Add as default for version 1.2
229
- // If not explicitly turned off.
230
- #endif
226
+ if (save_audio_config_p -> achan [chan ].decimate == 0 ) {
227
+ if (save_audio_config_p -> adev [ACHAN2ADEV (chan )].samples_per_sec > 40000 ) {
228
+ save_audio_config_p -> achan [chan ].decimate = 3 ;
231
229
}
232
- num_letters = 1 ;
233
230
}
231
+ #endif
232
+
233
+ /*
234
+ * Number of filter taps is proportional to number of audio samples in a "symbol" duration.
235
+ * These can get extremely large for low speeds, e.g. 300 baud.
236
+ * In this case, increase the decimation ration. Crude approximation. Could be improved.
237
+ */
238
+ if (save_audio_config_p -> achan [chan ].decimate == 0 &&
239
+ save_audio_config_p -> adev [ACHAN2ADEV (chan )].samples_per_sec > 40000 &&
240
+ save_audio_config_p -> achan [chan ].baud < 600 ) {
234
241
242
+ // Avoid enormous number of filter taps.
243
+
244
+ save_audio_config_p -> achan [chan ].decimate = 3 ;
245
+ }
235
246
236
- assert (num_letters == (int )(strlen (just_letters )));
237
247
238
248
/*
239
249
* Put it back together again.
240
250
*/
251
+ assert (num_letters == (int )(strlen (just_letters )));
241
252
242
253
/* At this point, have_plus can have 3 values: */
243
254
/* 1 = turned on, either explicitly or by applied default */
@@ -286,7 +297,7 @@ int demod_init (struct audio_s *pa)
286
297
287
298
if (save_audio_config_p -> achan [chan ].decimate == 0 ) {
288
299
save_audio_config_p -> achan [chan ].decimate = 1 ;
289
- if (strchr (just_letters , 'D ' ) != NULL && save_audio_config_p -> adev [ACHAN2ADEV (chan )].samples_per_sec > 40000 ) {
300
+ if (strchr (just_letters , 'B ' ) != NULL && save_audio_config_p -> adev [ACHAN2ADEV (chan )].samples_per_sec > 40000 ) {
290
301
save_audio_config_p -> achan [chan ].decimate = 3 ;
291
302
}
292
303
}
0 commit comments