]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_STM32L152_Discovery_IAR/ST_Code/Libraries/CMSIS/Include/arm_common_tables.h
Add STM32L Discovery board project as a starting point to adapt to an RTOS demo.
[freertos] / FreeRTOS / Demo / CORTEX_STM32L152_Discovery_IAR / ST_Code / Libraries / CMSIS / Include / arm_common_tables.h
1 /* ---------------------------------------------------------------------- \r
2 * Copyright (C) 2010 ARM Limited. All rights reserved. \r
3\r
4 * $Date:        11. November 2010  \r
5 * $Revision:    V1.0.2  \r
6\r
7 * Project:          CMSIS DSP Library \r
8 * Title:            arm_common_tables.h \r
9\r
10 * Description:  This file has extern declaration for common tables like Bitreverse, reciprocal etc which are used across different functions \r
11\r
12 * Target Processor: Cortex-M4/Cortex-M3\r
13 *  \r
14 * Version 1.0.2 2010/11/11 \r
15 *    Documentation updated.  \r
16\r
17 * Version 1.0.1 2010/10/05  \r
18 *    Production release and review comments incorporated. \r
19\r
20 * Version 1.0.0 2010/09/20  \r
21 *    Production release and review comments incorporated. \r
22 * -------------------------------------------------------------------- */\r
23 \r
24 #ifndef _ARM_COMMON_TABLES_H\r
25 #define _ARM_COMMON_TABLES_H\r
26 \r
27 #include "arm_math.h"\r
28 \r
29 extern const uint16_t armBitRevTable[1024];\r
30 extern const q15_t armRecipTableQ15[64];\r
31 extern const q31_t armRecipTableQ31[64];\r
32 extern const q31_t realCoefAQ31[1024];\r
33 extern const q31_t realCoefBQ31[1024];\r
34 extern const float32_t twiddleCoef[6144];\r
35 extern const q31_t twiddleCoefQ31[6144];\r
36 extern const q15_t twiddleCoefQ15[6144];\r
37 \r
38 #endif /*  ARM_COMMON_TABLES_H */\r