Skip to content

Commit 2c11ac2

Browse files
committed
Remove special case for ARM. Default is better 9600 performance.
1 parent 1740a04 commit 2c11ac2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

demod.c

+6-2
Original file line numberDiff line numberDiff line change
@@ -639,9 +639,13 @@ int demod_init (struct audio_s *pa)
639639
/* Not sure if it should be on for ARM too. */
640640
/* Need to take a look at CPU usage and performance difference. */
641641

642-
#ifndef __arm__
642+
/* Version 1.5: Remove special case for ARM. */
643+
/* We want higher performance to be the default. */
644+
/* "MODEM 9600 -" can be used on very slow CPU if necessary. */
645+
646+
//#ifndef __arm__
643647
strlcpy (save_audio_config_p->achan[chan].profiles, "+", sizeof(save_audio_config_p->achan[chan].profiles));
644-
#endif
648+
//#endif
645649
}
646650

647651
#ifdef TUNE_UPSAMPLE

0 commit comments

Comments
 (0)