<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Problem i2c Red in LPCXpresso IDE</title>
    <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593051#M30271</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by stalisman on Wed Mar 21 11:30:14 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Zero&lt;/STRONG&gt;&lt;BR /&gt;Are you kidding?&lt;BR /&gt;&lt;BR /&gt;The text of i2ctest.c you have posted is describing #3:&lt;BR /&gt;&lt;BR /&gt;And a few lines below this is shown in:&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt; 
 /* Write SLA(W), address, SLA(R), and read one byte back. */
&amp;nbsp; I2CWriteLength = 2;
&amp;nbsp; I2CReadLength = 4;
&amp;nbsp; I2CMasterBuffer[0] = PCF8594_ADDR;
&amp;nbsp; I2CMasterBuffer[1] = 0x00;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* address */
&amp;nbsp; I2CMasterBuffer[2] = PCF8594_ADDR | RD_BIT;
&amp;nbsp; I2CEngine();
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You have to admit , in all fairness, that&amp;nbsp; the standard of english and&amp;nbsp; hence the logical meaning of the comments are rather poor.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;One of the greatest avoidable hardships is that of poor writing by&amp;nbsp; technical authors and other hired lackies of the of the chip producers&amp;nbsp; unwilling to pay for the production of decent documentation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It is as hard for an english speaking person to understand the poor&amp;nbsp; documentation written as it is for those whose first language is not&amp;nbsp; english.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think a sufficient answer to 'are you kidding' would have been 'prey,&amp;nbsp; in what world is this all obvious? .. for in mine the truth is wrapped&amp;nbsp; in gobldegook'.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Not exactly very informative but it does make one feel less stupid when insulted.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 22:53:21 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T22:53:21Z</dc:date>
    <item>
      <title>Problem i2c Red</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593045#M30265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by bruno on Tue Mar 20 13:52:53 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;[LEFT][SIZE=2][COLOR=#3f7f5f][SIZE=2][COLOR=#3f7f5f][SIZE=2][COLOR=#3f7f5f][SIZE=2][COLOR=#3f7f5f](1) If it's a I2C write only, the number of bytes to be written is I2CWriteLength, I2CReadLength is zero, the content will be filled in the I2CMasterBuffer. [/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[/COLOR][/SIZE](2) If it's a I2C read only, the number of bytes to be read is I2CReadLength, I2CWriteLength is 0, the read value will be filled in the I2CMasterBuffer. [/LEFT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[LEFT]//Write[/LEFT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[LEFT][SIZE=2][COLOR=#3f7f5f][SIZE=2][COLOR=#3f7f5f]/* I2CWriteLength = 5 ;[/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][COLOR=#3f7f5f]I2CReadLength = 0;[/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][COLOR=#3f7f5f]I2CMasterBuffer[0] = PCF8594_ADDR;[/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][COLOR=#3f7f5f]I2CMasterBuffer[1] = 0x03;[/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][COLOR=#3f7f5f]I2CMasterBuffer[2] = 0x00;[/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][COLOR=#3f7f5f]I2CMasterBuffer[3] = 0x00;[/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][COLOR=#3f7f5f]I2CMasterBuffer[4] = 0x01;[/COLOR][/SIZE][/LEFT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][COLOR=#3f7f5f]I2CEngine(); */[/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][COLOR=#3f7f5f]// Read[/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[LEFT][SIZE=2][COLOR=#3f7f5f][SIZE=2][SIZE=2]I2CWriteLength = 0;[/SIZE][/SIZE][/COLOR][SIZE=2]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][COLOR=#3f7f5f]I2CReadLength = 5;[/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][COLOR=#3f7f5f]I2CMasterBuffer[0] = PCF8594_ADDR | RD_BIT;[/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][COLOR=#3f7f5f]I2CMasterBuffer[1] = 0x03;[/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][COLOR=#3f7f5f]I2CMasterBuffer[2];[/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][COLOR=#3f7f5f]I2CMasterBuffer[3];[/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][COLOR=#3f7f5f]I2CMasterBuffer[4];[/COLOR][/SIZE][/LEFT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][COLOR=#3f7f5f]I2CEngine();[/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[/SIZE][/SIZE][/COLOR][/SIZE][/COLOR][/SIZE][/COLOR][/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not able to read the data correctly. Where is my logic wrong?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:53:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593045#M30265</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem i2c Red</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593046#M30266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Ex-Zero on Tue Mar 20 14:56:03 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Where is my logic wrong? &lt;BR /&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;SPAN&gt;Are you kidding?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The text of i2ctest.c you have posted is describing #3:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;(3) If it's a I2C Write/Read with repeated start, specify the I2CWriteLength, fill the content of bytes to be written in I2CMasterBuffer, specify the I2CReadLength, after the repeated start and the device address with RD bit set, the content of the reading will be filled in I2CMasterBuffer index at I2CMasterBuffer[I2CWriteLength+2]. &lt;BR /&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;SPAN&gt;And a few lines below this is shown in:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt; 
 /* Write SLA(W), address, SLA(R), and read one byte back. */
