X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/773765774761e1463cadd979c1f74728b8b6fd31..7bd30f12ac6def96c82df20ed7d927160db289af:/client/ui.c diff --git a/client/ui.c b/client/ui.c index c796d904..1d85cc05 100644 --- a/client/ui.c +++ b/client/ui.c @@ -16,8 +16,11 @@ #include #include #include -#include "ui.h" #include "loclass/cipherutils.h" +#include "ui.h" + +//#include +#define M_PI 3.14159265358979323846264338327 double CursorScaleFactor; int PlotGridX, PlotGridY, PlotGridXdefault= 64, PlotGridYdefault= 64; @@ -125,8 +128,6 @@ int manchester_decode( int * data, const size_t len, uint8_t * dataout){ // PrintPaddedManchester(bitStream, bitlength, clock); memcpy(dataout, bitStream, bitlength); - - free(bitStream); return bitlength; } @@ -392,4 +393,217 @@ void PrintPaddedManchester( uint8_t* bitStream, size_t len, size_t blocksize){ if ( mod > 0 ) PrintAndLog(" %s", sprint_bin(bitStream+i, mod) ); -} \ No newline at end of file +} + +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 60)? 100:0; + } + } + + for (j=0; j 0)? 10 : -10; + } + + // show data + for (j=0; j 0 ) + printf("1"); + else + printf("0"); + } + printf("\n"); + + printf("R/50 : "); + for (i =startPos ; i < len; i += 50){ + if ( data[i] > 0 ) + printf("1"); + else + printf("0"); + } + printf("\n"); + +} + +float complex cexpf (float complex Z) +{ + float complex Res; + double rho = exp (__real__ Z); + __real__ Res = rho * cosf(__imag__ Z); + __imag__ Res = rho * sinf(__imag__ Z); + return Res; +}