Changeset 5314
- Timestamp:
- 08/20/08 20:02:22 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/branches/lm-sensors-3.0.0/CHANGES
r5308 r5314 22 22 Add SMSC EMC2700LPC support 23 23 Add ITE IT8720 support 24 Add Texas Instruments TMP411 support 24 25 25 26 3.0.2 (2008-05-18) lm-sensors/branches/lm-sensors-3.0.0/prog/detect/sensors-detect
r5312 r5314 1141 1141 }, 1142 1142 { 1143 name => "Texas Instruments TMP401 /TMP411",1143 name => "Texas Instruments TMP401", 1144 1144 driver => "tmp401", 1145 1145 i2c_addrs => [0x4c], 1146 1146 i2c_detect => sub { lm90_detect(9, @_); }, 1147 }, 1148 { 1149 name => "Texas Instruments TMP411", 1150 driver => "to-be-written", 1151 i2c_addrs => [0x4c..0x4e], 1152 i2c_detect => sub { lm90_detect(10, @_); }, 1147 1153 }, 1148 1154 { … … 4005 4011 # (0 = LM90, 1 = LM89/LM99, 2 = LM86, 3 = ADM1032, 4 = MAX6654/MAX6690, 4006 4012 # 5 = ADT7461, 6 = MAX6646/MAX6647/MAX6648/MAX6649/MAX6692, 4007 # 7 = MAX6680/MAX6681, 8 = W83L771W/G, 9 = T I TMP401/TMP411)4013 # 7 = MAX6680/MAX6681, 8 = W83L771W/G, 9 = TMP401, 10 = TMP411) 4008 4014 # $_[1]: A reference to the file descriptor to access this chip. 4009 4015 # $_[2]: Address … … 4088 4094 return if $rate > 0x0F; 4089 4095 return if $mid != 0x55; # Texas Instruments 4090 return if $cid != 0x11; # TMP401 /TMP4114096 return if $cid != 0x11; # TMP401 4091 4097 return 8; 4098 } 4099 if ($chip == 10) { 4100 return if ($conf & 0x1B) != 0; 4101 return if $rate > 0x0F; 4102 return if $mid != 0x55; # Texas Instruments 4103 return 6 if ($addr == 0x4c && $cid == 0x12); # TPM411A 4104 return 6 if ($addr == 0x4d && $cid == 0x13); # TMP411B 4105 return 6 if ($addr == 0x4e && $cid == 0x10); # TMP411C 4106 return; 4092 4107 } 4093 4108 return;
