1 / 12

Communication Lines

Communication Lines. Fundamentals. Communication Lines. Generally used to connect external devices Microcontrollers world has introduced new standards for peripherals interfaces that can be externally wired or internally wired via PCB tracks: SPI I2C. Communication Lines (cont).

cdepew
Download Presentation

Communication Lines

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Communication Lines Fundamentals

  2. Communication Lines • Generally used to connect external devices • Microcontrollers world has introduced new standards for peripherals interfaces that can be externally wired or internally wired via PCB tracks: • SPI • I2C LM-18 Computer Science SSI Embedded Systems I

  3. Communication Lines (cont) • I2CIs a multi-master, multi-slave, single-ended, serialcomputer bus invented by Philips Semiconductor (now NXP Semiconductors). It is typically used for attaching lower-speed peripheral ICs to processors and microcontrollers LM-18 Computer Science SSI Embedded Systems I

  4. Communication Lines (cont) • I2C (cont)I2C uses only two bidirectional open-drain lines, Serial Data Line (SDA) and Serial Clock Line (SCL), pulled up with resistors. Typical voltages used are +5 V or +3.3 V although systems with other voltages are permitted. Common I2C bus speeds are the 100 kbit/sstandard mode and the 10 kbit/s low-speed mode, but arbitrarily low clock frequencies are also allowed.  LM-18 Computer Science SSI Embedded Systems I

  5. Communication Lines (cont) • I2C (cont)Network topology example LM-18 Computer Science SSI Embedded Systems I

  6. Communication Lines (cont) • I2C (cont)The I2C bus uses two wires: serial data (SDA) and serial clock (SCL). All I2C master and slave devices are connected with only those two wires. Each device can be a transmitter, a receiver or both. Some devices are masters they generate bus clock and initiate communication on the bus, other devices are slaves and respond to the commands on the bus. In order to communicate with specific device, each slave device must have an address which is unique on the bus. I2C master devices (usually microcontrollers) don't need an address since no other (slave) device sends commands to the master. LM-18 Computer Science SSI Embedded Systems I

  7. Communication Lines (cont) • I2C (cont)Start Stop ConditionsEach I2C command initiated by master device starts with a START condition and ends with a STOP condition. For both conditions SCL has to be high. A high to low transition of SDA is considered as START and a low to high transition as STOP. After the Start condition the bus is considered as busy and can be used by another master only after a Stop condition is detected. LM-18 Computer Science SSI Embedded Systems I

  8. Communication Lines (cont) • I2C (cont)Data TransferData on the I2C bus is transferred in 8-bit packets (bytes). There is no limitation on the number of bytes, however, each byte must be followed by an Acknowledge bit. This bit signals whether the device is ready to proceed with the next byte. For all data bits including the Acknowledge bit, the master must generate clock pulses. If the slave device does not acknowledges transfer this means that there is no more data or the device is not ready for the transfer yet. The master device must either generate Stop or Repeated Start condition. LM-18 Computer Science SSI Embedded Systems I

  9. Communication Lines (cont) • I2C (cont)AcknowledgeAt 9th bit received slave put SDA low, if this doesn’t occur slave not has detected data, a retry or an error must be provided. For multimaster operations follow this link.Clock Synchronization and HandshakingSlave devices that need some time to process received byte or are not ready yet to send the next byte, can pull the clock low to signal to the master that it should wait. Once the clock is released the master can proceed with the next byte. LM-18 Computer Science SSI Embedded Systems I

  10. Communication Lines (cont) • I2C (cont)Communication With 7-bit I2C AddressesEach slave device on the bus should have a unique 7-bit address. The communication starts with the Start condition, followed by the 7-bit slave address and the data direction bit. If this bit is 0 then the master will write to the slave device. Otherwise, if the data direction bit is 1, the master will read from slave device. After the slave address and the data direction is sent, the master can continue with reading or writing. The communication is ended with the Stop condition which also signals that the I2C bus is free. If the master needs to communicate with other slaves it can generate a repeated start with another slave address without generation Stop condition. All the bytes are transferred with the MSB bit shifted first. LM-18 Computer Science SSI Embedded Systems I

  11. Communication Lines (cont) • I2C (cont)7-bit I2C AddressingThe allocation of I2C addresses is administered by the I2C bus committee which takes care for the allocations. Two groups of 8 I2C addresses are reserved for future uses and one address is used for 10-bit I2C addressing. • Complete specification of I2C can be found on NXP Site Link LM-18 Computer Science SSI Embedded Systems I

  12. Communications Lines (cont) • I2C (cont) • Arduino/Genuino I2C supportWire Library LM-18 Computer Science SSI Embedded Systems I

More Related