From 2c11ac24760b3f03e741a98561d3b71ef3de370a Mon Sep 17 00:00:00 2001 From: wb2osz Date: Sat, 16 Dec 2017 09:57:48 -0500 Subject: [PATCH] Remove special case for ARM. Default is better 9600 performance. --- demod.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/demod.c b/demod.c index 0022254..3953622 100644 --- a/demod.c +++ b/demod.c @@ -639,9 +639,13 @@ int demod_init (struct audio_s *pa) /* Not sure if it should be on for ARM too. */ /* Need to take a look at CPU usage and performance difference. */ -#ifndef __arm__ + /* Version 1.5: Remove special case for ARM. */ + /* We want higher performance to be the default. */ + /* "MODEM 9600 -" can be used on very slow CPU if necessary. */ + +//#ifndef __arm__ strlcpy (save_audio_config_p->achan[chan].profiles, "+", sizeof(save_audio_config_p->achan[chan].profiles)); -#endif +//#endif } #ifdef TUNE_UPSAMPLE