Changeset 1057
- Timestamp:
- 04/03/01 04:39:23 (8 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (2 diffs)
- lm-sensors/trunk/doc/progs (modified) (5 diffs)
- lm-sensors/trunk/prog/dump/Module.mk (modified) (1 diff)
- lm-sensors/trunk/prog/dump/i2cset.c (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r1054 r1057 46 46 reading changes 47 47 Programs i2cdetect, i2cdump: add devfs /dev/i2c/x support 48 Program i2cset: new 48 49 Program mkpatch.pl: Fix adm9240 typos, add more chips to Configure.help, 49 50 remove ltc1710 … … 223 224 Module maxilife: NEW 224 225 Module adm1021: MAX1617A now also supported 225 Module adm9 024: DS1780 now also supported226 Module adm9240: DS1780 now also supported 226 227 Module w83781d: W83782D and W83783S now also supported 227 228 Program sensors-detect: NEW lm-sensors/trunk/doc/progs
r1050 r1057 2 2 `make install', and that usually can be found in the `prog' directory of 3 3 this package. 4 5 These programs are generally small utilities used for debugging, 6 and installation of the lm_sensors package, and for demonstrating 7 the use of the drivers and libraries in this package. 8 For more elaborate programs (for example, GUI sensor displays), 9 see useful_addresses.html. 4 10 5 11 … … 47 53 48 54 * prog/dump/i2cdump (written in C, not installed) 49 This program helps to dumpthe registers of a I2C device that understands55 This program dumps the registers of a I2C device that understands 50 56 the 'byte data' or 'word data' and block read SMBus protocols. 51 57 Usual syntax: … … 53 59 Here the '0' stands for the bus number (run i2cdump with no arguments 54 60 to list all installed busses). 55 0x49' is the device address, and 'b' or 'w' stands for byte61 '0x49' is the device address, and 'b' or 'w' stands for byte 56 62 or word data. 57 63 64 * prog/dump/i2cset (written in C, not installed) 65 This program is used to write the register of a I2C device. 66 Usual syntax: 67 ./i2cset bus device address data 68 58 69 * prog/dump/isadump (written in C, not installed) 59 This program helps to dumpthe registers of LM78-like chips, or more60 exactly, chips which use anI/O-port for its address and one as its70 This program dumps the registers of LM78-like chips, or more 71 exactly, chips which use one I/O-port for its address and one as its 61 72 data register. Usual syntax: 62 73 ./isadump 0x295 0x296 … … 86 97 * prog/rrd/sens_update_rrd (written in bash, not installed) 87 98 This script gathers sensors data and adds it to a round robin database 88 (RRD). RRD is then used to display the graphed data in web pages 99 (RRD). RRD is then used to display the graphed data in web pages. 100 See prog/rrd/README for more information. 89 101 90 102 * prog/sensord/sensord (written in C, installed by `make install-prog-sensord') … … 101 113 102 114 * prog/tellerstats/gather.sh, tellerstats.sh (written in bash, not installed) 103 These scripts gather sensors data and graph the data for web pages 115 These scripts gather sensors data and graph the data for web pages. 116 See prog/tellerstats/README for more information. 104 117 105 118 * prog/xeon/decode-xeon.pl (written in Perl, not installed) lm-sensors/trunk/prog/dump/Module.mk
r581 r1057 24 24 # Regrettably, even 'simply expanded variables' will not put their currently 25 25 # defined value verbatim into the command-list of rules... 26 PROGDUMPTARGETS := $(MODULE_DIR)/isadump $(MODULE_DIR)/i2cdump 27 PROGDUMPSOURCES := $(MODULE_DIR)/isadump.c $(MODULE_DIR)/i2cdump.c 26 PROGDUMPTARGETS := $(MODULE_DIR)/isadump $(MODULE_DIR)/i2cdump \ 27 $(MODULE_DIR)/i2cset 28 PROGDUMPSOURCES := $(MODULE_DIR)/isadump.c $(MODULE_DIR)/i2cdump.c \ 29 $(MODULE_DIR)/i2cset.c 28 30 29 31 # Include all dependency files. We use '.rd' to indicate this will create
