<?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: bug in NFC_LDD range checking? in Processor Expert Software</title>
    <link>https://community.nxp.com/t5/Processor-Expert-Software/bug-in-NFC-LDD-range-checking/m-p/256311#M1568</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;thanks for reporting this bug to us. We will fix it for next release (I am not sure about CW V10.6 because we are close to this release. However this fix is going to be part of DriverSuite 10.4).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Vojtech Filip&lt;/P&gt;&lt;P&gt;Processor Expert Support Team&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Feb 2014 10:18:34 GMT</pubDate>
    <dc:creator>vfilip</dc:creator>
    <dc:date>2014-02-25T10:18:34Z</dc:date>
    <item>
      <title>bug in NFC_LDD range checking?</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/bug-in-NFC-LDD-range-checking/m-p/256310#M1567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I believe this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="p4"&gt;&lt;SPAN class="s2"&gt;&amp;nbsp; &lt;/SPAN&gt;/* Input parameter test - this test can be disabled by setting the "Ignore range checking"&lt;/P&gt;&lt;P class="p4"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; property to the "yes" value in the "Configuration inspector" */&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; &lt;SPAN class="s3"&gt;&lt;STRONG&gt;if&lt;/STRONG&gt;&lt;/SPAN&gt; ((PageNumber + PageCount) &amp;gt;= NAND_FLASH_PAGE_COUNT) {&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="s3"&gt;&lt;STRONG&gt;return&lt;/STRONG&gt;&lt;/SPAN&gt; ERR_PARAM_LENGTH;&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;should be this:&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p4"&gt;&lt;SPAN class="s2"&gt;&amp;nbsp; &lt;/SPAN&gt;/* Input parameter test - this test can be disabled by setting the "Ignore range checking"&lt;/P&gt;&lt;P class="p4"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; property to the "yes" value in the "Configuration inspector" */&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; &lt;SPAN class="s3"&gt;&lt;STRONG&gt;if&lt;/STRONG&gt;&lt;/SPAN&gt; ((PageNumber + PageCount) &amp;gt; NAND_FLASH_PAGE_COUNT) {&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="s3"&gt;&lt;STRONG&gt;return&lt;/STRONG&gt;&lt;/SPAN&gt; ERR_PARAM_LENGTH;&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;Otherwise you can't access the last page of the flash.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 06:44:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/bug-in-NFC-LDD-range-checking/m-p/256310#M1567</guid>
      <dc:creator>bowerymarc</dc:creator>
      <dc:date>2014-02-25T06:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: bug in NFC_LDD range checking?</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/bug-in-NFC-LDD-range-checking/m-p/256311#M1568</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;thanks for reporting this bug to us. We will fix it for next release (I am not sure about CW V10.6 because we are close to this release. However this fix is going to be part of DriverSuite 10.4).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Vojtech Filip&lt;/P&gt;&lt;P&gt;Processor Expert Support Team&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 10:18:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/bug-in-NFC-LDD-range-checking/m-p/256311#M1568</guid>
      <dc:creator>vfilip</dc:creator>
      <dc:date>2014-02-25T10:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: bug in NFC_LDD range checking?</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/bug-in-NFC-LDD-range-checking/m-p/256312#M1569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;similar range checking bug in the r/w raw routines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i couldn't find how to disable range checking, despite the comments.&amp;nbsp; I guess the only workaround (unless there is a way to disable generating that code) is to freeze and edit?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 17:54:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/bug-in-NFC-LDD-range-checking/m-p/256312#M1569</guid>
      <dc:creator>bowerymarc</dc:creator>
      <dc:date>2014-02-25T17:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: bug in NFC_LDD range checking?</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/bug-in-NFC-LDD-range-checking/m-p/256313#M1570</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;The configuration inspector can be invoked using the pop-up menu of the configuration&amp;nbsp; (the settings are specific for configuration, you can have different settings for each configuration)::&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="ConfigInspector.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/43116i0249FA2F9BA9AEAD/image-size/large?v=v2&amp;amp;px=999" role="button" title="ConfigInspector.png" alt="ConfigInspector.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;There you can set "Ignore range settings" :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="ConfigInspector2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/43117i37849C035FBBBE96/image-size/large?v=v2&amp;amp;px=999" role="button" title="ConfigInspector2.png" alt="ConfigInspector2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Then regenerate the code and the range checking code disappears.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-size: 12pt; font-family: Calibri,Arial Rounded MT Bold;"&gt;&lt;SPAN lang="EN"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P align="left" dir="ltr"&gt;Best regards&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-size: 12pt; font-family: Calibri,Arial Rounded MT Bold;"&gt;&lt;SPAN lang="EN"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P align="left" dir="ltr"&gt;Petr Hradsky&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-size: 12pt; font-family: Calibri,Arial Rounded MT Bold;"&gt;&lt;SPAN lang="EN"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P align="left" dir="ltr"&gt;Processor Expert Support Team&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-size: 12pt; font-family: Calibri,Arial Rounded MT Bold;"&gt;&lt;SPAN lang="EN"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2014 16:17:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/bug-in-NFC-LDD-range-checking/m-p/256313#M1570</guid>
      <dc:creator>Petr_H</dc:creator>
      <dc:date>2014-03-11T16:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: bug in NFC_LDD range checking?</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/bug-in-NFC-LDD-range-checking/m-p/256314#M1571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2014 19:36:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/bug-in-NFC-LDD-range-checking/m-p/256314#M1571</guid>
      <dc:creator>bowerymarc</dc:creator>
      <dc:date>2014-03-11T19:36:11Z</dc:date>
    </item>
  </channel>
</rss>

