element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum i2c stop working
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Suggested Answer
  • Replies 18 replies
  • Answers 2 answers
  • Subscribers 668 subscribers
  • Views 6021 views
  • Users 0 members are here
  • raspberry
  • i2c
  • raspberry_pi
Related

i2c stop working

Former Member
Former Member over 10 years ago

Hello!

 

I am trying to solve my problem with i2c on a Raspberry Pi model B.

I have build myself a little weather station with some sensors connected via i2c.

It was working flawlessly for 3 months but now it suddenly stopped.

 

I made sure the /etc/modprobe.d/raspi-blacklist.conf and /etc/modules configuration files are still as they were.

The i2c_dev and i2c_bcm2708 modules are loaded after reboot but i2cdetect gives me:

 

Error: Could not open file `/dev/i2c-1' or `/dev/i2c/1': No such file or directory

 

I tried apt-get update, apt-get upgrade, rpi-update, ... but no luck so far.

 

Can anyone help me please?

Thanks for any ideas.

  • Sign in to reply
  • Cancel
Parents
  • urkraft
    0 urkraft over 10 years ago

    Your problem is due to you running the following command:

     

    sudo rpi-update

     

    This command is only meant to be used by those involved in testing the latest experimental versions of the the Raspberry Pi kernel. Unfortunately the latest test version has introduced some very radical changes that will cause these problems. The solution to your problem is to roll back to the latest stable operational version. This can be done with the following command:

     

    sudo apt-get --reinstall install libraspberrypi-bin libraspberrypi-dev libraspberrypi-doc libraspberrypi0 raspberrypi-bootloader

     

    The last stable version is 3.12.35+ #730

     

    You can find out which version you are using with this command:

     

    uname -a

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to urkraft

    Hi. Thanks for your help, finally I am getting somewhere.

     

    Strange thing is that i2c stoped working before I did "sudo rpi-update".

     

    After

    sudo apt-get --reinstall install libraspberrypi-bin libraspberrypi-dev libraspberrypi-doc libraspberrypi0 raspberrypi-bootloader

    the uname -r was still giving me 3.18.5+. So I used rpi-update to manually roll back to 3.12.35+.

     

    After doing this i2c started working again but Pi developed yet an another problem.

     

    I have got three sensors (BMP085, MPU6050 and SHT10) on one board connected to the i2c GPIO pins.

    The only way i was able to read data from all of them was like this:

     

    1) read bmp085

    2) read mpu6050

    3) sudo modprobe -r i2c_bcm2708

    4) read sht10

    5) sudo modprobe i2c_bcm2708

     

    First four steps works great but when I do the last one Pi just freeze instantly. No black screen, no nothing, just freeze. This is very strange because I load i2c_bcm2708 when booting withnout a problem.

     

    Any ideas what can be wrong?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • Former Member
    0 Former Member over 10 years ago in reply to urkraft

    Hi. Thanks for your help, finally I am getting somewhere.

     

    Strange thing is that i2c stoped working before I did "sudo rpi-update".

     

    After

    sudo apt-get --reinstall install libraspberrypi-bin libraspberrypi-dev libraspberrypi-doc libraspberrypi0 raspberrypi-bootloader

    the uname -r was still giving me 3.18.5+. So I used rpi-update to manually roll back to 3.12.35+.

     

    After doing this i2c started working again but Pi developed yet an another problem.

     

    I have got three sensors (BMP085, MPU6050 and SHT10) on one board connected to the i2c GPIO pins.

    The only way i was able to read data from all of them was like this:

     

    1) read bmp085

    2) read mpu6050

    3) sudo modprobe -r i2c_bcm2708

    4) read sht10

    5) sudo modprobe i2c_bcm2708

     

    First four steps works great but when I do the last one Pi just freeze instantly. No black screen, no nothing, just freeze. This is very strange because I load i2c_bcm2708 when booting withnout a problem.

     

    Any ideas what can be wrong?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
  • urkraft
    0 urkraft over 10 years ago in reply to Former Member

    I believe that something terribly wrong has happened with the central software repository for the raspberry pi in connection with the release of the Raspberry Pi 2 B today. I know that they have been experimenting with changes to the kernel that drastically effects how the devices work, and i see that the production version that is downloaded with apt-get dist-upgrade appears to be using the new device handling methods - which are not compatable with the old.

     

    I do not believe that this was intended at this point in time, and all raspberry pi related sites appear to be overloaded - probably both due to the release of the 2 B version as well as this major mistake.

     

    Rest assured that your problems are due to these changes and not to any faulty hardware - of that i am now 100% sure. I believe that the best course of action it to wait a few days and do a sudo apt-get update followed by a sudo apt-get dist-upgrade followed by a sudo reboot. The problem will eventually be fixed in a way that does not require adhoc fixes.

     

    Since i used about a half hour just to log in and functionality to reply to your post i do not plan on bothering with trying to access any Raspberry Pi related sites for a couple of days. By then i beieve that things will be under control again. Be patient image

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to urkraft

    that's a good point about today's problems on raspberry pi related sites. Let's see what the future brings to us...

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube