ESP-IDF Firmware
Firmware architecture and call graph
Loading...
Searching...
No Matches
esp_dsp.h
Go to the documentation of this file.
1// Copyright 2018-2023 Espressif Systems (Shanghai) PTE LTD
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#ifndef _esp_dsp_H_
16#define _esp_dsp_H_
17
18#ifdef __cplusplus
19extern "C"
20{
21#endif
22
23// Common includes
24#include "dsp_common.h"
25#include "dsp_types.h"
26
27// Signal processing
28#include "dsps_dotprod.h"
29#include "dsps_math.h"
30#include "dsps_fir.h"
31#include "dsps_resampler.h"
32#include "dsps_biquad.h"
33#include "dsps_biquad_gen.h"
34#include "dsps_wind.h"
35#include "dsps_conv.h"
36#include "dsps_corr.h"
37
38#include "dsps_d_gen.h"
39#include "dsps_h_gen.h"
40#include "dsps_tone_gen.h"
41#include "dsps_snr.h"
42#include "dsps_sfdr.h"
43
44#include "dsps_fft2r.h"
45#include "dsps_fft4r.h"
46#include "dsps_dct.h"
47
48// Matrix operations
49#include "dspm_matrix.h"
50
51// Support functions
52#include "dsps_view.h"
53
54// Image processing functions:
55#include "dspi_dotprod.h"
56#include "dspi_conv.h"
57
58#ifdef __cplusplus
59}
60#endif
61
62#ifdef __cplusplus
63#include "mat.h"
64#endif
65
66#endif // _esp_dsp_H_