I2C is a two-wire serial bus. It is used to interface with low-speed peripherals in embedded systems and computer motherboards.
0
votes
1answer
36 views
Accessing multiple I2C devices
I have multiple I2C devices on my bus and want to access (read or write) them one by one. What is the correct way?
open() -> set slave address -> write() -> close() -> open() -> set next slave ...
1
vote
2answers
25 views
I2C Driver in Linux
I am aware of I2C in a very basic level which relies inside linux kernel, but no clue to implement a basic I2C driver.
Trying to moving for a start in I2C device driver.
could you please suggest any ...
0
votes
1answer
39 views
Cannot Wake up Atmel ATSHA204 Using I2C
I've recently been given the task of writing drivers for some of the I2C devices in our product. I was a complete beginner at this, but I've managed to use a mixture of i2cset and i2cget along with ...
0
votes
1answer
19 views
PIC16F877 + 24LC64 via i2c
My task is to copy first 255 bytes from external EEPROM (24LC64) to internal (PIC16F877) via i2c bus. I've read AN1488, all datasheets, MikroC gide (oh, yes, I'm using MikroC), but hopeless.. Meaning ...
0
votes
0answers
13 views
Msp430g2553 i2c communication library with itg3200 gyroscope
I've been creating an I2C library for communicating with ITG3200 gyroscope for MSP430g2553 experimental launchpad. I still have slight problems with sequential reading and the signed values but I'm ...
0
votes
3answers
43 views
write() returns -1 when writing to I2C_SLAVE device
I've read through the Linux kernel documents on i2c and written a code to try to replicate the command i2cset -y 0 0x60 0x05 0xff
The code that I've written is here:
#include <stdio.h>
...
0
votes
0answers
28 views
Where to start Android drivers with I2C
Thanks for taking a moment to read my question. I am a starving intern and I really want to get some work done!
I have a sensor device, OEM, that I will be adding to a dragonboard like this. ...
0
votes
1answer
19 views
I2cSlave reading issue on lpc1343
I'm trying to use the lpc1343 as a i2cslave to transmit some data. Writing to the board gives no problems and works exactly as I want it.
However, reading from the board gives problems. It seems I'm ...
0
votes
1answer
29 views
I2C concurrent access on Linux, mutex
I'm writing a multithread C program in embedded Linux that accesses from userspace a number of I2C devices (slaves). Also, I access the same I2C device from multiple threads. I'm using SMBUS functions ...
2
votes
1answer
81 views
Set Up I2C Address Without Device Attached
I've been trying to learn about I2C today, it's taken me some time to set up but I've now got a Raspberry Pi configured with i2c-tools installed and I can see /dev/i2c-0.
However when I run ...
0
votes
1answer
51 views
How to detect that an i2c slave doesn't respond to the master on PIC18f [closed]
I have an PIC18f i2c Master and some other devices as slaves.
I want to detect if a slave is not on the bus or if he doesn't responds.
Right now, the communication Master<->Slaves works well ...
0
votes
1answer
80 views
Multiple MLX90614 (temperature sensor) on Arduino Uno code
I have been assigned with a task to create a temperature based fan controlling over the PWM output. I am using Arduino Uno with AVRISPmkII programmer and ATmega328 controller. Now the task is to ...
1
vote
0answers
50 views
I2C GPIO Architecture in Linux [closed]
I am trying to understand how Bit Banging works in Linux; that is how 2 GPIO are used as SCL and SDA and fit into Linux I2C Framework.
I have following observations:
Say FuelGauge is used as an I2C ...
0
votes
1answer
50 views
what is the purpose of pullup and pulldown resister in i2c bus
For i2c communication either pullup resister or pull down resister is connected to the i2c bus line.
what is the purpose of these pullup and pulldown resister and how to decide which resister need to ...
0
votes
2answers
86 views
perl program run from crontab yields wrong values i2cget raspberry pi
I've read a number of other Q&A's that seem to be related, but haven't been able to track down the issue here.
I have the following perl script that I use on my Raspberry Pi. I'm hoping to log ...
0
votes
0answers
79 views
How to get pin addresses on a MCP23017 and program smbus in python
Recently I purchased a few MCP23017. I've been reading up on them and I've gotten a few lights to turn on and such. I am having a problem trying to understand how to figure out the register address ...
0
votes
0answers
57 views
Android: Stop all I2C traffic on a given bus from user space?
Short of rewriting my (userland) device driver as a kernel module, is there any user space mechanism that would guarantee all communication on a given I2C bus is halted? I need the ability to halt all ...
0
votes
0answers
61 views
Trying to convert I²C data into four separate int variables in Arduino
My basic setup is having two Arduinos talk to one another across I²C. I have one Arduino take four separate sensor readings and send them over the I²C bus. But I can't seem to figure out how to get ...
0
votes
0answers
73 views
Memory write in NIOS II - value put in wrong address
First of all, I should admit I have submitted this question on the altera forum (http://www.alteraforum.com/forum/showthread.php?t=40494). I am asking here too because I think it is likely to be quite ...
0
votes
0answers
98 views
Can't find source of seemingly random I2C errors on STM32F4 Discovery
I've been racking my brain and the Internet for 2 weeks trying to figure out why my I2C code doesn't work right on my STM32F4 discovery board. I'm trying to communicate with a 6DOF IMU from Sparkfun ...
1
vote
1answer
38 views
Raspberrypi Python bus.read_byte
Is there a Python function that will respond like the Wire.available function in arduino to get all the data on the wire rather than having to specify how many bytes to grab?
This is what I have now, ...
0
votes
0answers
14 views
what are the advantages BAR in PCie as compared to I2C which doesn't use BAR?
what are the advantages using BAR (base address register) in PCie as compared to I2C which doesn't use BAR?
-1
votes
1answer
74 views
Linking a 2 wire serial Temperature Sensor to a Spartan3 [closed]
I'm trying to connect a 2 wire serial temperature sensor to a Spartan-3 FPGA but i don't know where to the find the schematics for the connection. Can someone please help me out? :(
0
votes
0answers
76 views
Arduino I²C master reader from ITG3200 gyroscope
I'm using the Energia library which converts Arduino libraries into MSP430 libraries. I connected the gyro into Launchpad and built the circuit with the required pull-up resistors. Here is the example ...
0
votes
0answers
34 views
How would I use i2c (iic) with Twisted inplace of serial
I would like to know if there if there is an i2c implementation/protocol for twisted.
I have a twisted script working with serial (brokering connections out to multiple TCP clients), but would like ...
1
vote
1answer
118 views
Msp430 i²c module and libraries
I have a project that has a MSP430G2553 master device and a Triple-Axis Digital-Output Gyro ITG-3200 Breakout slave. ITG3200 uses i²c protocol to communicate so i've been checking out the i²c module ...
0
votes
0answers
146 views
STM32L-Discovery kit I2C communication fail
I'm trying to communicate with my LM75B temperature sensor via I2C and can't get any data from sensor. The problem appears when I try to send device address on SDA pin. I got stuck in while loop. The ...
2
votes
0answers
103 views
Importing C dll function to C#
this is my first stackoverflow post. I have been stucking in this issue for days. I try to import the usbi2cio.dll which is a C Dll to a C# based project. I went through most of the similar posts ...
0
votes
1answer
97 views
I2C Sampling Rate
I'm having trouble trying to sample I2C slave devices using a dsPIC33f microcontroller.
I am using the PICs internal timer1 timer to 'tick' over at a defined sampling rate and grab the necessary ...
1
vote
1answer
61 views
Wire.read return signed or unsigned value
I am writing for Arduino and I use the I²C protocol. When Wire.read() returns an int, what is this int? Is it signed or unsigned?
At the Arduino official site it says that it returns a byte. So I ...
0
votes
1answer
341 views
Accessing RTC(DS1307) through I2C in ATmega16
I have written a code to access RTC(DS1307) through I2C using ATmega16 and I am using compiler AVR Studio 4.
Code is given below:-
#include<avr/io.h>
#include<util/delay.h>
#define F_CPU ...
0
votes
2answers
48 views
Why isn't 4B5B used like I2C, SPI? [closed]
I was explaining I2C/SPI serial protocols to my friend when he mentioned there's a way to send data between two devices using one wire with the 4B5B protocol. If this is true, why isn't 4B5B used to, ...
0
votes
2answers
99 views
Sending 0x00 using I2C
I am using the Wire class to have two Arduino Unos communicate using I2C. It seems that the Wire class ends transmission on a value of 0. So if I send bytes 0x01, 0x02, 0x00, and 0x04, the master ...
0
votes
1answer
87 views
I2C Initialization and draining feature
I'm a beginner. I'm trying to understand about I2C Initialization of TMP102. It is a temperature sensor. It is connected via I2C. So, the initialization must be of I2C. But, my leader told we have to ...
2
votes
1answer
72 views
I2C and timer interrupt (timer1)
I'm trying to read from multiple I2C slave devices using a dsPIC33 microcontroller.
I was hoping someone could advise me on the correct method to user a timer interrupt (in this case timer1) and ...
1
vote
0answers
89 views
Program Wipe with I2C on 2 Due's
I have an interesting issue that could or could not be true for the Due only. I do not have the resources to test I2C on 2 Arduino ATMegas. Here is the issue:
I have two Due's: The master has an ...
0
votes
1answer
150 views
i2c of multiple registers/devices
I've just finished implementing a successful read from an ADXL345 accelerometer from a PIC microcontroller (dsPIC33) using i2c. All I've achieved so far is reading the device ID correctly, which is a ...
0
votes
0answers
144 views
How can I read and write data to a Character Device File in Linux with PHP?
I'm trying to read and write to modules on the I2C bus on a Raspberry Pi using PHP. I'm using fopen() and fskeek().
Below is the code I've been trying to use to read data coming in from the physical ...
1
vote
2answers
237 views
Configure Linux I2C Speed
I am using I2C on the Snowball board, running at 400KHz by default and would like to reduce this to 100KHz.
I use the api defined in and configure as follows
m_fd = open(m_filename.c_str(), ...
0
votes
2answers
145 views
implicit deceleration and unknown type errors [closed]
I am trying to convert some C code that is used for an Arduino microcontroller to be used with a Raspberry Pi microcontroller. They both use different libraries and it may be the problem I am having ...
0
votes
1answer
39 views
Upgrade a specific Linux Kernel Subsystem?
Is it possible to upgrade only a specific sub-system, say I2C, of the Linux Kernel.
For example:
Is it possible to include "Support for multiplexed I2C bus topologies (introduced in Kernel 2.6.36)" ...
0
votes
0answers
90 views
Error in EPROM Sequential read
I'm working with EEPROM (through I2C) driver.
I can write and read a single byte from EEPROM.
However, if i try Sequential Read (Multibyte Read),
I face problem in reading:
I can read values from ...
3
votes
1answer
939 views
Setting up i2c on Raspberry Pi for C?
I'm setting up i2c for an Application written in C, but I've not been able to find any how-to's for it. I'm running a model-b Raspberry Pi on Debian 6 with LXDE. Can anybody show me how to set up i2c ...
0
votes
1answer
375 views
linux i2c driver for pandaboard
I am trying to write linux i2c drivers for omap4460 panda board. Interfacing Hmc5883l sennsor to omap through i2c interface. Do I need to write only the client diver or both client and bus driver. I ...
1
vote
3answers
596 views
Raspberry PI, How to configure other GPIO to work as I2C
I am using the Raspberry PI for one of my projects.
In this project I need two different I2C interfaces to run simultaneously.
I know how to set the GPIO-0 and GPIO-1 to work as I2C (There is ...
0
votes
1answer
109 views
Issue with using AVR TWI interface
I'm trying to access HMC5883L module using atmega2560. I've written a class (I2C) containing basic methods essential for I2C communication.
First, I'll explain the problem. This is what I've done.
...
1
vote
0answers
89 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 ...
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
433 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 ...




