ESP-IDF Firmware
Firmware architecture and call graph
Loading...
Searching...
No Matches
dsps_biquad_platform.h
Go to the documentation of this file.
1#ifndef _dsps_biquad_platform_H_
2#define _dsps_biquad_platform_H_
3
4#include "sdkconfig.h"
5
6#ifdef __XTENSA__
7#include <xtensa/config/core-isa.h>
8#include <xtensa/config/core-matmap.h>
9
10#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1))
11
12#define dsps_biquad_f32_ae32_enabled 1
13
14#endif
15
16#if CONFIG_IDF_TARGET_ESP32S3
17#define dsps_biquad_f32_aes3_enabled 1
18#else
19#define dsps_biquad_f32_aes3_enabled 0
20#endif
21
22#endif // __XTENSA__
23
24#ifdef CONFIG_IDF_TARGET_ESP32P4
25#ifdef CONFIG_DSP_OPTIMIZED
26#define dsps_biquad_f32_arp4_enabled 1
27#else
28#define dsps_biquad_f32_arp4_enabled 0
29#endif // CONFIG_DSP_OPTIMIZED
30#else
31#define dsps_biquad_f32_arp4_enabled 0
32#endif
33
34#endif // _dsps_biquad_platform_H_