I2C is a two-wire serial bus. It is used to interface with low-speed peripherals in embedded systems and computer motherboards.

learn more… | top users | synonyms

1
vote
0answers
88 views

Is there really no way to control priority of workqueue processing as compared to user processes/threads?

I've been reading a variety of references that discuss the use of bottom-half work queues for deferred processing in linux drivers. From what I glean, it seems like any work done by kernel work ...
1
vote
1answer
256 views

Trouble talking to i2c device in linux

I'm having trouble talking to an i2c device in linux. The device is connected to the SMBus which normally comes up as /dev/i2c-0. My driver's init function is getting called and the driver is ...
3
votes
1answer
2k views

How to read data from Arduino with Raspberry Pi with I2C

I am trying to read data from an Arduino UNO to Raspberry Pi with the python smbus module. The only documentation I could find on the smbus module was here. I am not sure what the cmd means in the ...
1
vote
1answer
424 views

I2C Bitbanging in Raspberry pi

We are using raspberry pi in one of our projects; in the same we want to use the i2c to interface touch screen. As i2c in pi shall not support clock stretching planning to use the i2c bit banging. I ...
4
votes
1answer
2k views

How do I connect an Arduino Uno with Raspberry Pi using I²C

I'm trying to send data through the I²C interface from the Arduino Uno to the Raspberry Pi using I²C. This was the code I used. In Arduino: #include <Wire.h> unsigned int watt; unsigned int ...
0
votes
1answer
1k views

Arduino with I2c Freescale Pressure Sensor MPL3115A2 communication

does anyone have experience with the Freescale I2C pressure sensor MPL3115A2? I need to use it in a project concerning Arduino UNO r3. I try to get communication between they, but i can't do it ...
0
votes
0answers
167 views

Write and read i2c in android app

In my application I use NDK+JNI to write and read I2C, and compile APK, it can run. But it can not read data. How to confirm the I2C address? How to set the value of slaveAddr? I check reference ...
0
votes
1answer
211 views

Is simultaneous I2C, SPI and USB communication between multiple MSP430s possible?

I have programmed a couple of MSP430x6xx microcontrollers to serve as Master for some I2C slave devices. One of the MSP430s transfer the data received from I2C slaves to a PC using its built in USB ...
0
votes
1answer
468 views

How do I install python libraries in raspberry pi without an internet connection?

I have to install a few libraries in my Raspberry Pi but I cannot connect it to the internet. Is it possible to download them in a windows pc (even linux is fine) and copy them to the raspberry pi so ...
0
votes
0answers
112 views

reading from PCA 9554 (i2c) in ardunio

I am trying to read data from a PCA9554 in arduino. The hard ware setup is simple: all 3 address line of the PCA9554 is connected to high (+5 v), so the address of this device is 0x27. The code that I ...
3
votes
2answers
300 views

Need help handling multiple shared I2C MAX3107 chips on shared ARM9 GPIO interrupt (linux)

Our group is working with an embedded processor (Phytec LPC3180, ARM9). We have designed a board that includes four MAX3107 uart chips on one of the LPC3180's I2C busses. In case it matters, we are ...
1
vote
2answers
240 views

best common practice I2C register map

Just wondering what the best practice regarding I²C register maps in C or rather what other people use often/prefer. Up to this point, I have usually done lots of defines, one for every register and ...
2
votes
3answers
211 views

C i2c chip reading MCP9800 suddenly starts failing

I have some code: #define AMB_LSB 0.0625 void Ambient::read() { uint32_t raw; float filtered; uint8_t bytes = 2; uint8_t buf[bytes]; ...
0
votes
1answer
103 views

i2c smbus filter function corrupting variables

I have a simple function #define AMB_FILTER 0.7f int32_t fValue; (this is declared in the class header) int32_t Ambient::filter(uint32_t raw) { // If we have no preliminary fValue we don't need ...
0
votes
3answers
103 views

How does this code work and what is it called

The code in question is "? something : something_else". Usually in the code below you can put either I2C_SLAVE or I2C_SLAVE_FORCE. But this code does something else. How does it work and what exactly ...
1
vote
2answers
385 views

Multiple markers at this line - Syntax error (eclipse)

i create a header file for i2c, the origin from Peter Fleury. i rewrite in eclipse and get error warning "Multiple markers at this line - Syntax error - expected identifier or '(' before 'unsigned'" ...
2
votes
1answer
407 views

