The CMSIS DSP 5 library

Dependents:   Nucleo-Heart-Rate ejercicioVrms2 PROYECTOFINAL ejercicioVrms ... more

Committer:
xorjoep
Date:
Wed Jun 20 11:21:31 2018 +0000
Revision:
1:24714b45cd1b
The newest version of the CMSIS library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
xorjoep 1:24714b45cd1b 1 /* ----------------------------------------------------------------------
xorjoep 1:24714b45cd1b 2 * Project: CMSIS DSP Library
xorjoep 1:24714b45cd1b 3 * Title: arm_const_structs.h
xorjoep 1:24714b45cd1b 4 * Description: Constant structs that are initialized for user convenience.
xorjoep 1:24714b45cd1b 5 * For example, some can be given as arguments to the arm_cfft_f32() function.
xorjoep 1:24714b45cd1b 6 *
xorjoep 1:24714b45cd1b 7 * $Date: 27. January 2017
xorjoep 1:24714b45cd1b 8 * $Revision: V.1.5.1
xorjoep 1:24714b45cd1b 9 *
xorjoep 1:24714b45cd1b 10 * Target Processor: Cortex-M cores
xorjoep 1:24714b45cd1b 11 * -------------------------------------------------------------------- */
xorjoep 1:24714b45cd1b 12 /*
xorjoep 1:24714b45cd1b 13 * Copyright (C) 2010-2017 ARM Limited or its affiliates. All rights reserved.
xorjoep 1:24714b45cd1b 14 *
xorjoep 1:24714b45cd1b 15 * SPDX-License-Identifier: Apache-2.0
xorjoep 1:24714b45cd1b 16 *
xorjoep 1:24714b45cd1b 17 * Licensed under the Apache License, Version 2.0 (the License); you may
xorjoep 1:24714b45cd1b 18 * not use this file except in compliance with the License.
xorjoep 1:24714b45cd1b 19 * You may obtain a copy of the License at
xorjoep 1:24714b45cd1b 20 *
xorjoep 1:24714b45cd1b 21 * www.apache.org/licenses/LICENSE-2.0
xorjoep 1:24714b45cd1b 22 *
xorjoep 1:24714b45cd1b 23 * Unless required by applicable law or agreed to in writing, software
xorjoep 1:24714b45cd1b 24 * distributed under the License is distributed on an AS IS BASIS, WITHOUT
xorjoep 1:24714b45cd1b 25 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
xorjoep 1:24714b45cd1b 26 * See the License for the specific language governing permissions and
xorjoep 1:24714b45cd1b 27 * limitations under the License.
xorjoep 1:24714b45cd1b 28 */
xorjoep 1:24714b45cd1b 29
xorjoep 1:24714b45cd1b 30 #ifndef _ARM_CONST_STRUCTS_H
xorjoep 1:24714b45cd1b 31 #define _ARM_CONST_STRUCTS_H
xorjoep 1:24714b45cd1b 32
xorjoep 1:24714b45cd1b 33 #include "arm_math.h"
xorjoep 1:24714b45cd1b 34 #include "arm_common_tables.h"
xorjoep 1:24714b45cd1b 35
xorjoep 1:24714b45cd1b 36 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len16;
xorjoep 1:24714b45cd1b 37 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len32;
xorjoep 1:24714b45cd1b 38 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len64;
xorjoep 1:24714b45cd1b 39 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len128;
xorjoep 1:24714b45cd1b 40 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len256;
xorjoep 1:24714b45cd1b 41 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len512;
xorjoep 1:24714b45cd1b 42 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len1024;
xorjoep 1:24714b45cd1b 43 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len2048;
xorjoep 1:24714b45cd1b 44 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len4096;
xorjoep 1:24714b45cd1b 45
xorjoep 1:24714b45cd1b 46 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len16;
xorjoep 1:24714b45cd1b 47 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len32;
xorjoep 1:24714b45cd1b 48 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len64;
xorjoep 1:24714b45cd1b 49 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len128;
xorjoep 1:24714b45cd1b 50 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len256;
xorjoep 1:24714b45cd1b 51 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len512;
xorjoep 1:24714b45cd1b 52 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len1024;
xorjoep 1:24714b45cd1b 53 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len2048;
xorjoep 1:24714b45cd1b 54 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len4096;
xorjoep 1:24714b45cd1b 55
xorjoep 1:24714b45cd1b 56 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len16;
xorjoep 1:24714b45cd1b 57 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len32;
xorjoep 1:24714b45cd1b 58 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len64;
xorjoep 1:24714b45cd1b 59 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len128;
xorjoep 1:24714b45cd1b 60 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len256;
xorjoep 1:24714b45cd1b 61 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len512;
xorjoep 1:24714b45cd1b 62 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len1024;
xorjoep 1:24714b45cd1b 63 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len2048;
xorjoep 1:24714b45cd1b 64 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len4096;
xorjoep 1:24714b45cd1b 65
xorjoep 1:24714b45cd1b 66 #endif