Jump to content
43oh

i2c not working with Energia for MSP430G2553 inside Code Composer Studio


Recommended Posts

I am using the latest version:   energia-0101E0017.  I just reloaded it from Energia's website this morning.  It is their December 2015 version.


I am using the latest CCS version 6.1.3.  I installed a fresh version of that a couple days ago and have applied all the updates I could find.


Using the very popular I2C_Scan tool, I get bad results.  I either get all addresses telling me there's a device there, or if I do a write(0); between begin and end transmission, I get no devices...


See brief code snip below:


void findAddress(int fromAddress, int toAddress)

{

  for (int a = fromAddress; a < toAddress; a++)

  {

    Wire.beginTransmission(a);

    Wire.write(0);

    int endStatus = Wire.endTransmission();

 

    if (endStatus == 0)

    {

      Serial.print("Found device at: 0x");

      Serial.println(a, HEX);

    }

  }

}

When using Arduino with the same I2C_Scan tool, I can quickly discover my i2c device.


So, can somebody let me know why this isn't working, and/or perhaps point me to a work-around?


I've read many of the postings about this and have done the following:


  1. Removed jumper from LED for P1_6
  2. Used resisters to give step-up or whatever you call it
  3. Tried it with and without the Write(0) between the begin and end transmission code above

Anyway, just a bit frustrated today.  I'm a spoiled Software Engineer, not used to the pain that is endured each day by firmware developers as they fight as hard against the development tools as they do against the code they write :-)


Thanks,


Curtis


 


 


 


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...