Call to GetClock had wrong number of inparameters
Added missing functions to header file
This commit is contained in:
@@ -14,7 +14,9 @@
|
|||||||
command_t * CmdDataCommands();
|
command_t * CmdDataCommands();
|
||||||
|
|
||||||
int CmdData(const char *Cmd);
|
int CmdData(const char *Cmd);
|
||||||
|
void setDemodBuf(uint8_t *buff, size_t size, size_t startIdx);
|
||||||
void printDemodBuff();
|
void printDemodBuff();
|
||||||
|
void printBitStream(uint8_t BitStream[], uint32_t bitLen);
|
||||||
int CmdAmp(const char *Cmd);
|
int CmdAmp(const char *Cmd);
|
||||||
int Cmdaskdemod(const char *Cmd);
|
int Cmdaskdemod(const char *Cmd);
|
||||||
int Cmdaskrawdemod(const char *Cmd);
|
int Cmdaskrawdemod(const char *Cmd);
|
||||||
@@ -60,6 +62,7 @@ int CmdIndalaDecode(const char *Cmd);
|
|||||||
extern uint8_t DemodBuffer[MAX_DEMOD_BUF_LEN];
|
extern uint8_t DemodBuffer[MAX_DEMOD_BUF_LEN];
|
||||||
extern int DemodBufferLen;
|
extern int DemodBufferLen;
|
||||||
|
|
||||||
|
extern uint8_t g_debugMode;
|
||||||
#define BIGBUF_SIZE 40000
|
#define BIGBUF_SIZE 40000
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ int manchester_decode( int * data, const size_t len, uint8_t * dataout, size_t
|
|||||||
DetectHighLowInGraph(&high, &low, TRUE);
|
DetectHighLowInGraph(&high, &low, TRUE);
|
||||||
|
|
||||||
/* get clock */
|
/* get clock */
|
||||||
clock = GetClock("", 0);
|
clock = GetClock("",0, 0);
|
||||||
|
|
||||||
startindex = DetectFirstTransition(data, len, high);
|
startindex = DetectFirstTransition(data, len, high);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user