First Version
Dependencies: EthernetInterface mbed-rtos mbed
Headers/SignalProcessor.h
- Committer:
- rebonatto
- Date:
- 2016-03-07
- Revision:
- 3:94a128e0f316
- Parent:
- 0:9df41090ba33
File content as of revision 3:94a128e0f316:
/* * SignalProcessor.h * * Created on: * Author: */ #ifndef SIGNALPROCESSOR_H #define SIGNALPROCESSOR_H #include <math.h> #include "Capture.h" #include "Settings.h" class SignalProcessor { static float* ComplexFFT(unsigned short int* data, int sign, int ch); public: //static void CalculateRMSBulk(float *result); static void CalculateRMSBulk(float *result, float *vm2, int *under, int *over); static float CalculateRMS(unsigned short int *buffer,int nChannel); static void CalculateFFT(unsigned short int *buffer,float *sen,float *cos,float *vm,int sign, int ch); //static float DFT(float *data, float *seno, float *coss); }; #endif