this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

now bin it down to 256, but we don't do the interval thing yet

alice 80447180 d00ccb43

+5 -4
+1 -1
src/core/core.c
··· 466 466 core->data = data; 467 467 468 468 FFT_GetFFT(fftData); 469 - printf("FFT_GetFFT has been called\n"); 469 + // printf("FFT_GetFFT has been called\n"); 470 470 471 471 if (!core->state.initialized) 472 472 {
+2 -1
src/ext/fft.h
··· 1 1 #pragma once 2 2 // #define FFT_SIZE 2048 3 - #define FFT_SIZE 1024 3 + // #define FFT_SIZE 1024 4 + #define FFT_SIZE 256 4 5 #include <stdbool.h> 5 6 6 7
+1 -1
src/fftdata.c
··· 2 2 float fPeakMinValue = 0.01f; 3 3 float fPeakSmoothing = 0.995f; 4 4 float fPeakSmoothValue = 0.0f; 5 - float fftData[1024] = {0}; 5 + float fftData[256] = {0};
+1 -1
src/fftdata.h
··· 2 2 float fPeakMinValue; 3 3 float fPeakSmoothing; 4 4 float fPeakSmoothValue; 5 - extern float fftData[1024]; 5 + extern float fftData[256];