Lines Matching defs:command
42 /* DS28E17 device command codes. */
61 * command.
65 /* Maximum number of I2C bytes to read with one onewire command. */
150 const u8 *command, size_t command_count,
157 /* Send command and I2C data to DS28E17. */
158 crc = crc16(CRC16_INIT, command, command_count);
159 w1_write_block(sl->master, command, command_count);
196 u8 command[2];
206 * a single onewire command.
210 command[0] = (stop ? W1_F19_WRITE_DATA_WITH_STOP
212 command[1] = i2c_address << 1;
213 result = __w1_f19_i2c_write(sl, command, 2, buffer, count);
219 command[0] = W1_F19_WRITE_DATA_NO_STOP;
220 command[1] = i2c_address << 1;
221 result = __w1_f19_i2c_write(sl, command, 2, p,
236 command[0] = W1_F19_WRITE_DATA_ONLY;
237 result = __w1_f19_i2c_write(sl, command, 1, p,
252 command[0] = (stop ? W1_F19_WRITE_DATA_ONLY_WITH_STOP
254 result = __w1_f19_i2c_write(sl, command, 1, p, remaining);
273 /* Send command to DS28E17. */
312 /* Send command and I2C data to DS28E17. */