ADD: started to add a BUTTERWORTH filter, not working yet.

This commit is contained in:
iceman1001 2016-04-14 11:37:17 +02:00
commit 40f6f2ff50
2 changed files with 11 additions and 3 deletions

View file

@ -14,9 +14,11 @@
#include <stdlib.h> //size_t
#include <stdint.h> //uint_32+
#include <stdbool.h> //bool
#include "cmdparser.h" // for command_t
#define MAX_DEMOD_BUF_LEN (1024*128)
#define BIGBUF_SIZE 40000
command_t * CmdDataCommands();
int CmdData(const char *Cmd);
@ -76,11 +78,10 @@ int NRZrawDemod(const char *Cmd, bool verbose);
void printEM410x(uint32_t hi, uint64_t id);
int getSamples(const char *Cmd, bool silent);
int CmdDataIIR(const char *Cmd);
#define MAX_DEMOD_BUF_LEN (1024*128)
extern uint8_t DemodBuffer[MAX_DEMOD_BUF_LEN];
extern size_t DemodBufferLen;
extern uint8_t g_debugMode;
#define BIGBUF_SIZE 40000
#endif