Displaying 1 result from an estimated 1 matches for "override_iir_mem16".
Did you mean:
override_fir_mem16
2014 May 27
0
How to compile speex on STM32F10xxx controller with arm-none-eabi-gcc
...e compiled, many errors occurred: many functions are
undefined, such as "filter_mem16".
The stasements is like this:
#ifndef OVERRIDE_FILTER_MEM16
void filter_mem16( ... )
{ ... }
#endif
But at the beginning:
#ifdef __GNUC__ /* GNU Compiler */
#define OVERRIDE_FILTER_MEM16
#define OVERRIDE_IIR_MEM16
#define OVERRIDE_FIR_MEM16
#include "filters_cortexM3.h"
#endif
What's wrong with it? Should i modify the files?