<?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 I2C_LDD 10 bit addressing in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2C-LDD-10-bit-addressing/m-p/469267#M28352</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;The micro that I am using is an MK22FN256LVQ, there is a 24C16 EEPROM connected to I2C CH0.&lt;/P&gt;&lt;P&gt;A logic analyzer is monitoring the SCL and SDA lines. Attempting to address an EEPROM address&lt;/P&gt;&lt;P&gt;of 0x15B. Issuing the dummy write to load the 10 bit address into the EEPROM shows a byte of&lt;/P&gt;&lt;P&gt;0s before the 10 bit address code, 11110XX. I am using the most recent version of the Processor&lt;/P&gt;&lt;P&gt;Expert I2C component, the I2C_LDD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas why the 0s byte? This results in my access being NACked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Jun 2016 12:13:05 GMT</pubDate>
    <dc:creator>richardfox75</dc:creator>
    <dc:date>2016-06-01T12:13:05Z</dc:date>
    <item>
      <title>I2C_LDD 10 bit addressing</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2C-LDD-10-bit-addressing/m-p/469267#M28352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;The micro that I am using is an MK22FN256LVQ, there is a 24C16 EEPROM connected to I2C CH0.&lt;/P&gt;&lt;P&gt;A logic analyzer is monitoring the SCL and SDA lines. Attempting to address an EEPROM address&lt;/P&gt;&lt;P&gt;of 0x15B. Issuing the dummy write to load the 10 bit address into the EEPROM shows a byte of&lt;/P&gt;&lt;P&gt;0s before the 10 bit address code, 11110XX. I am using the most recent version of the Processor&lt;/P&gt;&lt;P&gt;Expert I2C component, the I2C_LDD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas why the 0s byte? This results in my access being NACked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2016 12:13:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2C-LDD-10-bit-addressing/m-p/469267#M28352</guid>
      <dc:creator>richardfox75</dc:creator>
      <dc:date>2016-06-01T12:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: I2C_LDD 10 bit addressing</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2C-LDD-10-bit-addressing/m-p/469268#M28353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checked the 24C16 datasheet, during the device select phase, there with below device code:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_0.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/59721i82F1B1377FE4458A/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_0.png" alt="pastedImage_0.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_3.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/59895i141A2D41436E369F/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_3.png" alt="pastedImage_3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;While the K22 I2C module 10-bit address mode with below description, the 0b11110 is used for first 5 bits of the first address byte.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/59799iDA512F08F994827C/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/59800i8E6FC17311D436F0/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I don't think it is suitable to use I2C 10-bit address mode when communication with 24C16 EEPROM.&lt;/P&gt;&lt;P&gt;Customer still need to using the 7-bit address, which simulate the 24C16 device select phase, such as:&lt;/P&gt;&lt;P&gt;AD[7:1] = 0b1010XXX&lt;/P&gt;&lt;P&gt;After that using one byte data as low 8-bit address (BYTE ADDR).&lt;BR /&gt;Wish it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Ma Hui&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 08:44:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2C-LDD-10-bit-addressing/m-p/469268#M28353</guid>
      <dc:creator>Hui_Ma</dc:creator>
      <dc:date>2016-06-02T08:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: I2C_LDD 10 bit addressing</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2C-LDD-10-bit-addressing/m-p/469269#M28354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes you are correct, the 24C16, cannot be used as a 10 bit address device.&lt;/P&gt;&lt;P&gt;It is a 7 bit device with 8 blocks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found this out shortly after my post. Sorry, for the waste of your time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dick Fox&lt;/P&gt;&lt;P&gt;Firmware  Engineer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NATIONAL CONTROLS CORPORATION BUSINESS UNIT&lt;/P&gt;&lt;P&gt;INSTRUMENTATION AND SPECIALTY CONTROLS DIVISION&lt;/P&gt;&lt;P&gt;1725 Western Dr | West Chicago, IL 60185 | &lt;A href="http://www.ametekncc.com" target="test_blank"&gt;http://www.ametekncc.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Phone: (630)621-3118 | email: Dick Fox@ametek.com&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 13:21:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2C-LDD-10-bit-addressing/m-p/469269#M28354</guid>
      <dc:creator>richardfox75</dc:creator>
      <dc:date>2016-06-02T13:21:49Z</dc:date>
    </item>
  </channel>
</rss>

