Opus codec with STM32WB5MMGHTR
Hi,
I have been trying to add opus codec in my project. But I cannot able to build after adding the opus file. If anyone successfully added opus with their project help me out. I mostly get errors on 'Neon' which is used for FFT. As I searched neon is for cortex A, but the STM32WB5MMGHTR is cortex M based. I'm also adding my config file code for opus here
#ifndef CONFIG_H
#define CONFIG_H
/* Variable leng arays */
#define VAR_ARRAYS
/* Comment out the next line for floating-point code */
#define FIXED_POINT 1
#define OPUS_BUILD 1
#endif /* CONFIG_H */
Help me to add opus library with my project.