Android I2C Read/Write Speed

I have been performing timing measurements on an application that communicates to a device by means of an I2C interface. I have discovered that single I2C read and writes are taking around 450us to ...
1
vote
1answer
525 views

Linux kernel driver async I2C (on Raspberry PI)

I'd like to write an I2C driver for a sensor device. There is a non-zero conversion time, and I don't want to waste kernel time to wait and poll busy state until the device is busy. I thought I setup ...
0
votes
0answers
274 views

Arduino address technicality of Wire.requestFrom

I'm consolidating code from a few different developers into libraries, and it seems that almost each one has a different style of using Wire.requestFrom. Is Wire.beginTransmission(_address); ...
-1
votes
2answers
94 views

Accessing values from i2c address

You can take a look at this website: http://www.hitechnic.com/cgi-bin/commerce.cgi?preadd=action&key=NSK1042 to get a better understanding of what I'm talking about. For example, the website ...
0
votes
1answer
439 views

Setting i2c slave address for Devantech digital compass

I am trying to interface with a Devantech digital compass found here - http://www.acroname.com/robotics/parts/R117-COMPASS.html I am using a i2c-usb converter to plug it into my laptop - ...
0
votes
1answer
252 views

Arduino I²C EEPROM read error in a specific address block

I have an Arduino's I²C bus connected to the I²C bus of a Microchip PICDEM 2 board to program its 32K byte EEPROM. The code below has a read problem. Specifically, I have written the entire EEPROM ...
1
vote
1answer
493 views

Arduino interrupt handling

Background I have need for a data logging application running on a "Arduino compatible" chipKit UNO32 board, with a connected sensor. Data should be logged to an SD-card found on a "Arduino Wireless ...
0
votes
0answers
106 views

I2C Data Rate Configuration 100/400KHz

I am currently using an I2C device within an android application and think it may be operating at 100KHz. I would like it to run at 400KHz. Assuming the I2C device accommodates this How would I go ...
0
votes
1answer
274 views

I2C Drivers on Samsung Galaxy S3

I'd like to access I2C drivers on my Samsung S3 GT19300 from an Android application. Do I need to root the device to do this? Thanks in advance.
0
votes
2answers
269 views

Verilog: I2C read operation

In a verilog simulation, I will have to communicate with the 64K I2C EEPROM from Microchip. Every time for getting an ack from slave, I am driving my SDA to high impedance for a given clock period. ...
8
votes
1answer
811 views

iPad accessory communication through UART

We manufacture a new accessory for iPad/iPhone which should transfer commands to the iPad. We like to use UART (through a certain Apple-protocol called Lingo). My research shows that I can only use ...
1
vote
0answers
207 views

Configure the UM232H for I2C

I got some problems configuring the UM232H module (FTDI) for I2C communication. They got on the website of FTDI some examples, but all of their examples don't work for me. I don't know what I do ...
0
votes
0answers
459 views

Failure in writing to EEPROM, through IC2, on PIC32MX

PIC: PIC32MX564F128L EEPROM: 24AA16 I've put together some code for the PIC, in C, to read & write to an external EEPROM, via I2C. When I use these methods to write a single byte, then read it ...
1
vote
0answers
102 views

How to add a rtc node in PPC DTS?

I'm new in PPC device driver development, and I've recently encountered a problem in DTS. Our team add a rtc chip rtc-pcf8563 in to the new developing board in PPC platform. The driver is availiable ...
1
vote
2answers
857 views

python smbus/i2c frequency

I would like to change i2c bus frequency in order to allow for slightly longer cables. I am using python-smbus package and it does work very well, however, I am unable to find how to set the bus ...
1
vote
1answer
514 views

I2C Read/Write Issue with RTCC caused by PIC24HJ256GP610/610A Differences?

I'm having problems with the I2C module on the PIC24HJ256GP610A. My code (see snippet below) runs perfectly fine on the PIC24HJ256GP610 [note: not 610A]. I'm using the I2C bus for communicating with a ...
3
votes
1answer
189 views

Soft I²C ping function

I am using a soft I²C implementation to read a set of Sensirion SHT21 sensors. I am trying to figure out a way of having the sensors answer to see if they are actually connected to the device. I am ...
0
votes
0answers
265 views

Bosch BPM085 pressure calculation

