mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
Commented out unused, set but never read variables (cause build to fail if warnings treated as errors)
This commit is contained in:
parent
cee48e2b44
commit
9f69393035
3 changed files with 41 additions and 41 deletions
|
@ -186,7 +186,7 @@ int AvgAdc(int ch) // was static - merlok
|
|||
void MeasureAntennaTuning(void)
|
||||
{
|
||||
uint8_t *dest = (uint8_t *)BigBuf;
|
||||
int i, ptr = 0, adcval = 0, peak = 0, peakv = 0, peakf = 0;;
|
||||
int i, adcval = 0, peak = 0, peakv = 0, peakf = 0; //ptr = 0
|
||||
int vLf125 = 0, vLf134 = 0, vHf = 0; // in mV
|
||||
|
||||
UsbCommand c;
|
||||
|
@ -217,7 +217,7 @@ void MeasureAntennaTuning(void)
|
|||
peakv = adcval;
|
||||
peak = dest[i];
|
||||
peakf = i;
|
||||
ptr = i;
|
||||
//ptr = i;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue