HomeSort by relevance Sort by last modified time
    Searched refs:i2cMasterTxRx (Results 1 - 16 of 16) sorted by null

  /device/google/contexthub/firmware/os/inc/
i2c.h 32 int i2cMasterTxRx(uint32_t busId, uint32_t addr, const void *txBuf, size_t txSize,
37 return i2cMasterTxRx(busId, addr, txBuf, txSize, NULL, 0, callback, cookie);}
41 return i2cMasterTxRx(busId, addr, NULL, 0, rxBuf, rxSize, callback, cookie);
  /device/google/contexthub/firmware/os/platform/native/
i2c.c 39 int i2cMasterTxRx(I2cBus busId, I2cAddr addr,
  /device/google/contexthub/firmware/os/drivers/ams_tmd2772/
ams_tmd2772.c 496 i2cMasterTxRx(I2C_BUS_ID, I2C_ADDR, nextXfer->txrxBuf.bytes, 1, nextXfer->txrxBuf.bytes, 1, i2cCallback, nextXfer);
506 i2cMasterTxRx(I2C_BUS_ID, I2C_ADDR, nextXfer->txrxBuf.bytes, 1, nextXfer->txrxBuf.bytes, 2, i2cCallback, nextXfer);
716 i2cMasterTxRx(I2C_BUS_ID, I2C_ADDR, xfer->txrxBuf.bytes, 1, xfer->txrxBuf.bytes, 1, i2cCallback, xfer);
731 i2cMasterTxRx(I2C_BUS_ID, I2C_ADDR, xfer->txrxBuf.bytes, 1, xfer->txrxBuf.bytes, 7, i2cCallback, xfer);
  /device/google/contexthub/firmware/os/drivers/bosch_bmp280/
bosch_bmp280.c 563 ret = i2cMasterTxRx(I2C_BUS_ID, I2C_ADDR, newXfer->txrxBuf, 1, newXfer->txrxBuf, 1, i2cCallback, newXfer);
606 ret = i2cMasterTxRx(I2C_BUS_ID, I2C_ADDR, newXfer->txrxBuf, 1, (uint8_t*)&mTask.comp, 24, i2cCallback, newXfer);
729 ret = i2cMasterTxRx(I2C_BUS_ID, I2C_ADDR, newXfer->txrxBuf, 1, newXfer->txrxBuf, 6, i2cCallback, newXfer);
746 ret = i2cMasterTxRx(I2C_BUS_ID, I2C_ADDR, newXfer->txrxBuf, 1, newXfer->txrxBuf, 6, i2cCallback, newXfer);
  /device/google/contexthub/firmware/os/drivers/intersil_isl29034/
isl29034.c 423 i2cMasterTxRx(ISL29034_I2C_BUS_ID, ISL29034_I2C_ADDR, xfer->txrxBuf, 1, xfer->txrxBuf, 1, i2cCallback, xfer);
437 i2cMasterTxRx(ISL29034_I2C_BUS_ID, ISL29034_I2C_ADDR, xfer->txrxBuf, 1, xfer->txrxBuf, 2, i2cCallback, xfer);
  /device/google/contexthub/firmware/os/drivers/rohm_rpr0521/
rohm_rpr0521.c 583 i2cMasterTxRx(I2C_BUS_ID, I2C_ADDR, newXfer->txrxBuf, 1, newXfer->txrxBuf, 1, i2cCallback, newXfer);
776 i2cMasterTxRx(I2C_BUS_ID, I2C_ADDR, xfer->txrxBuf, 1, xfer->txrxBuf, 4, i2cCallback, xfer);
785 i2cMasterTxRx(I2C_BUS_ID, I2C_ADDR, xfer->txrxBuf, 1, xfer->txrxBuf, 7, i2cCallback, xfer);
  /device/google/contexthub/firmware/os/drivers/ams_tmd4903/
ams_tmd4903.c     [all...]
  /device/google/contexthub/firmware/os/drivers/si_si7034/
si7034a10.c 185 ret = i2cMasterTxRx(SI7034A10_I2C_BUS_ID, SI7034A10_I2C_ADDR,
  /device/google/contexthub/firmware/os/drivers/st_hts221/
hts221.c 237 if ((ret = i2cMasterTxRx(HTS221_I2C_BUS_ID, HTS221_I2C_ADDR,
239 DEBUG_PRINT("i2c_read: i2cMasterTxRx operation failed (ret: %d)\n", ret);
  /device/google/contexthub/firmware/os/drivers/synaptics_s3708/
synaptics_s3708.c 241 ret = i2cMasterTxRx(I2C_BUS_ID, I2C_ADDR, xfer->txrxBuf, txBytes, xfer->txrxBuf, rxBytes, i2cCallback, xfer);
  /device/google/contexthub/firmware/os/drivers/st_acc44/
st_acc44.c 603 if ((ret = i2cMasterTxRx(ST_ACC44_I2C_BUS_ID, ST_ACC44_I2C_ADDR, xfer->txrxBuf, 1, xfer->txrxBuf, len, st_acc44_i2cCallback, xfer)) < 0) {
605 DEBUG_PRINT("st_acc44_i2c_read: i2cMasterTxRx operation failed (ret: %d)\n", ret);
  /device/google/contexthub/firmware/os/drivers/st_lps22hb/
lps22hb.c 255 if ((ret = i2cMasterTxRx(LPS22HB_I2C_BUS_ID, LPS22HB_I2C_ADDR, xfer->txrxBuf, 1, xfer->txrxBuf, len, i2cCallback, xfer)) < 0) {
257 DEBUG_PRINT("i2c_read: i2cMasterTxRx operation failed (ret: %d)\n", ret);
  /device/google/contexthub/firmware/os/core/
osApi.c 414 *retValP = i2cMasterTxRx(busId, addr, txBuf, txSize, rxBuf, rxSize, osExpApiI2cInternalCbk, cbkInfo);
  /device/google/contexthub/firmware/os/drivers/st_mag40/
st_mag40.c 379 i2cMasterTxRx(ST_MAG40_I2C_BUS_ID, ST_MAG40_I2C_ADDR, xfer->txrxBuf, 1, xfer->txrxBuf, len, i2cCallback, xfer);
  /device/google/contexthub/firmware/os/platform/stm32/
i2c.c 899 int i2cMasterTxRx(uint32_t busId, uint32_t addr,
  /device/google/contexthub/firmware/os/drivers/bosch_bmi160/
bosch_bmi160.c     [all...]

Completed in 441 milliseconds