I'm new to i2c programming and I'm trying to read the pressure and temperature values from a Bosch BPM085 (datasheet). Temperature values I calculated seems to be correct, but the hPa pressure values ...
0
votes
1answer
423 views

OMAP 3 Linux I2C SMBUS SmartBattery (SBS) not Detected

I am working on an embedded Linux project with the OMAP 3730. We are using version 3.2.23 of the Kernel. I2C works fine and I can see various sensors from the board on bus #2. I2C bus #3 only has a ...
0
votes
1answer
122 views

PIC16F88, portb.bit6, and I2C

I am having an odd problem with my PIC16F88. I have an EEPROM connected thru I2C and it works flawlessly until I write to portb.bit6. From that point on, I start getting garbage from my EEPROM. I ...
0
votes
0answers
160 views

How to use same I2C driver code,for 2 mux having different addr of same class

enter code here on my board 2 mux's of same type(ie same IC(DS64MB201 )) connected to master(processor) by means of I2C bus.Both mux's with diff addrs ofcourse i want to write common piece of driver ...
1
vote
2answers
142 views

What is wrong with my I2C link? It toggles LEDS when it shouldn't

I have two Lattice chips connected up to my Arduino connected through I2C. The Lattice boards contain 8 LEDs each. My Arduino is the master. Photo My goal is to drive the LEDs on each board. So far ...
3
votes
1answer
657 views

linux driver for an i2c device — two byte read

I'm trying to write a Linux driver for an I2C device that seems to be slightly different from a typical device. Specifically, I need to read two bytes in a row without sending a stop bit in between, ...
12
votes
5answers
27k views

How can you flush a write using a file descriptor?

It turns out this whole misunderstanding of the open() versus fopen() stems from a buggy I2C driver in the Linux 2.6.14 kernel on an ARM. Backporting a working bit bashed driver solved the root ...
1
vote
1answer
281 views

Programing the i2c interface in a SBC with C language

I am trying to use the i2c interface of a SCB TS-7500 in order to comunicate it to a microcontroler atmega32. i want to configure the twiclockfrequency, and for that i need to configure the ECONA ...
1
vote
0answers
814 views

Accessing i2c in linux: /dev/ vs /sys/class [closed]

Hello I'm a novice embedded linux engineer still learning the ropes. I have previously worked on a project where I had to use the i2c bus to access a peripheral. I did so simply by using the ...
0
votes
0answers
242 views

i2c digital audio stream as input in linux audio

At the moment i have an A/D (analog to digital converter) that i am using to convert an analog audio stream to digital to put into the computers audio system via I2C. The end goal is, is to take the ...
0
votes
1answer
722 views

Accessing/monitoring battery status through SMBus

I am currenlty trying to monitor my battery status through SMBus. I have a battery along with a control board that constantly outputs the battery status. This control board is then connected to my ...
1
vote
1answer
357 views

Writing to EEPROM via I²C fails

I'm trying to write into an EEPROM via I²C from user space. I'm using the /dev device file and the open, read, write and ioctl functions. Reading works without a problem, but when I use the same code ...
0
votes
1answer
302 views

Is it possible to make a (non jailbroken) iPhone emit i2c commands?

I want to control a string of LEDs directly from my iPhone. The LED controller chips talk the i2c serial protocol. Can I do this with Apple-supported APIs on a non-jailbroken iPhone? Which frameworks ...
1
vote
1answer
376 views

Beagleboard Ubuntu ULCD7 Touchscreen

I have a ULCD7 Touchscreen for my beagleboard and I am trying to get it setup. I have the video working using the ubuntu image building script setup_sd.sh and the --addon ulcd flag. But I cant seem to ...
0
votes
1answer
1k views

Implementing i2c from Linux Userspace

Sorry for the long description of my problem :-) I have been handed a task to perform simple reads and writes to/from an I2C device on our new PC based board design. The board will be built using ...
1
vote
3answers
585 views

Liquid Crystal LCD Programming with Arduino?

I would like my LCD to display "Voltage=(sensorValue)" but right now the only way I can get the program to recognize the value as I turn the potentiometer is if I put it in a loop. But when I put it ...
0
votes
2answers
1k views

I2C_SLAVE ioctl purpose

I am writing code for implementing a simple i2c read/write function using the general linux i2c driver linux/i2c-dev.h I am confused about the ioctl : I2C_SLAVE The kernel documentation states as ...