From 153a4a78fe07fcb6f1c7b246465b0f6e8eba41fd Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Wed, 31 Aug 2016 19:22:52 +0200 Subject: [PATCH] CHG: the loop in main, for usb_poll_validate_length, shouldn't do anything, it should be done inside the next call to usb_read... --- armsrc/appmain.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/armsrc/appmain.c b/armsrc/appmain.c index aa873e42..51c5863f 100644 --- a/armsrc/appmain.c +++ b/armsrc/appmain.c @@ -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); -- 2.39.2