&amp;nbsp; I2CWriteLength = 2;
&amp;nbsp; I2CReadLength = 4;
&amp;nbsp; I2CMasterBuffer[0] = PCF8594_ADDR;
&amp;nbsp; I2CMasterBuffer[1] = 0x00;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* address */
&amp;nbsp; I2CMasterBuffer[2] = PCF8594_ADDR | RD_BIT;
&amp;nbsp; I2CEngine();
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:53:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593046#M30266</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem i2c Red</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593047#M30267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by bruno on Wed Mar 21 04:31:26 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;But the data just read is correct? Why can not I read the sign I just wrote!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:53:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593047#M30267</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem i2c Red</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593048#M30268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Ex-Zero on Wed Mar 21 04:51:22 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: bruno&lt;/STRONG&gt;&lt;BR /&gt;But the data just read is correct? Why can not I read the sign I just wrote!&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Because Datasheet of PCF8594 is telling you what to do:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Fig 7. Master reads PCF8594C-2 slave [COLOR=Red]after setting word address[/COLOR] (write word address; read data)&lt;BR /&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:53:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593048#M30268</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem i2c Red</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593049#M30269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by bruno on Wed Mar 21 07:35:11 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks Zero.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; But actually discovered the problem the bit address is shifted by 1.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If I put the address 0x00 to read, he read 0x01. and so on&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:53:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593049#M30269</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem i2c Red</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593050#M30270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by stalisman on Wed Mar 21 11:28:09 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Zero&lt;/STRONG&gt;&lt;BR /&gt;Because Datasheet of PCF8594 is telling you what to do:&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You have to admit , in all fairness, that&amp;nbsp; the standard of english and hence the logical meaning of the comments are rather poor.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;One of the greatest avoidable hardships is that of poor writing by technical authors and other hired lackies of the of the chip producers unwilling to pay for the production of decent documentation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It is as hard for an english speaking person to understand the poor documentation written as it is for those whose first language is not english.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think a sufficient answer to 'are you kidding' would have been 'prey, in what world is this all obvious? .. for in mine the truth is wrapped in gobldegook'.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Not exactly very informative but it does make one feel less stupid when insulted.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:53:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593050#M30270</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem i2c Red</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593051#M30271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by stalisman on Wed Mar 21 11:30:14 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Zero&lt;/STRONG&gt;&lt;BR /&gt;Are you kidding?&lt;BR /&gt;&lt;BR /&gt;The text of i2ctest.c you have posted is describing #3:&lt;BR /&gt;&lt;BR /&gt;And a few lines below this is shown in:&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt; 
 /* Write SLA(W), address, SLA(R), and read one byte back. */
&amp;nbsp; I2CWriteLength = 2;
&amp;nbsp; I2CReadLength = 4;
&amp;nbsp; I2CMasterBuffer[0] = PCF8594_ADDR;
&amp;nbsp; I2CMasterBuffer[1] = 0x00;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* address */
&amp;nbsp; I2CMasterBuffer[2] = PCF8594_ADDR | RD_BIT;
&amp;nbsp; I2CEngine();
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You have to admit , in all fairness, that&amp;nbsp; the standard of english and&amp;nbsp; hence the logical meaning of the comments are rather poor.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;One of the greatest avoidable hardships is that of poor writing by&amp;nbsp; technical authors and other hired lackies of the of the chip producers&amp;nbsp; unwilling to pay for the production of decent documentation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It is as hard for an english speaking person to understand the poor&amp;nbsp; documentation written as it is for those whose first language is not&amp;nbsp; english.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think a sufficient answer to 'are you kidding' would have been 'prey,&amp;nbsp; in what world is this all obvious? .. for in mine the truth is wrapped&amp;nbsp; in gobldegook'.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Not exactly very informative but it does make one feel less stupid when insulted.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:53:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593051#M30271</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem i2c Red</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593052#M30272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Rob65 on Wed Mar 21 11:57:06 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: stalisman&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;One of the greatest avoidable hardships is that of poor writing by&amp;nbsp; technical authors and other hired lackies of the of the chip producers&amp;nbsp; unwilling to pay for the production of decent documentation.&lt;BR /&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks, I use to be one of those [I]lackies[/I] for about 10 years :eek:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;We absolutely got no time to create any examples.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;It is as hard for an english speaking person to understand the poor&amp;nbsp; documentation written as it is for those whose first language is not&amp;nbsp; english.&lt;BR /&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry, I must misunderstand what "documentation" means.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;All I can find are some comments that show what the could could do ...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I had more than a bit of problems with the I2C driver. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Reason enough to create a version that is a bit more robust - unfortunately not taken over in the examples (yet). I've posted links to the driver in other posts - including short descriptions on how to use it - I'm not going to reproduce that right now since there is a big chance that I'm failing to mention something.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Rob&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:53:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem-i2c-Red/m-p/593052#M30272</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:53:22Z</dc:date>
    </item>
  </channel>
</rss>

