X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/f121b478a11894a42f0fdab127974e1e7d521cc3..cc70dd6b600f8343c023bad284b1d1e219e41ca8:/armsrc/appmain.c diff --git a/armsrc/appmain.c b/armsrc/appmain.c index aa873e42..ead92c48 100644 --- a/armsrc/appmain.c +++ b/armsrc/appmain.c @@ -10,7 +10,7 @@ // executes. //----------------------------------------------------------------------------- #include "usb_cdc.h" -#include "cmd.h" +//#include "cmd.h" #include "proxmark3.h" #include "apps.h" #include "util.h" @@ -219,7 +219,7 @@ void MeasureAntennaTuning(void) { if (i==95) vLf125 = adcval; // voltage at 125Khz if (i==89) vLf134 = adcval; // voltage at 134Khz - LF_Results[i] = adcval>>8; // scale int to fit in byte for graphing purposes + LF_Results[i] = adcval >> 8; // scale int to fit in byte for graphing purposes if(LF_Results[i] > peak) { peakv = adcval; peak = LF_Results[i]; @@ -227,7 +227,8 @@ void MeasureAntennaTuning(void) { } } - for (i = 18; i >= 0; i--) LF_Results[i] = 0; + // for (i = 18; i >= 0; i--) + // LF_Results[i] = 0; LED_A_ON(); // Let the FPGA drive the high-frequency antenna around 13.56 MHz. @@ -236,7 +237,7 @@ void MeasureAntennaTuning(void) { SpinDelay(20); vHf = (MAX_ADC_HF_VOLTAGE * AvgAdc(ADC_CHAN_HF)) >> 10; - cmd_send(CMD_MEASURED_ANTENNA_TUNING, vLf125 | (vLf134<<16), vHf, peakf | (peakv<<16), LF_Results, 256); + cmd_send(CMD_MEASURED_ANTENNA_TUNING, vLf125 | (vLf134 << 16), vHf, peakf | (peakv << 16), LF_Results, 256); FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF); BigBuf_free(); BigBuf_Clear_ext(false);