temp

Dependencies:   mbed SDFileSystem MS5607 ADXL345_I2C FATFileSystem

Committer:
IKobayashi
Date:
Mon Mar 16 23:37:42 2020 +0900
Revision:
0:c88c3b616c00
copy

Who changed what in which revision?

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