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.

пре 10 година
пре 10 година
пре 10 година
пре 10 година
пре 10 година
пре 10 година
пре 10 година
пре 10 година
пре 10 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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_fft1024_h_
  27. #define analyze_fft1024_h_
  28. #include "AudioStream.h"
  29. #include "arm_math.h"
  30. // windows.c
  31. extern "C" {
  32. extern const int16_t AudioWindowHanning1024[];
  33. extern const int16_t AudioWindowBartlett1024[];
  34. extern const int16_t AudioWindowBlackman1024[];
  35. extern const int16_t AudioWindowFlattop1024[];
  36. extern const int16_t AudioWindowBlackmanHarris1024[];
  37. extern const int16_t AudioWindowNuttall1024[];
  38. extern const int16_t AudioWindowBlackmanNuttall1024[];
  39. extern const int16_t AudioWindowWelch1024[];
  40. extern const int16_t AudioWindowHamming1024[];
  41. extern const int16_t AudioWindowCosine1024[];
  42. extern const int16_t AudioWindowTukey1024[];
  43. }
  44. class AudioAnalyzeFFT1024 : public AudioStream
  45. {
  46. public:
  47. AudioAnalyzeFFT1024() : AudioStream(1, inputQueueArray),
  48. window(AudioWindowHanning1024), state(0), outputflag(false) {
  49. arm_cfft_radix4_init_q15(&fft_inst, 1024, 0, 1);
  50. }
  51. bool available() {
  52. if (outputflag == true) {
  53. outputflag = false;
  54. return true;
  55. }
  56. return false;
  57. }
  58. float read(unsigned int binNumber) {
  59. if (binNumber > 511) return 0.0;
  60. return (float)(output[binNumber]) * (1.0 / 16384.0);
  61. }
  62. float read(unsigned int binFirst, unsigned int binLast) {
  63. if (binFirst > binLast) {
  64. unsigned int tmp = binLast;
  65. binLast = binFirst;
  66. binFirst = tmp;
  67. }
  68. if (binFirst > 511) return 0.0;
  69. if (binLast > 511) binLast = 511;
  70. uint32_t sum = 0;
  71. do {
  72. sum += output[binFirst++];
  73. } while (binFirst < binLast);
  74. return (float)sum * (1.0 / 16384.0);
  75. }
  76. void averageTogether(uint8_t n) {
  77. // not implemented yet (may never be, 86 Hz output rate is ok)
  78. }
  79. void windowFunction(const int16_t *w) {
  80. window = w;
  81. }
  82. virtual void update(void);
  83. uint16_t output[512] __attribute__ ((aligned (4)));
  84. private:
  85. void init(void);
  86. const int16_t *window;
  87. audio_block_t *blocklist[8];
  88. int16_t buffer[2048] __attribute__ ((aligned (4)));
  89. //uint32_t sum[512];
  90. //uint8_t count;
  91. uint8_t state;
  92. //uint8_t naverage;
  93. volatile bool outputflag;
  94. audio_block_t *inputQueueArray[1];
  95. arm_cfft_radix4_instance_q15 fft_inst;
  96. };
  97. #endif