Merge pull request #727 from drf5n/oversampling

temperature.cpp: Actually use OVERSAMPLENR in the oversampling calculation.
This commit is contained in:
ErikZalm
2014-01-31 07:09:10 -08:00
2 changed files with 2 additions and 2 deletions

View File

@ -1190,7 +1190,7 @@ ISR(TIMER0_COMPB_vect)
// break;
}
if(temp_count >= 16) // 8 ms * 16 = 128ms.
if(temp_count >= OVERSAMPLENR) // 8 * 16 * 1/(16000000/64/256) = 131ms.
{
if (!temp_meas_ready) //Only update the raw values if they have been read. Else we could be updating them during reading.
{