Remove special case for ARM. Default is better 9600 performance.

This commit is contained in:
wb2osz 2017-12-16 09:57:48 -05:00
parent 1740a04754
commit 2c11ac2476
1 changed files with 6 additions and 2 deletions

View File

@ -639,9 +639,13 @@ int demod_init (struct audio_s *pa)
/* Not sure if it should be on for ARM too. */ /* Not sure if it should be on for ARM too. */
/* Need to take a look at CPU usage and performance difference. */ /* 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)); strlcpy (save_audio_config_p->achan[chan].profiles, "+", sizeof(save_audio_config_p->achan[chan].profiles));
#endif //#endif
} }
#ifdef TUNE_UPSAMPLE #ifdef TUNE_UPSAMPLE