Tagged Questions

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

7
votes
2answers
950 views

I2C write acknowledge polling in Linux Kernel

The lackluster response here made me wonder this. I've been saddled with a device (Analog Devices 525x) that (from the data sheet, pg 16): disables the I2C interface during the internal ...
5
votes
5answers
13k 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 ...
4
votes
1answer
256 views

Is forcing I2C communication safe?

For a project I'm working on I have to talk to a multi-function chip via I2C. I can do this from linux user-space via the I2C /dev/i2c-1 interface. However, It seems that a driver is talking to the ...
3
votes
0answers
462 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 ...
3
votes
1answer
1k views

Probe problem when writing a I2C device driver

I am a newbie in writing linux device driver, forgive me if anything stupid a asked and my poor English^^ I am trying to write a driver for a touch panel, which communicate with CPU via I2C. I tried ...
2
votes
1answer
112 views

I2C to FPGA to PCIe to HID

We have a hardware design in progress that is taking touch screen inputs and passing them along via I2C to an FPGA. The FPGA translates the I2C data to PCIe. The PCIe passes the touchscreen data to ...
2
votes
2answers
214 views

I2C temperature read from BMP085 reading back 0xffff

I'm interfacing a Rabbit 5760 CPU to a Bosch BMP085 sensor via I2C. Everything is fine except reading the temperature register is reading back 0xffff (see BP_FINISHTEMP case in switch). I can't see ...
2
votes
4answers
368 views

Where is the errnos defined? Example linux c/c++ program for i2c

When something goes wrong in a classic linux c/c++ software we have the magic variable errno that gives us a clue on what just went wrong. But where is those errors defined? Let's take a example ...
2
votes
5answers
318 views

Making a pointer that points to two bytes

I'm a complete novice in everything except maybe breathing, so sorry if I'm not being clear, but here goes: I have a function in C which writes bytes to a circuit via an I2C bus, and in the header ...
2
votes
2answers
2k views

PIC I2C slave ack on data

I am looking into the I2C protocol for PIC16F88X. What I would like to do, is to enable an I2C slave to either ACK or NACK depending on the data received on the I2C. The PIC can ACK or NACK on the ...
2
votes
3answers
2k views

I2C ISR and Interrupts

Platform - ARM9 I have a third party device connected via I2C to the ARM9. My problem is the I2C read/write is getting in a twist. It appears the IRQ line is asserted but never de-asserted when there ...
2
votes
2answers
7k views

reading / writing fram using I2C on Linux

I'm trying to read/write to a FM24CL64-GTR FRAM chip that is connected over a I2C bus on address 0b 1010 011. When I'm trying to write 3 bytes (data address 2 bytes, + data one byte), I get a kernel ...
1
vote
1answer
75 views

when to use platform_driver over I2C?

I am looking a code xxx device is an IC using I2C to communicate. Somehow it is written using platform device. To communicate with the IC it is using "microp_i2c_write()"(pls refer to the following ...
1
vote
3answers
237 views

How to recover from I2C bus collision BCLIF?

I posted this a couple of days ago on the Microchip Forum (here) but the only response has been crickets. The I2C code below works most of the time but occasionally on power-up there is a bus ...
1
vote
0answers
57 views

i2c master for s35390a rtc slave

Is there a sample i2c master code that supports rtc s35390a hardware clock? I am currently working on an SOC that needs to support s35390a from Seiko. But currently, i am getting an error rtc-s35390a ...
1
vote
1answer
479 views

I2C, pullup resistors (STM32 discovery)

I am sending my data trought I2C (using DMA every 1s). I´ve added two pullup-resistors to SCK and SDATA. There are now slaves, so because no respond, master send only slave adress and thats all. Its ...
1
vote
1answer
290 views

I2C linux drivers

I will need to write my own drivers for few controllers in my chipset.I work on SoC with SDK, that doesn't provide "linux i2c compatible" driver. It has simple char driver for i2c. I would like to use ...
1
vote
1answer
545 views

Use of EXPORT_SYMBOL

I'm embedding some driver into a Linux kernel when I get this error (I'm adding the device in the board file and registering it): error: 'kxtf9_get_slave_descr' undeclared here (not in a function) ...
1
vote
0answers
263 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, ...
1
vote
1answer
192 views

