Changeset 2678
- Timestamp:
- 08/30/04 21:19:52 (9 years ago)
- Location:
- lm-sensors/trunk/prog/dump
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/prog/dump/i2cset.8
r2676 r2678 21 21 .SH OPTIONS 22 22 .TP 23 .B - v, -V23 .B -V 24 24 Display the version and exit. 25 25 .TP 26 26 .B -y 27 Disable interactive mode. By default, i saset will wait for a confirmation28 from the user before messing with the I SAbus. When this flag is used, it27 Disable interactive mode. By default, i2cset will wait for a confirmation 28 from the user before messing with the I2C bus. When this flag is used, it 29 29 will perform the operation directly. This is mainly meant to be used in 30 30 scripts. -
lm-sensors/trunk/prog/dump/i2cset.c
r2676 r2678 35 35 fprintf(stderr, "Syntax: i2cset [-y] I2CBUS CHIP-ADDRESS DATA-ADDRESS " 36 36 "VALUE [MODE]\n" 37 " i2cset -V\n");38 fprintf(stderr, " MODE is 'b[yte]' or 'w[ord]' (default b)\n");39 fprintf(stderr," I2CBUS is an integer\n");37 " i2cset -V\n" 38 " MODE is 'b[yte]' or 'w[ord]' (default b)\n" 39 " I2CBUS is an integer\n"); 40 40 print_i2c_busses(0); 41 41 exit(1);
