# HG changeset patch # User Matt Johnston # Date 1349871143 -28800 # Node ID 295a4b87567797e39ed1a332522ec00a5a479e09 # Parent 81591bdfa92c6073eccec40d8759f5c2fa033d2d Ignore 85ยบ setting too diff -r 81591bdfa92c -r 295a4b875677 simple_ds18b20.c --- a/simple_ds18b20.c Sat Oct 06 23:58:37 2012 +0800 +++ b/simple_ds18b20.c Wed Oct 10 20:12:23 2012 +0800 @@ -80,7 +80,7 @@ decicelsius = -decicelsius; } - if ( /* decicelsius == 850 || */ decicelsius < -550 || decicelsius > 1250 ) { + if ( decicelsius == 850 || decicelsius < -550 || decicelsius > 1250 ) { return DS18X20_INVALID_DECICELSIUS; } else { return decicelsius;