[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
interfacing_i2c_devices [2014/03/22 10:21 (UTC)] – [Communicating With An I2C Device] louigi600interfacing_i2c_devices [2014/04/03 21:25 (UTC)] – [Communicating With An I2C Device] louigi600
Line 137: Line 137:
  
 A bash script is really not the most suitable way to read data from I2C devices, a faster means of managing the data from the devices is really mandatory in order to do calibration, data averaging and what more to make the information consistent and useful for further calculations. I found the Linux kernel i2c documentation a usefull reference (<kernel source tree>/Documentation/i2c/dev-interface); it's not the only way that data can be read but it's a good starting point. A bash script is really not the most suitable way to read data from I2C devices, a faster means of managing the data from the devices is really mandatory in order to do calibration, data averaging and what more to make the information consistent and useful for further calculations. I found the Linux kernel i2c documentation a usefull reference (<kernel source tree>/Documentation/i2c/dev-interface); it's not the only way that data can be read but it's a good starting point.
 +
 +I hate showing my poor C programming capabilities but here's some code that uses i2c-dev to read stuff from the ITG3200 and takes an average over 10 readings:
 +
 +  #include <sys/ioctl.h>
 +  #include <errno.h>
 +  #include <string.h>
 +  #include <stdio.h>
 +  #include <stdlib.h>
 +  #include <unistd.h>
 +  #include <linux/i2c-dev.h>
 +  #include <fcntl.h>
 +  #include <errno.h>
 +  
 +  #define I2C_DEVICE "/dev/i2c-1"
 +  #define I2C_DEV_ADDR 0x69
 +  #define I2C_DEV_SELF 0x0
 +  #define I2C_DEV_INT 0x1a
 +  #define I2C_DEV_REG_START_ADDR 0x1b
 +  #define I2C_DEV_REG_END_ADDR 0x22
 +  
 +  #define TEMP_RAW_OFFSET 13200
 +  #define TEMP_RAW_SENSITIVITY 280
 +  #define TEMP_OFFSET 35
 +  
 +  #define ROT_RAW_SENSITIVITY 14.375
 +  
 +  void read_registers (int file, int *raw)
 +  { char buf[256] = {0};
 +    int i,j,k;
 +  
 +  /*For some unexpected reason I'm getting responses from the other I2C devices
 +    on the same bus so I'm ignoring data that does not match the WHO AM I reg
 +    and also data that has not set the interrupt register (meaning that data is
 +    not really avalible)
 +  */
 +    while (buf[0] != 0x69 || buf[26] == 0)
 +    { if (read(file,buf,sizeof(buf)) != sizeof(buf))  
 +      { /* ERROR HANDLING: i2c transaction failed */
 +        printf("Failed to read from the i2c bus.\n");
 +        exit(1);
 +      }
 +    }
 +  
 +    j=0;
 +    for(i=I2C_DEV_REG_START_ADDR;i<=I2C_DEV_REG_END_ADDR;i++)
 +    { k= (buf[i] << 8) + buf[i+1];
 +      if ( k > 32768 ) *(raw+j)= k - 65536;
 +      else *(raw+j)=k;
 +      i++;
 +      j++;
 +    } 
 +  }
 +  
 +  main ()
 +  { int file,buffer;
 +    int i,j,k;
 +    int raw_data[4];
 +    float data[4],tdata[10],rxdata[10],rydata[10],rzdata[10];
 +    char buf[256] = {0};
 +  
 +    if ((file = open(I2C_DEVICE, O_RDWR)) < 0) 
 +    { /* ERROR HANDLING: you can check errno to see what went wrong */
 +      perror("Failed to open the i2c bus");
 +      exit(1);
 +    } 
 +  
 +    if (ioctl(file, I2C_SLAVE, I2C_DEV_ADDR) < 0) 
 +    { printf("Failed to acquire bus access and/or talk to slave.\n");
 +      /* ERROR HANDLING; you can check errno to see what went wrong */
 +      exit(1);
 +    }
 +  
 +    for(i=0;i<10;i++)
 +    { read_registers(file,&raw_data[0]);
 +      tdata[i]=TEMP_OFFSET + (((float)raw_data[0] + TEMP_RAW_OFFSET) / TEMP_RAW_SENSITIVITY);
 +      rxdata[i]=(float)raw_data[1]/ ROT_RAW_SENSITIVITY;
 +      rydata[i]=(float)raw_data[2]/ ROT_RAW_SENSITIVITY;
 +      rzdata[i]=(float)raw_data[3]/ ROT_RAW_SENSITIVITY;
 +    }
 +    close(file);
 +  
 +    for(i=0;i<10;i++)
 +    { data[0]=data[0] + tdata[i];
 +      data[1]=data[1] + rxdata[i];
 +      data[2]=data[2] + rydata[i];
 +      data[3]=data[3] + rzdata[i];
 +    }
 +    for(i=0;i<4;i++) data[i]=data[i]/10;
 +  
 +    printf("Temp. : %2.2f \n",data[0]);
 +    printf("Rot. X : %2.2f \n",data[1]);
 +    printf("Rot. Y : %2.2f \n",data[2]);
 +    printf("Rot. Z : %2.2f \n",data[3]);
 +  }
 +
 +With some help from LQ forum I realized that it's a bad idea to bulk dump the whole register set, instaad it's better to probe each register separately. The code that follows does not yet make the avarage like the one above bit it takes 10 consecutive readings without having to skip any data.
 +
 +  #include <sys/ioctl.h>
 +  #include <errno.h>
 +  #include <string.h>
 +  #include <stdio.h>
 +  #include <stdlib.h>
 +  #include <unistd.h>
 +  #include <linux/i2c-dev.h>
 +  #include <fcntl.h>
 +  #include <errno.h>
 +  
 +  #define I2C_DEVICE "/dev/i2c-1"
 +  
 +  /*ITG3200*/
 +  #define ITG3200_ADDR 0x69
 +  #define ITG3200_SELF 0x0
 +  #define ITG3200_INT 0x1a
 +  #define ITG3200_TH 0x1b /*2 bytes Hight byte and Low byte*/
 +  #define ITG3200_TL 0x1c
 +  #define ITG3200_XRH 0x1d /*2 byte Hight byte and Low byte*/
 +  #define ITG3200_XRL 0x1e
 +  #define ITG3200_YRH 0x1f /*2 byte Hight byte and Low byte*/
 +  #define ITG3200_YRL 0x20
 +  #define ITG3200_ZRH 0x21 /*2 byte Hight byte and Low byte*/
 +  #define ITG3200_ZRL 0x22 /*2 byte Hight byte and Low byte*/
 +  #define ITG3200_TEMP_RAW_OFFSET 13200
 +  #define ITG3200_TEMP_RAW_SENSITIVITY 280
 +  #define ITG3200_TEMP_OFFSET 35
 +  #define ITG3200_ROT_RAW_SENSITIVITY 14.375
 +  
 +  void read_itg3200 (int file, int *raw, int *reg_array,int size)
 +  { __s32 res;
 +    int i,j,k;
 +  
 +    for(i=0;i<size;i++)
 +    { k=0;
 +      printf("%2x : ",*(reg_array + i));
 +      for (j=0;j<2;j++)
 +      {
 +        if( (res = i2c_smbus_read_byte_data(file,*(reg_array + i + j)) )< 0 )
 +        { printf("Failed to read from the i2c bus.\n");
 +          exit(1);
 +        }
 +        if (j == 0) k=(int)res << 8;
 +        else
 +        { k += (int)res;
 +          printf("%4x \n",k);
 +          *(raw + (i/2))=k; 
 +        }
 +      }
 +      i++;
 +    }
 +  }
 +  
 +  main ()
 +  { int file,buffer;
 +    int i,j,k;
 +    float data[4],tdata[10],rxdata[10],rydata[10],rzdata[10];
 +    char buf[256] = {0};
 +  
 +    int ITG3200_REGS[8]={ITG3200_TH,ITG3200_TL,ITG3200_XRH,ITG3200_XRL,
 +      ITG3200_YRH, ITG3200_YRL,ITG3200_ZRH,ITG3200_ZRL};
 +    int ITG3200_RAW_DATA[4];
 +    float ITG3200_DATA[4];
 +  
 +    if ((file = open(I2C_DEVICE, O_RDWR)) < 0)
 +    { perror("Failed to open the i2c bus");
 +      exit(1);
 +    }
 +  
 +    if (ioctl(file, I2C_SLAVE, ITG3200_ADDR) < 0)
 +    { printf("Failed to acquire bus access and/or talk to slave.\n");
 +      exit(1);
 +    }
 +  
 +    for (i=0;i<10;i++)
 +    { read_itg3200(file,&ITG3200_RAW_DATA[0],&ITG3200_REGS[0],sizeof(ITG3200_REGS)/sizeof(ITG3200_REGS[0]));
 +      printf("\n");
 +    }
 +  
 +    for (i=0;i<sizeof(ITG3200_RAW_DATA)/sizeof(ITG3200_RAW_DATA[0]);i++)
 +    { printf("%2x ",ITG3200_RAW_DATA[i]);
 +    }
 +    printf("\n");
 +    close(file);
 +  }
 +
 ====== Voltage Level Shifting ====== ====== Voltage Level Shifting ======
 You may end up with heterogeneous voltage level devices and if you have many devices the correct way to work around this problem is by using bidirectional I2C voltage level shifters like the [[ http://www.ti.com/lit/ds/symlink/pca9306.pdf |PCA9306]], but if you only have a few devices all grouped up in a neat PCB like the 10DOF IMU unit you might want to give a simpler system a try. You may end up with heterogeneous voltage level devices and if you have many devices the correct way to work around this problem is by using bidirectional I2C voltage level shifters like the [[ http://www.ti.com/lit/ds/symlink/pca9306.pdf |PCA9306]], but if you only have a few devices all grouped up in a neat PCB like the 10DOF IMU unit you might want to give a simpler system a try.
 howtos:hardware:arm:interfacing_i2c_devices ()