Changeset 139
- Timestamp:
- 12/29/98 20:54:02 (10 years ago)
- Files:
-
- lm-sensors/trunk/INSTALL (modified) (1 diff)
- lm-sensors/trunk/TODO (modified) (2 diffs)
- lm-sensors/trunk/doc/FAQ (modified) (1 diff)
- lm-sensors/trunk/doc/progs (modified) (1 diff)
- lm-sensors/trunk/etc/sensors.conf.eg (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/INSTALL
r106 r139 102 102 and displays it in a comparable format. This program is called 'sensors'. 103 103 Everybody can use it to read sensors values; only root can use it to 104 set minimum and maximum values [NOTE: not yet implemented]104 set minimum and maximum values. 105 105 106 106 If you want to run 'sensors' without installing the package, you must lm-sensors/trunk/TODO
r133 r139 15 15 * Make lm78.c detect 'double hits', (same chip connected to both SMBus and 16 16 ISA). 17 * Better lm78/lm75detection; insmod-time paramters to set addresses17 * Better chip detection; insmod-time paramters to set addresses 18 18 (difficult, because of all i2c busses!). 19 19 * Registrate which i2c addresses are used (a la ISA) for each adapter. … … 27 27 * Write a userland detection program for busses (clients are less important; 28 28 but perhaps needed too). 29 * Some library routines are pretty inefficient right now lm-sensors/trunk/doc/FAQ
r134 r139 396 396 This is a bit intricate right now. In the near future, this can be 397 397 done through the 'sensors' program, which will take account of the 398 computations specified in the configuration file. This will probably not 399 be implemented in time for 2.1.0, though. 400 At this moment, you have to cat values to /proc/sys/dev/sensors/*/* 401 files, and do any computations by hand. Sorry. 398 computations specified in the configuration file. At this moment, you must 399 also put the 'set' commands into the configuration file. This will get 400 easier in newer versions. 402 401 403 402 lm-sensors/trunk/doc/progs
r108 r139 21 21 * i2c/detect/detect (written in C, not installed) 22 22 This program needs module `i2c-dev.o' to be loaded. It scans the complete 23 address range of a certain bus for connected devices. 23 address range of a certain bus for connected devices. It will only work 24 for i2c-level drivers (not for PIIX4 busses). 24 25 * i2c/eeprom/eeprom (written in C, not installed) 25 26 This program needs the i2c `eeprom.o' module (that is the one that is not lm-sensors/trunk/etc/sensors.conf.eg
r125 r139 96 96 # Set statements set things like limits. Complete expressions can be 97 97 # used. Not everything can sensibly be set: setting 'in0', for example, 98 # is impossible! These settings #are put through the compute translations;99 # so if we specify '12.8' #for in6, '3.2' will actually be written!100 101 # Though set statements are correctly parsed at this moment, nothing will102 # be done with them yet by libsensors98 # is impossible! These settings are put through the compute translations; 99 # so if we specify '12.8' for in6, '3.2' will actually be written! 100 101 #set in0_max vid*1.05 102 #set in0_min vid*0.95 103 103 104 104 # Invalid statements tell certain features are not wanted. User programs can … … 178 178 compute in5 -(210/60.4)*@ , -@/(210/60.4) 179 179 compute in6 -(90.9/60.4)*@ , -@/(90.9/60.4) 180 181 # Here, we assume the VID readings are valid, and we use a max. 5% deviation 182 183 set in0_min vid*0.95 184 set in0_max vid*1.05 185 set in1_min vid*0.95 186 set in1_max vid*1.05 187 set in2_min 3.3 * 0.95 188 set in2_max 3.3 * 1.05 189 set in3_min 5.0 * 0.95 190 set in3_max 5.0 * 1.05 191 set in4_min 12 * 0.95 192 set in4_max 12 * 1.05 193 set in5_min -12 * 0.95 194 set in5_max -12 * 1.05 195 set in6_min -5 * 0.95 196 set in6_max -5 * 1.05 180 197 181 198 … … 230 247 compute in5 (160/35.7)*(@ - in0) + @, (@ + in0 * 160/25.7)/ (1 + 160/25.7) 231 248 compute in6 (36/16.2)*(@ - in0) + @, (@ + in0 * 36/16.2) / (1 + 36/16.2) 249 250 set in0_min 5 * 0.95 251 set in0_max 5 * 0.95 252 # What is your VTT? It is probably not this value... 253 set in1_min 2*0.95 254 set in1_max 2*1.05 255 set in2_min 3.3 * 0.95 256 set in2_max 3.3 * 1.05 257 # What is your VCore? It is probably not this value... 258 set in3_min 1.9 * 0.95 259 set in3_max 1.9 * 1.05 260 set in4_min 12 * 0.95 261 set in4_max 12 * 1.05 262 set in5_min -12 * 0.95 263 set in5_max -12 * 1.05 264 set in6_min -5 * 0.95 265 set in6_max -5 * 1.05
