Jared Baxter
/
Impedance_Fast_Circuitry
Fork of DSP_200kHz by
Jareds_DSP/demodulate.h
- Committer:
- baxterja
- Date:
- 2018-06-27
- Revision:
- 87:80c9169acb85
- Parent:
- 85:f1be018aacac
File content as of revision 87:80c9169acb85:
#ifndef DEMODULATE_H_ #define DEMODULATE_H_ #include "dsp.h" #include "mbed.h" #include "filters_jared.h" //#define DEMODULATION_LENGTH 125 #define DEMOD_200HZ 0 #define DEMOD_1000HZ 1 #define DEMOD_No_Demod -1 extern const int pre_compute_length; void precompute_tables(); void demodulate(float *samples[MAX_NUMBER_OF_FILTERS], int num_filters, int sample_length, int demodulation_frequency); #endif