en:i2c
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
en:i2c [2014/12/21 00:37] – kaklik | en:i2c [Unknown date] (current) – external edit (Unknown date) 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | FIXME **This page is not fully translated, yet. Please help completing the translation.**\\ //(remove this paragraph once the translation is finished)// | ||
====== I²C bus as an MLAB's component ====== | ====== I²C bus as an MLAB's component ====== | ||
Line 13: | Line 12: | ||
Linking of I²C devices within MLAB is implemented on several levels according to extent of a network. Locally (on scale of several meters), the modules are connected by MLAB cables and separated by [[en: | Linking of I²C devices within MLAB is implemented on several levels according to extent of a network. Locally (on scale of several meters), the modules are connected by MLAB cables and separated by [[en: | ||
- | Over more extensive distances the bus is linked through shielded signal cables ending in female connectors and connected to [[cs: | + | Over more extensive distances the bus is linked through shielded signal cables ending in female connectors and connected to [[en:uniserial|UniSerial]] module. This module also contains a basic surge protection and most importantly acts as a mechanical bridge between 'heavy external wiring' |
In the case of extensive networks I²C is replaced by other physical layer (CAN, Ethernet) that interconnects individual I²C network segments. | In the case of extensive networks I²C is replaced by other physical layer (CAN, Ethernet) that interconnects individual I²C network segments. | ||
Line 39: | Line 38: | ||
===== Convertors to connect I²C to PC ===== | ===== Convertors to connect I²C to PC ===== | ||
- | Although I²C is quite popular bus suitable to connect different sensors over short distances, it is not usually found and readily available on regular computers | + | Although I²C is quite popular bus suitable to connect different sensors over short distances, it is not usually found and readily available on regular computers. (([[http:// |
==== USB interface ==== | ==== USB interface ==== | ||
Line 50: | Line 49: | ||
These share a common problem with a quality of drivers. Furthermore, | These share a common problem with a quality of drivers. Furthermore, | ||
+ | |||
==== USB HID ==== | ==== USB HID ==== | ||
- | To connect | + | For connections |
+ | |||
+ | |||
+ | ==== UART/RS232 to I²C ==== | ||
+ | |||
+ | NXP manufactures [[http:// | ||
+ | |||
+ | ==== Ethernet to I²C ==== | ||
+ | |||
+ | This type of convertor can be constructed using [[en: | ||
+ | |||
+ | ===== I²C implementation in Linux systems ===== | ||
+ | |||
+ | There exists a package of tools for working with I²C bus for Ubuntu that can be installed through: | ||
+ | sudo apt-get install i2c-tools | ||
+ | |||
+ | Due to the usual absence of //i2c-dev// (([[https:// | ||
+ | sudo modprobe i2c-dev | ||
+ | |||
+ | <WRAP tip> | ||
+ | Modprobe command adds the module only to the kernel instance that is already running. Therefore, after reboot, the module will probably still be missing. If we do not want to use modprobe command on next computer start, we need to add following line to / | ||
+ | i2c-dev | ||
+ | </ | ||
+ | |||
+ | It is now possible to list available I²C buses: | ||
+ | |||
+ | $ sudo i2cdetect -l | ||
+ | i2c-0 i2c | ||
+ | i2c-1 i2c | ||
+ | i2c-2 i2c | ||
+ | i2c-3 i2c | ||
+ | i2c-4 i2c | ||
+ | i2c-5 i2c | ||
+ | i2c-6 i2c | ||
+ | |||
+ | Using // | ||
+ | |||
+ | kaklik@radio-arm-0: | ||
+ | | ||
+ | 00: -- -- -- -- -- -- -- -- -- -- -- -- -- | ||
+ | 10: UU -- -- -- -- -- -- -- -- -- -- -- -- -- 1e -- | ||
+ | 20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- | ||
+ | 30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- | ||
+ | 40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- | ||
+ | 50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- | ||
+ | 60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- | ||
+ | 70: 70 -- -- -- -- -- -- -- | ||
+ | kaklik@radio-arm-0: | ||
+ | |||
+ | The output above shows, that apart from system device with 0x10 address, there are to additional devices connected to the bus: 0x1e ([[en: | ||
+ | |||
+ | ==== Communication with I²C devices ==== | ||
+ | |||
+ | The bus can be controlled either by using system kernel interface or a service utility that is a part of i2c-tools package: | ||
+ | |||
+ | $ apropos i2c | ||
+ | i2cdetect (8) - detect I2C chips | ||
+ | i2cdump (8) - examine I2C registers | ||
+ | i2cget (8) - read from I2C/SMBus chip registers | ||
+ | i2cset (8) - set I2C registers | ||
+ | |||
+ | === Writing === | ||
+ | |||
+ | Writing is executed by i2cset command. A following [[cs: | ||
+ | |||
+ | ~$ sudo i2cset -y -r 1 0x70 0xff | ||
+ | Value 0xff written, readback matched | ||
+ | |||
+ | The command triggers all I²C channels on I²CHub ((caution is necessary as having the same addresses on several channels or devices will cause a collision and locking of the bus. In this event the bus has to be reset by disconnecting the power supply or through RESET pin on I2CHUB module)). | ||
+ | |||
+ | === Reading === | ||
+ | |||
+ | Reading from I²CHub is atypical as well, because the data registry is not addressed: | ||
+ | |||
+ | $ sudo i2cget -y 1 0x70 | ||
+ | 0xff | ||
+ | |||
+ | ==== Use of Linux kernel drivers ==== | ||
+ | |||
+ | Some I²C devices have their drivers directly in the linux kernel allowing an access directly through file system. It applies to following MLAB modules: | ||
+ | |||
+ | * [[en: | ||
+ | * [[en: | ||
+ | * [[en: | ||
+ | |||
+ | Due to the fact that, in principle, I²C is not a [[http:// | ||
+ | |||
+ | echo driver' | ||
+ | |||
+ | Linux kernel will take control of I²C device - such state can be seen in i2cdetect list labeled as UU. Details concerning the initialisation can be further found in [[http:// | ||
+ | |||
+ | ===== Other operating systems ===== | ||
+ | |||
+ | On other OS (like Windows or Mac OS), where we cannot or do not want to use kernel I²C interface support, we may use Python programming environment that is multi-platform. | ||
+ | |||
+ | ===== Related sites ===== | ||
+ | * [[en: | ||
+ | * [[en: | ||
+ | * [[en: | ||
+ | * [[en: | ||
+ | * [[en: | ||
+ | * [[en: | ||
+ | * [[en: | ||
+ | * [[en: |
en/i2c.1419122270.txt.gz · Last modified: 2014/12/21 00:37 (external edit)