X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/04d2721b3c7c4113e627d3f953835bde932065db..f50d457fa853bc7228635913584201efec5924aa:/client/cmddata.c diff --git a/client/cmddata.c b/client/cmddata.c index 0c6cd72c..9ed228a4 100644 --- a/client/cmddata.c +++ b/client/cmddata.c @@ -1190,12 +1190,17 @@ int CmdFSKfcDetect(const char *Cmd) return 1; } +//by marshmellow +//attempt to detect the bit clock for PSK or NRZ modulations int CmdDetectNRZpskClockRate(const char *Cmd) { GetNRZpskClock("",0,0); return 0; } +//by marshmellow +//attempt to psk1 or nrz demod graph buffer +//NOTE CURRENTLY RELIES ON PEAKS :( int PSKnrzDemod(const char *Cmd, uint8_t verbose) { int invert=0; @@ -1296,6 +1301,9 @@ int CmdIndalaDecode(const char *Cmd) return 1; } +//by marshmellow +//attempt to clean psk wave noise after a peak +//NOTE RELIES ON PEAKS :( int CmdPskClean(const char *Cmd) { uint8_t bitStream[MAX_GRAPH_TRACE_LEN]={0};