You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

103 line
3.3KB

  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), prevblock(NULL), count(0),
  49. naverage(8), outputflag(false) {
  50. arm_cfft_radix4_init_q15(&fft_inst, 256, 0, 1);
  51. }
  52. bool available() {
  53. if (outputflag == true) {
  54. outputflag = false;
  55. return true;
  56. }
  57. return false;
  58. }
  59. float read(unsigned int binNumber) {
  60. if (binNumber > 127) return 0.0;
  61. return (float)(output[binNumber]) * (1.0 / 16384.0);
  62. }
  63. float read(unsigned int binFirst, unsigned int binLast) {
  64. if (binFirst > binLast) {
  65. unsigned int tmp = binLast;
  66. binLast = binFirst;
  67. binFirst = tmp;
  68. }
  69. if (binFirst > 127) return 0.0;
  70. if (binLast > 127) binLast = 127;
  71. uint32_t sum = 0;
  72. do {
  73. sum += output[binFirst++];
  74. } while (binFirst < binLast);
  75. return (float)sum * (1.0 / 16384.0);
  76. }
  77. void averageTogether(uint8_t n) {
  78. if (n == 0) n = 1;
  79. naverage = n;
  80. }
  81. void windowFunction(const int16_t *w) {
  82. window = w;
  83. }
  84. virtual void update(void);
  85. uint16_t output[128] __attribute__ ((aligned (4)));
  86. private:
  87. const int16_t *window;
  88. audio_block_t *prevblock;
  89. int16_t buffer[512] __attribute__ ((aligned (4)));
  90. uint32_t sum[128];
  91. uint8_t count;
  92. uint8_t naverage;
  93. bool outputflag;
  94. audio_block_t *inputQueueArray[1];
  95. arm_cfft_radix4_instance_q15 fft_inst;
  96. };
  97. #endif