diff options
author | FreeArtMan <dos21h@gmail.com> | 2015-12-30 19:20:20 +0000 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2015-12-30 19:20:20 +0000 |
commit | a9d66c6a759515c7061e2e8aac661eeb0082ea1e (patch) | |
tree | da0bfb62d614fcad482cc5267f0a4348cbde5256 /filt/filt.h | |
parent | 03a2ac933087722b3754f5eca349b26193e9bffd (diff) | |
download | radiola-a9d66c6a759515c7061e2e8aac661eeb0082ea1e.tar.gz radiola-a9d66c6a759515c7061e2e8aac661eeb0082ea1e.zip |
More configurable sources. Move some math functions to core/math.h. Move delay filter from sdr_fm
Diffstat (limited to 'filt/filt.h')
-rw-r--r-- | filt/filt.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/filt/filt.h b/filt/filt.h index d235449..9ce2caa 100644 --- a/filt/filt.h +++ b/filt/filt.h @@ -3,9 +3,14 @@ #include <stdlib.h> #include <stdio.h> +#include <stdint.h> +#include <string.h> #include <unistd.h> //fifth order filter from rtlsdr -void f_5th(int16_t *data, int length, int16_t *hist); +void filt_5th(int16_t *data, int length, int16_t *hist); + +//delay filtering from https://github.com/dpiponi/mini_fm.git +void filt_delay( uint8_t *buf, int buf_len ); #endif
\ No newline at end of file |