Commented out unused, set but never read variables (cause build to fail if warnings treated as errors)

This commit is contained in:
GooglePlus@YoungJules.net 2012-06-12 12:21:26 +00:00
commit 9f69393035
3 changed files with 41 additions and 41 deletions

View file

@ -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;
}
}