X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/7bd30f12ac6def96c82df20ed7d927160db289af..149aeadaa609b01db86ba3b4ee23b317f16bede5:/client/ui.c diff --git a/client/ui.c b/client/ui.c index 1d85cc05..966ab2ca 100644 --- a/client/ui.c +++ b/client/ui.c @@ -18,7 +18,8 @@ #include #include "loclass/cipherutils.h" #include "ui.h" - +#include "cmdmain.h" +#include "cmddata.h" //#include #define M_PI 3.14159265358979323846264338327 @@ -100,8 +101,7 @@ int manchester_decode( int * data, const size_t len, uint8_t * dataout){ int i, clock, high, low, startindex; low = startindex = 0; high = 1; - uint8_t bitStream[len]; - + uint8_t * bitStream = (uint8_t* ) malloc(sizeof(uint8_t) * len); memset(bitStream, 0x00, len); /* Detect high and lows */ @@ -116,18 +116,15 @@ int manchester_decode( int * data, const size_t len, uint8_t * dataout){ clock = GetT55x7Clock( data, len, high ); startindex = DetectFirstTransition(data, len, high); - //PrintAndLog(" Clock : %d", clock); - //PrintAndLog(" startindex : %d", startindex); - + PrintAndLog(" Clock : %d", clock); + if (high != 1) bitlength = ManchesterConvertFrom255(data, len, bitStream, high, low, clock, startindex); else bitlength= ManchesterConvertFrom1(data, len, bitStream, clock, startindex); - //if ( bitlength > 0 ) - // PrintPaddedManchester(bitStream, bitlength, clock); - memcpy(dataout, bitStream, bitlength); + free(bitStream); return bitlength; } @@ -238,8 +235,7 @@ int manchester_decode( int * data, const size_t len, uint8_t * dataout){ // No high value found, are we in a dampening field? if ( !hithigh ) { //PrintAndLog(" # Entering damp test at index : %d (%d)", z+j, j); - for (j = 0; j < clock; j++) - { + for (j = 0; j < clock; j++) { if ( (data[z+j] <= dampHi && data[z+j] >= dampLow) ){ @@ -395,91 +391,15 @@ void PrintPaddedManchester( uint8_t* bitStream, size_t len, size_t blocksize){ PrintAndLog(" %s", sprint_bin(bitStream+i, mod) ); } -void iceFsk(int * data, const size_t len){ - - //34359738 == 125khz (2^32 / 125) = - - // parameters - float phase_offset = 0.00f; // carrier phase offset - float frequency_offset = 0.30f; // carrier frequency offset - float wn = 0.01f; // pll bandwidth - float zeta = 0.707f; // pll damping factor - float K = 1000; // pll loop gain - size_t n = len; // number of samples - - // generate loop filter parameters (active PI design) - float t1 = K/(wn*wn); // tau_1 - float t2 = 2*zeta/wn; // tau_2 - - // feed-forward coefficients (numerator) - float b0 = (4*K/t1)*(1.+t2/2.0f); - float b1 = (8*K/t1); - float b2 = (4*K/t1)*(1.-t2/2.0f); - - // feed-back coefficients (denominator) - // a0 = 1.0 is implied - float a1 = -2.0f; - float a2 = 1.0f; - - // filter buffer - float v0=0.0f, v1=0.0f, v2=0.0f; - - // initialize states - float phi = phase_offset; // input signal's initial phase - float phi_hat = 0.0f; // PLL's initial phase - - unsigned int i; - float complex x,y; - float complex output[n]; - - for (i=0; i 0 ) - printf("1"); - else - printf("0"); + for (i =startPos ; i < adjustedLen; i += 40){ + bit = data[i]>0 ? 1:0; + printf("%d", bit ); } printf("\n"); printf("R/50 : "); - for (i =startPos ; i < len; i += 50){ - if ( data[i] > 0 ) - printf("1"); - else - printf("0"); - } + for (i =startPos ; i < adjustedLen; i += 50){ + bit = data[i]>0 ? 1:0; + printf("%d", bit ); } printf("\n"); + free(output); } float complex cexpf (float complex Z)