<?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: GT16A I2C interface with MAX1069 in 8-bit Microcontrollers</title>
    <link>https://community.nxp.com/t5/8-bit-Microcontrollers/GT16A-I2C-interface-with-MAX1069/m-p/270033#M20150</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hobson,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a AN to show you how to use IIC in hcs08, hope it is useful.&lt;/P&gt;&lt;P&gt;&lt;A href="http://cache.freescale.com/files/microcontrollers/doc/app_note/AN3291.pdf?fsrch=1&amp;amp;sr=8"&gt;http://cache.freescale.com/files/microcontrollers/doc/app_note/AN3291.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And just take a look at your code, I think there are three problems.&lt;/P&gt;&lt;P&gt;1. You didn't check ACK from slave.&lt;/P&gt;&lt;P&gt;2. There are some problems after transimiting slave address&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;// Send address. LSB decides on R or W&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;while(IICS_TCF == 0);&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;IICD = 0x61;&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;// Address -&amp;gt; 0110000, LSB for receive -&amp;gt; 1 = 0x61&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;// Address -&amp;gt; 0110000, LSB for receive -&amp;gt; 0 = 0x60&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;for (count=0;count&amp;lt;MAX_delay;count++) asm("nop");&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;while(IICS_TCF == 0);&amp;nbsp;&amp;nbsp; //&amp;nbsp; waiting the slave address sending out&lt;/LI&gt;&lt;LI&gt; while(IICS_RXAK == 1);&amp;nbsp; // wait ack &lt;/LI&gt;&lt;LI&gt;&lt;/LI&gt;&lt;LI&gt;IICC_TX = 0;&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;(void)IICD; // dummy read to clear TCF flag; this step is important,becuase TCF was set after the slave address was sent.&lt;/LI&gt;&lt;LI&gt;while(IICS_TCF == 0);&amp;nbsp; // then wait for the first byte coming&lt;/LI&gt;&lt;LI&gt;dataADC[0] = IICD;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. result = dataADC[0] &amp;lt;&amp;lt; 8;&amp;nbsp;&amp;nbsp; I don't think that is a good practice to shift like that. dataADC[0] is a 8-bit data, your practice is depending on compiler's implicit cast. the good practice is to do cast by ourselves. like that:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; result = (int)dataADC[0] &amp;lt;&amp;lt; 8;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope my answers is helpful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 May 2013 07:48:44 GMT</pubDate>
    <dc:creator>weapon</dc:creator>
    <dc:date>2013-05-24T07:48:44Z</dc:date>
    <item>
      <title>GT16A I2C interface with MAX1069</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/GT16A-I2C-interface-with-MAX1069/m-p/270031#M20148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to use the I2C interface for the first time and am unsure of my code. I am using the GT16A as a master and am attempting to read data from the MAX1069 14 bit ADC IC. Below is my I2C initialising function and the read function. I am not getting the results I expected and I am unsure why. Any help will be greatly appreciated! edit-&amp;gt;Turns out I forgot the pull-up resistors, but I still can't get the ADC to function correctly..&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp; int receiveIIC (void) // Thermistor ADC - MAX1069&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; byte dataADC[2] ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; int result;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; unsigned char MAX_delay = 100;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; unsigned int count;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IICC_IICEN = 1; // IIC enabled&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IICC_TX = 1; // Set Transmit&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IICC_MST = 1; // Set START&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Send address. LSB decides on R or W&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; while(IICS_TCF == 0);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IICD = 0x61;&amp;nbsp; // Address -&amp;gt; 0110000, LSB for receive -&amp;gt; 1 = 0x61&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Address -&amp;gt; 0110000, LSB for receive -&amp;gt; 0 = 0x60&amp;nbsp;&amp;nbsp;&amp;nbsp; for (count=0;count&amp;lt;MAX_delay;count++) asm("nop");&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; while(IICS_TCF == 0);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IICC_TX = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dataADC[0] = IICD; // Receive first byte&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (count=0; count&amp;lt;MAX_delay;count++) asm("nop");&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; while(IICS_TCF == 0);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IICC_TXAK = 1;&amp;nbsp; // Send No Acknowledge&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dataADC[1] = IICD; // receive second byte&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (count=0; count&amp;lt;MAX_delay;count++) asm("nop");&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; while(IICS_TCF == 0);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IICC = 0x80;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; result = dataADC[0] &amp;lt;&amp;lt; 8;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; result += dataADC[1];&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return result;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Apr 2013 16:45:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/GT16A-I2C-interface-with-MAX1069/m-p/270031#M20148</guid>
      <dc:creator>woohoo</dc:creator>
      <dc:date>2013-04-16T16:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: GT16A I2C interface with MAX1069</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/GT16A-I2C-interface-with-MAX1069/m-p/270032#M20149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I started to attempt to write the I2C send routine that will communicate with a 14 bit, AD5647R DAC. I have encountered a problem where the high bit for the data is missing the front 2 zeroes after I split the incoming value. I have done this as shown below. Any ideas? Also still haven't managed to get the read function to work... edit-&amp;gt;It is working with the code below now&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="c++" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13666428564584392" jivemacro_uid="_13666428564584392" modifiedtitle="true"&gt;
