lpc2148 i2c

12
ARM7 LPC2148 I2C Block Prof. Anish Goel

Upload: anishgoel

Post on 22-May-2015

4.734 views

Category:

Education


9 download

TRANSCRIPT

Page 1: Lpc2148 i2c

ARM7 LPC2148 I2C Block

Prof. Anish Goel

Page 2: Lpc2148 i2c

Features Standard I2C compliant bus interfaces that may be

configured as Master, Slave, or Master/Slave. Arbitration between simultaneously transmitting masters

without corruption of serial data on the bus. Programmable clock to allow adjustment of I2C transfer

rates. Bidirectional data transfer between masters and slaves. Serial clock synchronization allows devices with different

bit rates to communicate via one serial bus. Serial clock synchronization can be used as a handshake

mechanism to suspend and resume serial transfer. The I2C bus may be used for test and diagnostic

purposes

2 LPC2148 I2C Prof. Anish Goel

Page 3: Lpc2148 i2c

Description A typical I2C bus configuration is shown in Figure.

Depending on the state of the direction bit (R/W), two types of data transfers are possible on the I2C bus:

3 LPC2148 I2C Prof. Anish Goel

Page 4: Lpc2148 i2c

Description• Data transfer from a master transmitter to a slave receiver.

The first byte transmitted by the master is the slave address.Next follows a number of data bytes. The slave returns anacknowledge bit after each received byte.

• Data transfer from a slave transmitter to a master receiver.The first byte (the slave address) is transmitted by themaster. The slave then returns an acknowledge bit. Nextfollows the data bytes transmitted by the slave to the master.The master returns an acknowledge bit after all received bytesother than the last byte. At the end of the last received byte, a“not acknowledge” is returned. The master device generatesall of the serial clock pulses and the START and STOPconditions. A transfer is ended with a STOP condition or with arepeated START condition. Since a repeated START conditionis also the beginning of the next serial transfer, the I2C bus willnot be released.

4 LPC2148 I2C Prof. Anish Goel

Page 5: Lpc2148 i2c

I2C operating modes In a given application, the I2C block may operate as a

master, a slave, or both. In the slave mode, the I2C hardware looks for its own

slave address and the general call address. If one ofthese addresses is detected, an interrupt is requested.

If the processor wishes to become the bus master, thehardware waits until the bus is free before the mastermode is entered so that a possible slave operation is notinterrupted.

If bus arbitration is lost in the master mode, the I2C blockswitches to the slave mode immediately and can detectits own slave address in the same serial transfer

5 LPC2148 I2C Prof. Anish Goel

Page 6: Lpc2148 i2c

Master Transmitter mode In this mode data is transmitted from master to

slave. The first byte transmitted contains the slave address

of the receiving device (7 bits) and the data directionbit. In this mode the data direction bit (R/W) shouldbe 0 which means Write.

Data is transmitted 8 bits at a time. After each byte is transmitted, an acknowledge bit is

received. START and STOP conditions are output to indicate

the beginning and the end of a serial transfer.

6 LPC2148 I2C Prof. Anish Goel

Page 7: Lpc2148 i2c

Format in the Master Transmitter mode

7 LPC2148 I2C Prof. Anish Goel

Page 8: Lpc2148 i2c

Master Receiver mode In the master receiver mode, data is received from a

slave transmitter. The transfer is initiated in the same way as in the

master transmitter mode. When the START conditionhas been transmitted, the interrupt service routinemust load the slave address and the data directionbit to the I2C Data Register (I2DAT), and then clearthe SI bit.

In this case, the data direction bit (R/W) should be 1to indicate a read.

8 LPC2148 I2C Prof. Anish Goel

Page 9: Lpc2148 i2c

Format of Master Receive mode

9 LPC2148 I2C Prof. Anish Goel

Page 10: Lpc2148 i2c

Slave Receiver mode In the slave receiver mode, data bytes are received from a

master transmitter.Format of Slave Receiver mode

10 LPC2148 I2C Prof. Anish Goel

Page 11: Lpc2148 i2c

Slave Transmitter mode The first byte is received and handled as in the slave

receiver mode. However, in this mode, the direction bitwill be 1, indicating a read operation.

Serial data is transmitted via SDA while the serial clock isinput through SCL. START and STOP conditions arerecognized as the beginning and end of a serial transfer.

In a given application, I2C may operate as a master andas a slave.

In the slave mode, the I2C hardware looks for its ownslave address and the general call address.

If one of these addresses is detected, an interrupt isrequested.

11 LPC2148 I2C Prof. Anish Goel

Page 12: Lpc2148 i2c

Format of Slave Transmitter mode

12 LPC2148 I2C Prof. Anish Goel