Preliminary main mbed library for nexpaq development

Committer:
nexpaq
Date:
Fri Nov 04 20:54:50 2016 +0000
Revision:
1:d96dbedaebdb
Parent:
0:6c56fb4bc5f0
Removed extra directories for other platforms

Who changed what in which revision?

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