Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

analyze_fft256.h 3.7KB

10 år sedan
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* Audio Library for Teensy 3.X
  2. * Copyright (c) 2014, Paul Stoffregen, paul@pjrc.com
  3. *
  4. * Development of this audio library was funded by PJRC.COM, LLC by sales of
  5. * Teensy and Audio Adaptor boards. Please support PJRC's efforts to develop
  6. * open source software by purchasing Teensy or other PJRC products.
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice, development funding notice, and this permission
  16. * notice shall be included in all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #ifndef analyze_fft256_h_
  27. #define analyze_fft256_h_
  28. #include "AudioStream.h"
  29. #include "arm_math.h"
  30. // windows.c
  31. extern "C" {
  32. extern const int16_t AudioWindowHanning256[];
  33. extern const int16_t AudioWindowBartlett256[];
  34. extern const int16_t AudioWindowBlackman256[];
  35. extern const int16_t AudioWindowFlattop256[];
  36. extern const int16_t AudioWindowBlackmanHarris256[];
  37. extern const int16_t AudioWindowNuttall256[];
  38. extern const int16_t AudioWindowBlackmanNuttall256[];
  39. extern const int16_t AudioWindowWelch256[];
  40. extern const int16_t AudioWindowHamming256[];
  41. extern const int16_t AudioWindowCosine256[];
  42. extern const int16_t AudioWindowTukey256[];
  43. }
  44. class AudioAnalyzeFFT256 : public AudioStream
  45. {
  46. public:
  47. AudioAnalyzeFFT256() : AudioStream(1, inputQueueArray),
  48. window(AudioWindowHanning256), count(0), outputflag(false) {
  49. arm_cfft_radix4_init_q15(&fft_inst, 256, 0, 1);
  50. #if AUDIO_BLOCK_SAMPLES == 128
  51. prevblock = NULL;
  52. naverage = 8;
  53. #elif AUDIO_BLOCK_SAMPLES == 64
  54. prevblocks[0] = NULL;
  55. prevblocks[1] = NULL;
  56. prevblocks[2] = NULL;
  57. #endif
  58. }
  59. bool available() {
  60. if (outputflag == true) {
  61. outputflag = false;
  62. return true;
  63. }
  64. return false;
  65. }
  66. float read(unsigned int binNumber) {
  67. if (binNumber > 127) return 0.0;
  68. return (float)(output[binNumber]) * (1.0 / 16384.0);
  69. }
  70. float read(unsigned int binFirst, unsigned int binLast) {
  71. if (binFirst > binLast) {
  72. unsigned int tmp = binLast;
  73. binLast = binFirst;
  74. binFirst = tmp;
  75. }
  76. if (binFirst > 127) return 0.0;
  77. if (binLast > 127) binLast = 127;
  78. uint32_t sum = 0;
  79. do {
  80. sum += output[binFirst++];
  81. } while (binFirst <= binLast);
  82. return (float)sum * (1.0 / 16384.0);
  83. }
  84. void averageTogether(uint8_t n) {
  85. #if AUDIO_BLOCK_SAMPLES == 128
  86. if (n == 0) n = 1;
  87. naverage = n;
  88. #endif
  89. }
  90. void windowFunction(const int16_t *w) {
  91. window = w;
  92. }
  93. virtual void update(void);
  94. uint16_t output[128] __attribute__ ((aligned (4)));
  95. private:
  96. const int16_t *window;
  97. #if AUDIO_BLOCK_SAMPLES == 128
  98. audio_block_t *prevblock;
  99. #elif AUDIO_BLOCK_SAMPLES == 64
  100. audio_block_t *prevblocks[3];
  101. #endif
  102. int16_t buffer[512] __attribute__ ((aligned (4)));
  103. #if AUDIO_BLOCK_SAMPLES == 128
  104. uint32_t sum[128];
  105. uint8_t naverage;
  106. #endif
  107. uint8_t count;
  108. bool outputflag;
  109. audio_block_t *inputQueueArray[1];
  110. arm_cfft_radix4_instance_q15 fft_inst;
  111. };
  112. #endif