arm_common_tables.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /* ----------------------------------------------------------------------
  2. * Copyright (C) 2010 ARM Limited. All rights reserved.
  3. *
  4. * $Date: 13/09/14 1:29p $Revision: V1.0.2
  5. *
  6. * Project: CMSIS DSP Library
  7. * Title: arm_common_tables.h
  8. *
  9. * Description: This file has extern declaration for common tables like Bitreverse, reciprocal etc which are used across different functions
  10. *
  11. * Target Processor: Cortex-M4/Cortex-M3
  12. *
  13. * Version 1.0.2 2010/11/11
  14. * Documentation updated.
  15. *
  16. * Version 1.0.1 2010/10/05
  17. * Production release and review comments incorporated.
  18. *
  19. * Version 1.0.0 2010/09/20
  20. * Production release and review comments incorporated.
  21. * -------------------------------------------------------------------- */
  22. #ifndef _ARM_COMMON_TABLES_H
  23. #define _ARM_COMMON_TABLES_H
  24. #include "arm_math.h"
  25. extern const uint16_t armBitRevTable[1024];
  26. extern const q15_t armRecipTableQ15[64];
  27. extern const q31_t armRecipTableQ31[64];
  28. extern const q31_t realCoefAQ31[1024];
  29. extern const q31_t realCoefBQ31[1024];
  30. extern const float32_t twiddleCoef[6144];
  31. extern const q31_t twiddleCoefQ31[6144];
  32. extern const q15_t twiddleCoefQ15[6144];
  33. #endif /* ARM_COMMON_TABLES_H */