&lt;P&gt;void sendIIC (int output)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;&amp;nbsp; byte dataDAC[2];&lt;/P&gt;
&lt;P&gt;&amp;nbsp; unsigned char MAX_delay = 100;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; unsigned int count;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; dataDAC[0] = (output&amp;gt;&amp;gt;8) &amp;amp; 0x00FF; // High&lt;/P&gt;
&lt;P&gt;&amp;nbsp; dataDAC[1] = (output) &amp;amp; 0x00FF; // Low&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IICC_IICEN = 1; // IIC enabled&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IICC_TX = 1; // Set Transmit&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IICC_MST = 1; // Set START&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; // Send address. LSB decides on R or W&lt;/P&gt;
&lt;P&gt;&amp;nbsp; while(IICS_TCF == 0);&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IICD = 0x1E; // Address -&amp;gt; 0001111, LSB for receive -&amp;gt; 0&lt;/P&gt;
&lt;P&gt;&amp;nbsp; for (count=0; count&amp;lt;MAX_delay;count++) asm("nop");&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; // Send Command byte&lt;/P&gt;
&lt;P&gt;&amp;nbsp; while(IICS_TCF == 0);&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IICD = 0x1F; // Command: R-&amp;gt;0 ,S-&amp;gt;0 ,Command-&amp;gt;011 (Write to and update DAC n) ,DAC Address-&amp;gt;111 (Both DACs)&lt;/P&gt;
&lt;P&gt;&amp;nbsp; for (count=0; count&amp;lt;MAX_delay;count++) asm("nop");&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; // Send high data byte&lt;/P&gt;
&lt;P&gt;&amp;nbsp; while(IICS_TCF == 0);&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IICD = dataDAC[0]; // Send the high bits&lt;/P&gt;
&lt;P&gt;&amp;nbsp; for (count=0; count&amp;lt;MAX_delay;count++) asm("nop");&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; // Send low data byte&lt;/P&gt;
&lt;P&gt;&amp;nbsp; while(IICS_TCF == 0);&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IICD = dataDAC[1]; // Send the low bits&lt;/P&gt;
&lt;P&gt;&amp;nbsp; for (count=0; count&amp;lt;MAX_delay;count++) asm("nop");&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IICC = 0x80;&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;SPAN style="line-height: 20px; color: #575757; font-size: 10pt; white-space: normal; font-family: arial, helvetica, sans-serif;"&gt; &lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 10:19:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/GT16A-I2C-interface-with-MAX1069/m-p/270032#M20149</guid>
      <dc:creator>woohoo</dc:creator>
      <dc:date>2013-04-17T10:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: GT16A I2C interface with MAX1069</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/GT16A-I2C-interface-with-MAX1069/m-p/270033#M20150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hobson,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a AN to show you how to use IIC in hcs08, hope it is useful.&lt;/P&gt;&lt;P&gt;&lt;A href="http://cache.freescale.com/files/microcontrollers/doc/app_note/AN3291.pdf?fsrch=1&amp;amp;sr=8"&gt;http://cache.freescale.com/files/microcontrollers/doc/app_note/AN3291.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And just take a look at your code, I think there are three problems.&lt;/P&gt;&lt;P&gt;1. You didn't check ACK from slave.&lt;/P&gt;&lt;P&gt;2. There are some problems after transimiting slave address&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;// Send address. LSB decides on R or W&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;while(IICS_TCF == 0);&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;IICD = 0x61;&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;// Address -&amp;gt; 0110000, LSB for receive -&amp;gt; 1 = 0x61&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;// Address -&amp;gt; 0110000, LSB for receive -&amp;gt; 0 = 0x60&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;for (count=0;count&amp;lt;MAX_delay;count++) asm("nop");&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;while(IICS_TCF == 0);&amp;nbsp;&amp;nbsp; //&amp;nbsp; waiting the slave address sending out&lt;/LI&gt;&lt;LI&gt; while(IICS_RXAK == 1);&amp;nbsp; // wait ack &lt;/LI&gt;&lt;LI&gt;&lt;/LI&gt;&lt;LI&gt;IICC_TX = 0;&amp;nbsp;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;(void)IICD; // dummy read to clear TCF flag; this step is important,becuase TCF was set after the slave address was sent.&lt;/LI&gt;&lt;LI&gt;while(IICS_TCF == 0);&amp;nbsp; // then wait for the first byte coming&lt;/LI&gt;&lt;LI&gt;dataADC[0] = IICD;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. result = dataADC[0] &amp;lt;&amp;lt; 8;&amp;nbsp;&amp;nbsp; I don't think that is a good practice to shift like that. dataADC[0] is a 8-bit data, your practice is depending on compiler's implicit cast. the good practice is to do cast by ourselves. like that:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; result = (int)dataADC[0] &amp;lt;&amp;lt; 8;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope my answers is helpful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 May 2013 07:48:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/GT16A-I2C-interface-with-MAX1069/m-p/270033#M20150</guid>
      <dc:creator>weapon</dc:creator>
      <dc:date>2013-05-24T07:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: GT16A I2C interface with MAX1069</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/GT16A-I2C-interface-with-MAX1069/m-p/270034#M20151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hobson,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The send function's problem is just like receving function. you didn't wait slave's ACK. and at the last, you'd better&amp;nbsp; polling IICS_TCF to confirm dataDAC[1]'s transfer is completed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IICD = dataDAC[&lt;SPAN class="number"&gt;1&lt;/SPAN&gt;]; &lt;SPAN class="comment"&gt;// Send the low bits &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; &lt;SPAN class="keyword"&gt;for&lt;/SPAN&gt; (count=&lt;SPAN class="number"&gt;0&lt;/SPAN&gt;; count&amp;lt;MAX_delay;count++) asm(&lt;SPAN class="string"&gt;"nop"&lt;/SPAN&gt;);&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;while(IICS_TCF == 0);&lt;/P&gt;&lt;P&gt; IICC = &lt;SPAN class="number"&gt;0x80&lt;/SPAN&gt;;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 May 2013 07:59:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/GT16A-I2C-interface-with-MAX1069/m-p/270034#M20151</guid>
      <dc:creator>weapon</dc:creator>
      <dc:date>2013-05-24T07:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: GT16A I2C interface with MAX1069</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/GT16A-I2C-interface-with-MAX1069/m-p/270035#M20152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Oliver!&lt;/P&gt;&lt;P&gt;How is the project going?&lt;/P&gt;&lt;P&gt;We'd like to know if this suggestion was helpful throughout your problem, would you share with us?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Monica.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2013 23:57:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/GT16A-I2C-interface-with-MAX1069/m-p/270035#M20152</guid>
      <dc:creator>Monica</dc:creator>
      <dc:date>2013-06-12T23:57:06Z</dc:date>
    </item>
  </channel>
</rss>