Failed TWI transaction after sleep on Xmega

we've had some troubles with TWI/I2C after waking up from sleep with the Atmel Xmega256A3. Instead of digging into the details of TWI/I2C we've decided to use the supplied twi_master_driver from Atmel ...
1
vote
1answer
636 views

write()ing to i2c device: Operation not permitted

So I have 2 PCA9555 (16 channel digital I/O) chips connected to a small embedded device running Linux over i2c. The PCA9555 devices have 7 bit addresses 0100000 and 0100001. When I power up the ...
1
vote
1answer
748 views

Android hardware dev kits?

I'm faced with the task to write a driver for Android (OS 2.3 and 2.4) to interface with a sensor chip over either SPI or I2C. The device is intended to be used in Android smart phones eventually, ...
1
vote
1answer
360 views

Atmega64 pins question. SCL/SDA same as TXD/RDX?

I'm not an Atmega pro by any means whatsoever. In fact, never worked with them. I'm trying to add an external eeprom using i2c interface to a device that uses an Atmega64 controller. From the ...
1
vote
5answers
218 views

Extending python with C module

So I have a C program to interface with an i2c device. I need to interface to that device from python. I'm just wondering if it's worth porting the program into a python module or if the amount of ...
1
vote
1answer
65 views

what is/where can i find more info on “HI2COUT”

looking to bit-bang the I2C interface of a MCP23017 with an ATtiny13A, a lot of places mention HI2COUT as a method to send data on the I2C bus but i have no clue if this is part of a language or a ...
1
vote
1answer
286 views

C/C++-Library for EEPROM wear-leveling under Linux?

does anybody know of a library for storing data securely in an 8k-EEPROM, which is attached over the I2C-interface? I am especially interested in wear-leveling as I have a write-intensive application ...
1
vote
1answer
417 views

When to best implement a I2C driver module in Linux

I am currently dealing with two devices connected to the I2C bus within an embedded system running Linux. I am using an exisiting driver for the first device, a camera. For the second device, I have ...
1
vote
1answer
1k views

How to retrieve data from an i2c device over usb in linux

