<?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>Kinetis Software Development KitのトピックRe: Strange behaviour in i2c driver (KSDK 1.3.0)</title>
    <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537510#M5553</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;of course!&lt;/P&gt;&lt;P&gt;I have tried to increment and it works perfectly&lt;/P&gt;&lt;P&gt;And I tried to pass pointer to the last element of the buffer and it also works correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So this is a bug in the source code, or is a bug in the docs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is strange that the decrement is replicated in two functions.&lt;/P&gt;&lt;P&gt;But it is also strange that &lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;no one noticed&lt;/SPAN&gt; the problem &lt;SPAN&gt;until now.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;And finally, if it is not a bug, it is strange to pass pointer to the last element of an array, and that this behaviour isn't undocumented.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Jun 2016 06:55:21 GMT</pubDate>
    <dc:creator>mastupristi</dc:creator>
    <dc:date>2016-06-17T06:55:21Z</dc:date>
    <item>
      <title>Strange behaviour in i2c driver (KSDK 1.3.0)</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537508#M5551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I use I2C_DRV_MasterReceiveDataPolling() that calls I2C_HAL_MasterReceiveDataPolling()&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I find the docs:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="153727_153727.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/121811iBC53115C3A23FFA7/image-size/large?v=v2&amp;amp;px=999" role="button" title="153727_153727.png" alt="153727_153727.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="drv.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/59889i9198978406284169/image-size/large?v=v2&amp;amp;px=999" role="button" title="drv.png" alt="drv.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="153731_153731.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/121812i2C603AD3BD3FA743/image-size/large?v=v2&amp;amp;px=999" role="button" title="153731_153731.png" alt="153731_153731.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="hal.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/59910i35823D3E04DF41CB/image-size/large?v=v2&amp;amp;px=999" role="button" title="hal.png" alt="hal.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;in particular the third and fourth arguments.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I call&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;uint16_t addr;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;uint8_t cmdBuff[2];&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;addr=0xf1ca;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;cmdBuff[0] = (uint8_t)((addr&amp;gt;&amp;gt;8)&amp;amp;0xff);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;cmdBuff[1] = (uint8_t)((addr&amp;gt;&amp;gt;0)&amp;amp;0xff);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;I2C_DRV_MasterReceiveDataPolling(i2cEE_IDX, I2C_EEPROM_ADDRESS, cmdBuff, 2, pdata8, len);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using a protocol analizer I can see that the first byte send by i2c (after the slave address), is correct, 0xf1. The second byte is not 0xca!&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Debugging I follow the flow until I2C_HAL_MasterReceiveDataPolling() (lines from 440 in file fsl_i2c_hal.c):&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; /* Send CMD buffer */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (cmdBuff != NULL)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; while (cmdSize--)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (!I2C_HAL_WriteByteBlocking(base, *cmdBuff--))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&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; /* Send STOP if no ACK received */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&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; I2C_HAL_SendStop(base);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&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 kStatus_I2C_ReceivedNak;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The point is the line 445. There is *cmdBuff--, so the first byte tranferred is correct, but the second is out of the buffer (ideally at index -1).&lt;/P&gt;&lt;P&gt;I wonder if it is a bug, because the same decrement is also at line 554 (I2C_HAL_MasterSendDataPolling()).&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it is not a bug, I have to pass the pointer to the last element of a buffer (strange and counterintuitive), and the documentation should specify this behavoiur.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately the example shipped with KSDK1.3.0 doesn't help me&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 08:33:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537508#M5551</guid>
      <dc:creator>mastupristi</dc:creator>
      <dc:date>2016-06-16T08:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: Strange behaviour in i2c driver (KSDK 1.3.0)</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537509#M5552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;Looking at your post and it seems logical that the *cmdBuff-- should be incremented (i.e. *cmdBuff++) rather than decremented.&lt;/P&gt;&lt;P&gt;Have you tried changing it?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;David &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 18:15:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537509#M5552</guid>
      <dc:creator>DavidS</dc:creator>
      <dc:date>2016-06-16T18:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: Strange behaviour in i2c driver (KSDK 1.3.0)</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537510#M5553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;of course!&lt;/P&gt;&lt;P&gt;I have tried to increment and it works perfectly&lt;/P&gt;&lt;P&gt;And I tried to pass pointer to the last element of the buffer and it also works correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So this is a bug in the source code, or is a bug in the docs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is strange that the decrement is replicated in two functions.&lt;/P&gt;&lt;P&gt;But it is also strange that &lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;no one noticed&lt;/SPAN&gt; the problem &lt;SPAN&gt;until now.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;And finally, if it is not a bug, it is strange to pass pointer to the last element of an array, and that this behaviour isn't undocumented.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 06:55:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537510#M5553</guid>
      <dc:creator>mastupristi</dc:creator>
      <dc:date>2016-06-17T06:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: Strange behaviour in i2c driver (KSDK 1.3.0)</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537511#M5554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;Thanks for noticing it, and testing workaround.&amp;nbsp; I will make sure the KSDK_1.x team know about this.&lt;/P&gt;&lt;P&gt;Sorry for the troubles.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 14:07:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537511#M5554</guid>
      <dc:creator>DavidS</dc:creator>
      <dc:date>2016-06-17T14:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Strange behaviour in i2c driver (KSDK 1.3.0)</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537512#M5555</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;In fact, I already reported this issue, this is the report number &lt;A href="http://sw-jira.freescale.net/browse/KPSDK-11168" title="http://sw-jira.freescale.net/browse/KPSDK-11168"&gt;KPSDK-11168.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a nice day!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Isaac&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 16:35:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537512#M5555</guid>
      <dc:creator>isaacavila</dc:creator>
      <dc:date>2016-06-17T16:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Strange behaviour in i2c driver (KSDK 1.3.0)</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537513#M5556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;unfortunately sw-jira.freescale.net seems to be unknown by DNS. I cannot reach it.&lt;/P&gt;&lt;P&gt;Also &lt;A href="http://website.informer.com/sw-jira.freescale.net" title="http://website.informer.com/sw-jira.freescale.net"&gt;sw-jira.freescale.net at Website Informer. Visit Sw Jira Freescale.&lt;/A&gt;​ says that the site is dead&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;Max &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 20:52:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537513#M5556</guid>
      <dc:creator>mastupristi</dc:creator>
      <dc:date>2016-06-17T20:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: Strange behaviour in i2c driver (KSDK 1.3.0)</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537514#M5557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This site is for internal use, but I gave you the number for this event in case you would ask for solution in this topic, you can refer to this topic by using KPSDK-11169.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a nice day!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Isaac&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 21:21:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537514#M5557</guid>
      <dc:creator>isaacavila</dc:creator>
      <dc:date>2016-06-17T21:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: Strange behaviour in i2c driver (KSDK 1.3.0)</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537515#M5558</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;Development team told me that this bug is fixed in latest KSDK 1.3 version. Also, they provided me the fixed source file with this change (replace the -- by ++). I am attaching this file in case anybody want to check it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Isaac&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 16:32:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537515#M5558</guid>
      <dc:creator>isaacavila</dc:creator>
      <dc:date>2016-06-21T16:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: Strange behaviour in i2c driver (KSDK 1.3.0)</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537516#M5559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good,&lt;/P&gt;&lt;P&gt;which version of KSDK is? 1.3.1? I&amp;nbsp; just downloaded the 1.3 from SDK builder but it still contains the bug.&lt;/P&gt;&lt;P&gt;Where can I find the latest 1.3 version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 08:20:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537516#M5559</guid>
      <dc:creator>mastupristi</dc:creator>
      <dc:date>2016-06-22T08:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: Strange behaviour in i2c driver (KSDK 1.3.0)</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537517#M5560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They told me that this fix was added in latest release (I think they refered to internal one and they've not uploaded to SDK builder yet).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Meanwhile you can use the provided fixed source file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Isaac&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 15:02:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Strange-behaviour-in-i2c-driver-KSDK-1-3-0/m-p/537517#M5560</guid>
      <dc:creator>isaacavila</dc:creator>
      <dc:date>2016-06-22T15:02:11Z</dc:date>
    </item>
  </channel>
</rss>

