combine autocorr, dirth functions

fix lfdemod bug
add askedge to overlays (remove askdemod)
This commit is contained in:
marshmellow42 2017-04-13 10:33:18 -04:00
parent 9fe4507c03
commit c4f51073fc
11 changed files with 247 additions and 170 deletions

View file

@ -34,7 +34,9 @@ extern int offline;
extern bool GridLocked;
//Operations defined in data_operations
extern int autoCorr(const int* in, int *out, size_t len, int window);
//extern int autoCorr(const int* in, int *out, size_t len, int window);
extern int AskEdgeDetect(const int *in, int *out, int len, int threshold);
extern int AutoCorrelate(const int *in, int *out, size_t len, int window, bool SaveGrph, bool verbose);
extern int directionalThreshold(const int* in, int *out, size_t len, int8_t up, int8_t down);
extern void save_restoreGB(uint8_t saveOpt);