Difference between revisions of "EBC Exercise 12 I2C"
m (→The Software) |
(→From C: Added details) |
||
Line 63: | Line 63: | ||
=== From C === | === From C === | ||
+ | |||
+ | Another approach to using I²C on the Beagle is from a C program. You can open <code>/dev/i2c-2</code> and do <code>ioctl</code> calls on it to read and write data. | ||
+ | |||
+ | [http://www.rose-hulman.edu/~yoder/Beagle/exercises/ Here] you will find a directory called '''i2c'''. In it is '''myi2cget.c'''. Copy it to your Beagle, compile it and run it. | ||
+ | <pre> | ||
+ | $ gcc myi2cget -o myi2cget | ||
+ | $ ./myi2cget | ||
+ | Usage: ./myi2cget <i2c-bus> <i2c-address> <register> | ||
+ | $ ./myi2cget 2 72 0 | ||
+ | 0x1b (27) | ||
+ | </pre> | ||
+ | It takes many of the arguments as '''i2cget''', but none of the flags. It's very stripped down version of i2cget. | ||
+ | |||
+ | The '''tools''' directory contains the original '''i2cget''' code. It came from [http://www.lm-sensors.org/wiki/man/i2cget here]. | ||
== Assignment == | == Assignment == | ||
== References == | == References == |
Revision as of 13:04, 26 July 2011
I2C is a "two-wire interface" standard that is used to attach low-speed peripherals to an embedded system. In this exercise we will wire up a couple of I2C temperature sensors (TC74) and learn how to read their values.
The Hardware
The DM3730 on the BeagleBoard-xM has four I²C controllers (Section 17 of the TRM). Bus 2 is brought out to the Expansion Header. These signals are 1.8V and the TC74 runs on 2.7 to 5.5V. For now I'm going to use the BeagleBoard Trainer since it brings the voltages up to 3.3V.
I²C is a two-wire bus. The two wires are
- Serial Clock (SCLK on the data sheet, SCL on the Beagle), is an input to the TC74 and is used to clock data into and out of the TC74.
- Serial Data (SDA on both), is bidirection and carries the data to and from the TC74.
The only other two pins on the TC74 that you need to use are the Power Supply (Vdd) and Ground.
Wire up the TC74 to the Beagle by attaching the Vdd to the 3.3V pad on the Trainer, the GND to a GND on the Trainer and SDA to SDA and SCLK to SCL. You will also need to attach two pull up resistors. Get two 4.7KΩ resistors. Attach one between SDA and Vdd. Attach the other between SCL and Vdd.
You TC74 should be labeled with TC74a# where the # is a digit. This digit tells the address of the device. If you have another TC74 with a different address, you can wire it in parallel with the first. That is, attach SDA to SDA and SCL to SCL, etc. No need for additional pull up resistors.
The Software
From the Shell
The Beagle brings out I²C bus 2 to the Expansion Header. You can see what devices are on the bus by using the i2cdetect command. On your Beagle try:
$ i2cdetect -y-r 2 0 1 2 3 4 5 6 7 8 9 a b c d e f 00: -- -- -- -- -- -- -- -- -- -- -- -- -- 10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 30: -- -- -- -- -- -- -- -- -- -- -- -- UU -- -- -- 40: -- -- -- -- -- -- -- -- 48 -- 4a -- -- -- -- -- 50: 50 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 70: -- -- -- -- -- -- -- --
What you see is a list of all the devices found on the bus. I've attached two TC74's, a TC74A0 and a TC74A2. Their address are 1001 000
and 1001 010
respectively. Converting to hex you get 0x48
and 0x4a
. You can see the two appear in the ic2detect.
Each TC74 has two registers.
Command | Code | Function |
---|---|---|
RTR | 0x00 | Read Temperature (TEMP) |
RWCR | 0x01 | Read/Write Configuration (CONFIG} |
Check the TC74 manual for detail on the configuration register. We're interested in the TEMP register. You can read it with:
$ i2get -y 2 0x48 0 0x1b
The -y don't ask me, just do it. 2 says use bus 2. 0x48 is the device address and 0 is the register number. The value returned is the temperature in degrees C.
- Convert the hex temperature to decimal. Is the value reasonable?
- Write a script to run ic2get in a loop and watch the temperature. Hold the device between your fingers. Does the temp go up?
From C
Another approach to using I²C on the Beagle is from a C program. You can open /dev/i2c-2
and do ioctl
calls on it to read and write data.
Here you will find a directory called i2c. In it is myi2cget.c. Copy it to your Beagle, compile it and run it.
$ gcc myi2cget -o myi2cget $ ./myi2cget Usage: ./myi2cget <i2c-bus> <i2c-address> <register> $ ./myi2cget 2 72 0 0x1b (27)
It takes many of the arguments as i2cget, but none of the flags. It's very stripped down version of i2cget.
The tools directory contains the original i2cget code. It came from here.