ESP-IDF Firmware
Firmware architecture and call graph
Loading...
Searching...
No Matches
dsps_add_platform.h
Go to the documentation of this file.
1#ifndef _dsps_add_platform_H_
2#define _dsps_add_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 (CONFIG_IDF_TARGET_ESP32S3 == 1)
11#define dsps_add_f32_ae32_enabled 1
12#define dsps_add_s16_aes3_enabled 1
13#else
14
15#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1))
16
17#define dsps_add_f32_ae32_enabled 1
18#define dsps_add_s16_ae32_enabled 1
19
20#endif
21
22#if (XCHAL_HAVE_LOOPS == 1)
23#define dsps_add_f32_ae32_enabled 1
24#define dsps_add_s16_ae32_enabled 1
25#endif
26
27#endif // CONFIG_IDF_TARGET_ESP32S3
28
29#endif // __XTENSA__
30
31
32#endif // _dsps_add_platform_H_