dect
/
linux-2.6
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
linux-2.6/drivers/w1/slaves
David Fries 80c002ddd2 W1: w1_therm.c is flagging 0C etc as invalid
The extra rom[0] check is flagging valid temperatures as invalid when
there is already a CRC data transmission check.

w1_therm_read_bin()
	if (rom[8] == crc && rom[0])
		verdict = 1;

Requiring rom[0] to be non-zero will flag as invalid temperature
conversions when the low byte is zero, specifically the temperatures 0C,
16C, 32C, 48C, -16C, -32C, and -48C.

The CRC check is produced on the device for the previous 8 bytes and is
required to ensure the data integrity in transmission.  I don't see why the
extra check for rom[0] being non-zero is in there.  Evgeniy Polyakov didn't
know either.  Just for a check I unplugged the sensor, executed a
temperature conversion, and read the results.  The read was all ff's, which
also failed the CRC, so it doesn't need to protect against a disconnected
sensor.

I have more extensive patches in the work, but these two trivial ones will
do for today.  I would like to hear from people who use the ds2490 USB to
one wire dongle.  1 if you would be willing to test the patches as I
currently only have the one sensor on a short parisite powered wire, 2 if
there is any cheap sources for the ds2490.

Signed-off-by: David Fries <david@fries.net>
Acked-by: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-01-22 09:17:48 -08:00
..
Kconfig Use menuconfig objects: W1 2007-07-16 09:05:40 -07:00
Makefile [BATTERY] ds2760 W1 slave 2007-07-10 11:28:31 +01:00
w1_ds2433.c some kmalloc/memset ->kzalloc (tree wide) 2007-07-19 10:04:50 -07:00
w1_ds2760.c git-battery vs git-acpi 2007-07-15 22:37:03 +04:00
w1_ds2760.h [BATTERY] ds2760 W1 slave 2007-07-10 11:28:31 +01:00
w1_smem.c [PATCH] w1: Userspace communication protocol over connector. 2006-06-22 11:22:50 -07:00
w1_therm.c W1: w1_therm.c is flagging 0C etc as invalid 2008-01-22 09:17:48 -08:00