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
  • 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
  • Former Member
    0 Former Member over 10 years ago

    I was having the same issue with a tnc-pi board using i2c, after three days finally found a solution.  After adding  "dtparam=i2c1=on" to the  /boot/config.txt file and rebooting all was back.  Later found my usb to serial was not found.  Removed the dtparam line, and added "device_tree=" instead.  There is a discussion on http://www.raspberrypi.org/forums/viewtopic.php?p=675658#p675658 that I can't get to at the moment that covers what changed. 

     

    For now all my hardware is back running.

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

    There is a discussion on http://www.raspberrypi.org/forums/viewtopic.php?p=675658#p675658 that I can't get to at the moment that covers what changed.


    With today's problems I found Google archive function very useful. Just google this url, click the little down-facing green arrow next to the url in the first result and select Archive.

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

    Cool.  That gives me a couple ideas too.

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

    Thank god this solution is on this forum and not on the raspberry pi one.....

    Thanks: "device_tree= " in /boot/config.txt works for me.

    I haven't a clue why giving it an empty device tree would make things work all of a sudden, but it does.

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

    Thanks Roger, it worked for me as well image!

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

    Just found out a few things that i believe will be helpful and that appear to be the best way to solve these problems:

     

    As i have pointed out earlier, the problems appear to be due to changes in the kernel after updating the Raspbian software by issuing these commands:

     

    sudo apt-get update

    sudo apt-get dist-upgrade

     

    and rebooting. This procedure is highly recommended to keep your raspi updated with the latest updates that have been thoroughly tested (and we need to avoid using the "sudo rpi-update" command because that is not meant to be used by normal users but rather by developers and testers). But after doing this the problems with the drivers start because the new kernel comes configured to use the new device tree by default (rather unfortunate, in my opinion). Ok then. What to do? Well i found out that there is also a new update available for raspi-config, and that has a configuration setting which allows you to set up your raspi correctly depending on which device solution you prefer to use. So the first thing you need to do after upgrading the raspi software is to upgrade your raspi-config tool. This is done from the raspi-config tool, and you start the tool with this command:

     

    sudo raspi-config

     

    When the tool starts, you need to navigate down to the "Advanced Options" choice using the arrow-down key, then press the "Tab" key to highlight "Select", then hit "Enter". In the Advanced Options meny, navigate down to the "Update" choice using the arrow-down key, then hit the "Tab" key to highlight "Select", then hit the "Enter" key. This starts the process of updating the tool. When it is finished you will be returned to the raspi-config tool. Back in the tool, navigate down to the "Advanced Options" with the down-arrow, hit the "Tab" key to highlight "Select", hit "Enter", navigate down to "Device Tree" with the down-arrow key, hit "Tab" to highlight "Select", hit "Enter", hit the "Tab" key until "No" is highlighted (in response to the question "Would you like the kernel to use Device Tree?"), then hit "Enter". Hit "Enter" again when it indicates that "Device Tree is disabled" and "Ok" is highlighted. "Tab" to "Finish", then hit "Enter". Now reboot again:

     

    sudo reboot

     

    When the raspi is up again and you log in everything should work again.

    • 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 rew

    I had the same story as everyone else. Everything was working, ran rpi-update, did the updates, then nothing wasn't.  Spent three days doing searches, that eventually led me to the raspberry pi forum.  The empty list from the post cause's it to revert to the old way of doing things.  No more nodes, but a device tree.  I don't know enough about the pi and linux to explain it, just enough to know it solved my problems.

    • 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