Changeset 5249
- Timestamp:
- 05/11/08 22:56:25 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/branches/lm-sensors-3.0.0/CHANGES
r5246 r5249 29 29 Detect and skip 1-register-only I2C devices 30 30 Avoid SMBus word transactions where possible 31 Add Dallas DS1631 detection 31 32 32 33 3.0.1 (2008-01-28) lm-sensors/branches/lm-sensors-3.0.0/prog/detect/sensors-detect
r5246 r5249 911 911 }, 912 912 { 913 name => "Dallas Semiconductor DS1621 ",913 name => "Dallas Semiconductor DS1621/DS1631", 914 914 driver => "ds1621", 915 915 i2c_addrs => [0x48..0x4f], … … 3813 3813 3814 3814 my $temp = i2c_smbus_read_word_data($file,0xAA); 3815 return if $temp < 0 || ($temp & 0x7f00); 3815 return if $temp < 0 || ($temp & 0x0f00); 3816 # On the DS1631, the following two checks are too strict in theory, 3817 # but in practice I very much doubt that anyone will set temperature 3818 # limits not a multiple of 0.5 degrees C. 3816 3819 my $high = i2c_smbus_read_word_data($file,0xA1); 3817 3820 return if $high < 0 || ($high & 0x7f00);
