diff options
author | FreeArtMan <dos21h@gmail.com> | 2015-10-06 20:53:28 +0100 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2015-10-06 20:53:28 +0100 |
commit | 21c34937937f27a89290f4377b4ff1801079e6ec (patch) | |
tree | 61194300a31b5d2ced985f39c033cc68734374e7 /filt/filt.h | |
parent | 4391e4e70162cc0ad61fc90ff341c3686998ef4b (diff) | |
download | radiola-21c34937937f27a89290f4377b4ff1801079e6ec.tar.gz radiola-21c34937937f27a89290f4377b4ff1801079e6ec.zip |
Added new interface files
Diffstat (limited to 'filt/filt.h')
-rw-r--r-- | filt/filt.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/filt/filt.h b/filt/filt.h new file mode 100644 index 0000000..d235449 --- /dev/null +++ b/filt/filt.h @@ -0,0 +1,11 @@ +#ifndef __RADIOLA_FILT_H +#define __RADIOLA_FILT_H + +#include <stdlib.h> +#include <stdio.h> +#include <unistd.h> + +//fifth order filter from rtlsdr +void f_5th(int16_t *data, int length, int16_t *hist); + +#endif
\ No newline at end of file |