Slight Mod

Dependencies:   mbed-dsp mbed

Fork of Hat_Board_v5 by John Scharf

Committer:
drnow
Date:
Thu Apr 03 10:56:37 2014 +0000
Revision:
5:ef42f4648198
Parent:
4:e9df42113893
Slight mod;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jjes144 4:e9df42113893 1 /* ----------------------------------------------------------------------
jjes144 4:e9df42113893 2 * Copyright (C) 2010-2013 ARM Limited. All rights reserved.
jjes144 4:e9df42113893 3 *
jjes144 4:e9df42113893 4 * $Date: 17. January 2013
jjes144 4:e9df42113893 5 * $Revision: V1.4.1
jjes144 4:e9df42113893 6 *
jjes144 4:e9df42113893 7 * Project: CMSIS DSP Library
jjes144 4:e9df42113893 8 * Title: arm_const_structs.h
jjes144 4:e9df42113893 9 *
jjes144 4:e9df42113893 10 * Description: This file has constant structs that are initialized for
jjes144 4:e9df42113893 11 * user convenience. For example, some can be given as
jjes144 4:e9df42113893 12 * arguments to the arm_cfft_f32() function.
jjes144 4:e9df42113893 13 *
jjes144 4:e9df42113893 14 * Target Processor: Cortex-M4/Cortex-M3
jjes144 4:e9df42113893 15 *
jjes144 4:e9df42113893 16 * Redistribution and use in source and binary forms, with or without
jjes144 4:e9df42113893 17 * modification, are permitted provided that the following conditions
jjes144 4:e9df42113893 18 * are met:
jjes144 4:e9df42113893 19 * - Redistributions of source code must retain the above copyright
jjes144 4:e9df42113893 20 * notice, this list of conditions and the following disclaimer.
jjes144 4:e9df42113893 21 * - Redistributions in binary form must reproduce the above copyright
jjes144 4:e9df42113893 22 * notice, this list of conditions and the following disclaimer in
jjes144 4:e9df42113893 23 * the documentation and/or other materials provided with the
jjes144 4:e9df42113893 24 * distribution.
jjes144 4:e9df42113893 25 * - Neither the name of ARM LIMITED nor the names of its contributors
jjes144 4:e9df42113893 26 * may be used to endorse or promote products derived from this
jjes144 4:e9df42113893 27 * software without specific prior written permission.
jjes144 4:e9df42113893 28 *
jjes144 4:e9df42113893 29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
jjes144 4:e9df42113893 30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
jjes144 4:e9df42113893 31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
jjes144 4:e9df42113893 32 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
jjes144 4:e9df42113893 33 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
jjes144 4:e9df42113893 34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
jjes144 4:e9df42113893 35 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
jjes144 4:e9df42113893 36 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
jjes144 4:e9df42113893 37 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
jjes144 4:e9df42113893 38 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
jjes144 4:e9df42113893 39 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
jjes144 4:e9df42113893 40 * POSSIBILITY OF SUCH DAMAGE.
jjes144 4:e9df42113893 41 * -------------------------------------------------------------------- */
jjes144 4:e9df42113893 42
jjes144 4:e9df42113893 43 #ifndef _ARM_CONST_STRUCTS_H
jjes144 4:e9df42113893 44 #define _ARM_CONST_STRUCTS_H
jjes144 4:e9df42113893 45
jjes144 4:e9df42113893 46 #include "arm_math.h"
jjes144 4:e9df42113893 47 #include "arm_common_tables.h"
jjes144 4:e9df42113893 48
jjes144 4:e9df42113893 49 const arm_cfft_instance_f32 arm_cfft_sR_f32_len16 = {
jjes144 4:e9df42113893 50 16, twiddleCoef_16, armBitRevIndexTable16, ARMBITREVINDEXTABLE__16_TABLE_LENGTH
jjes144 4:e9df42113893 51 };
jjes144 4:e9df42113893 52
jjes144 4:e9df42113893 53 const arm_cfft_instance_f32 arm_cfft_sR_f32_len32 = {
jjes144 4:e9df42113893 54 32, twiddleCoef_32, armBitRevIndexTable32, ARMBITREVINDEXTABLE__32_TABLE_LENGTH
jjes144 4:e9df42113893 55 };
jjes144 4:e9df42113893 56
jjes144 4:e9df42113893 57 const arm_cfft_instance_f32 arm_cfft_sR_f32_len64 = {
jjes144 4:e9df42113893 58 64, twiddleCoef_64, armBitRevIndexTable64, ARMBITREVINDEXTABLE__64_TABLE_LENGTH
jjes144 4:e9df42113893 59 };
jjes144 4:e9df42113893 60
jjes144 4:e9df42113893 61 const arm_cfft_instance_f32 arm_cfft_sR_f32_len128 = {
jjes144 4:e9df42113893 62 128, twiddleCoef_128, armBitRevIndexTable128, ARMBITREVINDEXTABLE_128_TABLE_LENGTH
jjes144 4:e9df42113893 63 };
jjes144 4:e9df42113893 64
jjes144 4:e9df42113893 65 const arm_cfft_instance_f32 arm_cfft_sR_f32_len256 = {
jjes144 4:e9df42113893 66 256, twiddleCoef_256, armBitRevIndexTable256, ARMBITREVINDEXTABLE_256_TABLE_LENGTH
jjes144 4:e9df42113893 67 };
jjes144 4:e9df42113893 68
jjes144 4:e9df42113893 69 const arm_cfft_instance_f32 arm_cfft_sR_f32_len512 = {
jjes144 4:e9df42113893 70 512, twiddleCoef_512, armBitRevIndexTable512, ARMBITREVINDEXTABLE_512_TABLE_LENGTH
jjes144 4:e9df42113893 71 };
jjes144 4:e9df42113893 72
jjes144 4:e9df42113893 73 const arm_cfft_instance_f32 arm_cfft_sR_f32_len1024 = {
jjes144 4:e9df42113893 74 1024, twiddleCoef_1024, armBitRevIndexTable1024, ARMBITREVINDEXTABLE1024_TABLE_LENGTH
jjes144 4:e9df42113893 75 };
jjes144 4:e9df42113893 76
jjes144 4:e9df42113893 77 const arm_cfft_instance_f32 arm_cfft_sR_f32_len2048 = {
jjes144 4:e9df42113893 78 2048, twiddleCoef_2048, armBitRevIndexTable2048, ARMBITREVINDEXTABLE2048_TABLE_LENGTH
jjes144 4:e9df42113893 79 };
jjes144 4:e9df42113893 80
jjes144 4:e9df42113893 81 const arm_cfft_instance_f32 arm_cfft_sR_f32_len4096 = {
jjes144 4:e9df42113893 82 4096, twiddleCoef_4096, armBitRevIndexTable4096, ARMBITREVINDEXTABLE4096_TABLE_LENGTH
jjes144 4:e9df42113893 83 };
jjes144 4:e9df42113893 84
jjes144 4:e9df42113893 85 #endif
jjes144 4:e9df42113893 86