X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/a553f2674865fa544d04ca7b8194e30c008644ae..902cb3c00b49535f0de9a3b6d5ba0c54260ccac1:/client/data.h diff --git a/client/data.h b/client/data.h index b60ec74d..33ee9d04 100644 --- a/client/data.h +++ b/client/data.h @@ -15,9 +15,10 @@ #define SAMPLE_BUFFER_SIZE 64 -extern uint8_t sample_buf[SAMPLE_BUFFER_SIZE]; +extern uint8_t* sample_buf; +extern size_t sample_buf_len; #define arraylen(x) (sizeof(x)/sizeof((x)[0])) -void GetFromBigBuf(uint8_t *dest, int bytes); +void GetFromBigBuf(uint8_t *dest, int bytes, int start_index); #endif