Hi,
Why do not you increase the resolution, Carl? For greater sensitivity..?
This is only average samples?
Listing:
tmp += CurrentSample; // tmp is effectively a 12-bit value sampleCount++; if(sampleCount == 4) // If we've accumulated 4 samples, then store { sampleArray[sampleIndex] = tmp>>2; // Store the current sample - 10 bits
Why do not you increase the resolution, Carl? For greater sensitivity..?
This is only average samples?
Listing:
tmp += CurrentSample; // tmp is effectively a 12-bit value sampleCount++; if(sampleCount == 4) // If we've accumulated 4 samples, then store { sampleArray[sampleIndex] = tmp>>2; // Store the current sample - 10 bits
Comment