I2C_WriteBurst

The function I2C_WriteBurst writes a number of tablesize-bytes to an i2c-device.

void I2C_WriteBurst(     
  UCHAR uSlaveAddress
  UCHAR* pBuffer
  UCHAR ucOffset
  long tablesize
); 
void i2c_BurstWriteByte(     
  UCHAR uSlaveAddress
  UCHAR* pBuffer
  UCHAR ucOffset
  long tablesize
); 

Parameters

uSlaveAddress
Slave-Address of i2c-device.

pBuffer
Buffer which holds data to be written.

ucOffset
Offset to write data to.

tablesize
Number of bytes to write.

Remarks

Issues following sequence:

  1. Lock
  2. Start
  3. SlaveAddress with write-bit
  4. ucOffset
  5. Write specified number of bytes (tablesize)
  6. Stop
  7. Unlock

This function calls I2C_Lock and I2C_Unlock to prevent multiple accesses to the i2c-bus. Don't lock access to i2c-bus prior to using this function!!

Requirements

OS Versions: Windows CE 4.2 and later.
Header: drvlib_app.h
Link Library: drvlib_app.lib

See Also

(C) 2009 Keith & Koep GmbH. Alle Rechte vorbehalten. Nutzungsbedingungen
(C) 2009 Keith & Koep GmbH. All rights reserved. Terms of Use