Home Alert System

Dependencies:   PWM_Tone_Library DHT

Committer:
aziz111
Date:
Fri Mar 08 17:15:02 2019 +0000
Revision:
5:569a4894abc1
Parent:
3:78f223d34f36
Final

Who changed what in which revision?

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