,,

Fork of Application by Daniel Sygut

Committer:
Zaitsev
Date:
Thu Feb 15 14:29:23 2018 +0000
Revision:
15:2a20c3d2616e
Parent:
10:41552d038a69
j

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Zaitsev 10:41552d038a69 1 /* ----------------------------------------------------------------------
Zaitsev 10:41552d038a69 2 * Copyright (C) 2010-2014 ARM Limited. All rights reserved.
Zaitsev 10:41552d038a69 3 *
Zaitsev 10:41552d038a69 4 * $Date: 19. March 2015
Zaitsev 10:41552d038a69 5 * $Revision: V.1.4.5
Zaitsev 10:41552d038a69 6 *
Zaitsev 10:41552d038a69 7 * Project: CMSIS DSP Library
Zaitsev 10:41552d038a69 8 * Title: arm_const_structs.h
Zaitsev 10:41552d038a69 9 *
Zaitsev 10:41552d038a69 10 * Description: This file has constant structs that are initialized for
Zaitsev 10:41552d038a69 11 * user convenience. For example, some can be given as
Zaitsev 10:41552d038a69 12 * arguments to the arm_cfft_f32() function.
Zaitsev 10:41552d038a69 13 *
Zaitsev 10:41552d038a69 14 * Target Processor: Cortex-M4/Cortex-M3
Zaitsev 10:41552d038a69 15 *
Zaitsev 10:41552d038a69 16 * Redistribution and use in source and binary forms, with or without
Zaitsev 10:41552d038a69 17 * modification, are permitted provided that the following conditions
Zaitsev 10:41552d038a69 18 * are met:
Zaitsev 10:41552d038a69 19 * - Redistributions of source code must retain the above copyright
Zaitsev 10:41552d038a69 20 * notice, this list of conditions and the following disclaimer.
Zaitsev 10:41552d038a69 21 * - Redistributions in binary form must reproduce the above copyright
Zaitsev 10:41552d038a69 22 * notice, this list of conditions and the following disclaimer in
Zaitsev 10:41552d038a69 23 * the documentation and/or other materials provided with the
Zaitsev 10:41552d038a69 24 * distribution.
Zaitsev 10:41552d038a69 25 * - Neither the name of ARM LIMITED nor the names of its contributors
Zaitsev 10:41552d038a69 26 * may be used to endorse or promote products derived from this
Zaitsev 10:41552d038a69 27 * software without specific prior written permission.
Zaitsev 10:41552d038a69 28 *
Zaitsev 10:41552d038a69 29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Zaitsev 10:41552d038a69 30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Zaitsev 10:41552d038a69 31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
Zaitsev 10:41552d038a69 32 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
Zaitsev 10:41552d038a69 33 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
Zaitsev 10:41552d038a69 34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
Zaitsev 10:41552d038a69 35 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
Zaitsev 10:41552d038a69 36 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Zaitsev 10:41552d038a69 37 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
Zaitsev 10:41552d038a69 38 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
Zaitsev 10:41552d038a69 39 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Zaitsev 10:41552d038a69 40 * POSSIBILITY OF SUCH DAMAGE.
Zaitsev 10:41552d038a69 41 * -------------------------------------------------------------------- */
Zaitsev 10:41552d038a69 42
Zaitsev 10:41552d038a69 43 #ifndef _ARM_CONST_STRUCTS_H
Zaitsev 10:41552d038a69 44 #define _ARM_CONST_STRUCTS_H
Zaitsev 10:41552d038a69 45
Zaitsev 10:41552d038a69 46 #include "arm_math.h"
Zaitsev 10:41552d038a69 47 #include "arm_common_tables.h"
Zaitsev 10:41552d038a69 48
Zaitsev 10:41552d038a69 49 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len16;
Zaitsev 10:41552d038a69 50 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len32;
Zaitsev 10:41552d038a69 51 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len64;
Zaitsev 10:41552d038a69 52 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len128;
Zaitsev 10:41552d038a69 53 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len256;
Zaitsev 10:41552d038a69 54 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len512;
Zaitsev 10:41552d038a69 55 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len1024;
Zaitsev 10:41552d038a69 56 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len2048;
Zaitsev 10:41552d038a69 57 extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len4096;
Zaitsev 10:41552d038a69 58
Zaitsev 10:41552d038a69 59 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len16;
Zaitsev 10:41552d038a69 60 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len32;
Zaitsev 10:41552d038a69 61 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len64;
Zaitsev 10:41552d038a69 62 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len128;
Zaitsev 10:41552d038a69 63 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len256;
Zaitsev 10:41552d038a69 64 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len512;
Zaitsev 10:41552d038a69 65 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len1024;
Zaitsev 10:41552d038a69 66 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len2048;
Zaitsev 10:41552d038a69 67 extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len4096;
Zaitsev 10:41552d038a69 68
Zaitsev 10:41552d038a69 69 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len16;
Zaitsev 10:41552d038a69 70 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len32;
Zaitsev 10:41552d038a69 71 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len64;
Zaitsev 10:41552d038a69 72 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len128;
Zaitsev 10:41552d038a69 73 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len256;
Zaitsev 10:41552d038a69 74 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len512;
Zaitsev 10:41552d038a69 75 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len1024;
Zaitsev 10:41552d038a69 76 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len2048;
Zaitsev 10:41552d038a69 77 extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len4096;
Zaitsev 10:41552d038a69 78
Zaitsev 10:41552d038a69 79 #endif