I have a temperature sensor, which is connected using an USB-I2C adapter (http://www.robot-electronics.co.uk/htm/usb%5Fi2c%5Ftech.htm) I attached this device to my linux computer (suse10). I typed ...
1
vote
1answer
1k views

How do I write a new Linux driver for an i2c device?

I have a usb device with some i2c control functions and I would like to add a userspace API for twiddling those bits. How do I add i2c support to my device's existing driver?
0
votes
0answers
55 views

Is it ligher to run i2c routines in userspace or the same driver in kernelspace?

I'm working on an ARM-based system running embedded Linux. I'm reading data from two inertial sensors over i2c (using SMBUS routines) at 100Hz (12 readings every 10ms), with a userspace program I ...
0
votes
1answer
110 views

How to read a sequence of bytes through I2C?

I want to read a sequence of bytes from my accelerometer. I can't get it work. When I read byte by byte all is ok, but when I try to read sequence I can't get a true values. void ...
0
votes
2answers
258 views

How to properly initialize I2C stm32?

I want to get data from ADXL345 accelerometer,but seems that I incorrectly connect it. SCL- PC6(with 10k resistor) SDA- PC7(with 10k resistor) SDO- GND CS - VCC GND - GND 3.3v - VCC Here is my ...
0
votes
1answer
101 views

Creating I2C device driver struct setup

I am writing a device driver which use I2C to communicate to host. Below is the code I wanted to learn and understand. Do help me out If my understanding is wrong about the code below. "//" is my ...
0
votes
0answers
59 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
2answers
53 views

usage of byte paradigm c library

I want to use I2C C library for 'byte paradigm' I2C express device. This was sample API present in byte paradigm website. // // Executing I2C write transfer // pDataWr[0] = 0x12; pDataWr[1] = ...
0
votes
0answers
108 views

Writing to eeprom via i2c fails

I'm trying to write into an eeprom via i2c from user space. I'm using the /dev device file and open/read/write/ioctl functions. Reading works without a problem, but when I use the same code for ...
0
votes
2answers
217 views

How to forward IOCTL's from i2c-dev.c to adapter driver (i2c-rt3352.c)

I'm writing the I2C adapter driver for SOC. This adapter exist now in system and RTC driver works with it via .master_xfer. I would like to send IOCTL's from application via /dev/i2c. I have loaded ...
0
votes
0answers
50 views

Calling Kernelmode from Usermode

Are there any convenient APIs for calling Win32 drivers from UserMode? Specifically I want to enumerate display minidrivers, from a GUI usermode app, and then call VideoPortDDCMonitorHelper. ...
0
votes
0answers
127 views

Linux input device driver not appearing in /dev/input

I'm running embedded Linux on a NXP LPC3141 (the board is designed by Embedded Artists) and I want to use a I2C sensor on it (an accelerometer + compass). I found a INPUT DRIVER here (I was told it's ...
0
votes
1answer
79 views

Adding device data structures and registration for Linux driver

I am adding a gyro/accel driver (Invensense MPU3050), available here to my kernel (LPC Linux). I use LTIB for building the image and rootfs. I manage in adding all files and the driver is available ...
0
votes
2answers
105 views

How to patch linux kernel to add gyroscope support

I'm trying to use MPU3000/3050 by Invensense with embedded linux (ARM-based LPC3141 board, Embedded Artists). I found this interesting patch on the Internet https://patchwork.kernel.org/patch/703991/ ...
0
votes
1answer
113 views

What's the difference between I2CDevice.CreateReadTransaction() and new I2CDevice.I2CReadTransaction()?

I'm looking into the .NET MF I2C API, and I'm getting a bit confused. There seem to be multiple ways to create an I2C transaction. I can either use the I2CDevice.CreateReadTransaction method, or ...
0
votes
0answers
76 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 ...
0
votes
1answer
486 views

How to access i2c device driver node

Situation 1: I have an i2c chip driver as part of linux kernel. I can verify the i2c chip driver is in the kernel from kernel boot messages (my chip driver is mma8450) dmesg: mma8450 0-001c: uevent ...
0
votes
1answer
77 views

Tegra based robotics platform

I am looking into the possibility of developing a Tegra based robotics platform running Android. To do this I need to be able to preform serial, I2C, and possibly PWM communications, does the Tegra ...
0
votes
0answers
179 views

Reading I2C light sensor on iPad

I am making a program for a jailbroken iPad. To make it, I need to read data from the light sensor. It is connected over I2C and I think it is accessible via IOKit. The sensor ID is ...
0
votes
1answer
430 views

Using open and i2c in C++

I've realized that open() and ioctl() does not work inside a cpp object. I am able to do the operation if it is called inside my main() function, but NOT when inside any of my classes. I have a object ...
0
votes
1answer
235 views

Linux equivalents for Arduino i2C libraries (Wire)?

Trying to port a Arduino program to Linux. I'm stuck because I can't seem to find equivalents to the i2C functions that the Arduino has in "Wire.h" Wire Header : http://arduino.cc/en/Reference/Wire ...
0
votes
0answers
211 views

i2c library for AVRDude/CrossPack, same as Codevision?

I am porting a ATMEGA32 project from Codevision in Windows to Eclipse on a Mac. I can program the microcontroller just fine, and some dummy tests with flashing leds and stuff is working well. But I am ...
0
votes
1answer
468 views

Linux Device driver testing

I want to test the compliance of Linux Ethernet and I2C drivers. Is there any open source tool or framework to test these drivers?? Thanks in Advance

1 2