Changeset 139

Show
Ignore:
Timestamp:
12/29/98 20:54:02 (10 years ago)
Author:
frodo
Message:

A few small documentation updates, and an updated example config file

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lm-sensors/trunk/INSTALL

    r106 r139  
    102102and displays it in a comparable format. This program is called 'sensors'. 
    103103Everybody can use it to read sensors values; only root can use it to 
    104 set minimum and maximum values [NOTE: not yet implemented] 
     104set minimum and maximum values. 
    105105 
    106106If you want to run 'sensors' without installing the package, you must 
  • lm-sensors/trunk/TODO

    r133 r139  
    1515* Make lm78.c detect 'double hits', (same chip connected to both SMBus and 
    1616  ISA). 
    17 * Better lm78/lm75 detection; insmod-time paramters to set addresses  
     17* Better chip detection; insmod-time paramters to set addresses  
    1818  (difficult, because of all i2c busses!). 
    1919* Registrate which i2c addresses are used (a la ISA) for each adapter. 
     
    2727* Write a userland detection program for busses (clients are less important; 
    2828  but perhaps needed too). 
     29* Some library routines are pretty inefficient right now 
  • lm-sensors/trunk/doc/FAQ

    r134 r139  
    396396        This is a bit intricate right now. In the near future, this can be 
    397397done 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. 
     398computations specified in the configuration file. At this moment, you must 
     399also put the 'set' commands into the configuration file. This will get 
     400easier in newer versions. 
    402401 
    403402 
  • lm-sensors/trunk/doc/progs

    r108 r139  
    2121* i2c/detect/detect (written in C, not installed) 
    2222  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). 
    2425* i2c/eeprom/eeprom (written in C, not installed) 
    2526  This program needs the i2c `eeprom.o' module (that is the one that is not 
  • lm-sensors/trunk/etc/sensors.conf.eg

    r125 r139  
    9696# Set statements set things like limits. Complete expressions can be 
    9797# 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 will 
    102 # be done with them yet by libsensors 
     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#set in0_max vid*1.05 
     102#set in0_min vid*0.95 
    103103 
    104104# Invalid statements tell certain features are not wanted. User programs can 
     
    178178    compute in5 -(210/60.4)*@  ,  -@/(210/60.4) 
    179179    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 
    180197 
    181198 
     
    230247    compute in5 (160/35.7)*(@ - in0) + @, (@ + in0 * 160/25.7)/ (1 + 160/25.7) 
    231248    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