<?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: LPC546xx SDK2.2 Ethernet: code mistake in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC546xx-SDK2-2-Ethernet-code-mistake/m-p/711782#M28713</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN class=""&gt;&lt;A _jive_internal="true" class="" data-containerid="-1" data-containertype="-1" data-objectid="286068" data-objecttype="3" href="https://community.nxp.com/people/hlsamts"&gt;Holger Sachs&lt;/A&gt;&lt;/SPAN&gt;,&lt;/P&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;&lt;SPAN style="background-color: inherit; line-height: 1.5; font-family: 微软雅黑,sans-serif;"&gt;Thank you for your interest in NXP Semiconductor products and&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;&lt;SPAN style="background-color: inherit; font-family: 微软雅黑,sans-serif;"&gt;for the opportunity to serve you.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff;"&gt;I'll contact with the AE team about this 'issue'.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;Have a great day,&lt;/DIV&gt;&lt;P&gt;TIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Aug 2017 07:42:05 GMT</pubDate>
    <dc:creator>jeremyzhou</dc:creator>
    <dc:date>2017-08-31T07:42:05Z</dc:date>
    <item>
      <title>LPC546xx SDK2.2 Ethernet: code mistake</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC546xx-SDK2-2-Ethernet-code-mistake/m-p/711781#M28712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a mistake in the function ENET_DescriptorInit of SDK2.2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The original order is:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Determine, whether the RX interrupt is enabled:&lt;BR /&gt;&lt;STRONG&gt;intRxEnable&lt;/STRONG&gt; = (base-&amp;gt;DMA_CH[channel].DMA_CHX_INT_EN &amp;amp; ENET_DMA_CH_DMA_CHX_INT_EN_RIE_MASK) ? true : false;&lt;/LI&gt;&lt;LI&gt;Initialize TX descriptors:&lt;BR /&gt;if (ENET_TxDescriptorsInit(base, bufferConfig, &lt;STRONG&gt;intTxEnable&lt;/STRONG&gt;, channel) != kStatus_Success) ...&lt;/LI&gt;&lt;LI&gt;Determine, whether the TX interrupt is enabled:&lt;BR /&gt;&lt;STRONG&gt;intTxEnable&lt;/STRONG&gt; = (base-&amp;gt;DMA_CH[channel].DMA_CHX_INT_EN &amp;amp; ENET_DMA_CH_DMA_CHX_INT_EN_TIE_MASK) ? true : false;&lt;/LI&gt;&lt;LI&gt;Initialize RX descriptors:&lt;BR /&gt;if (ENET_RxDescriptorsInit(base, bufferConfig, &lt;STRONG&gt;intRxEnable&lt;/STRONG&gt;, channel, doubleBuffEnable) != kStatus_Success) ...&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is: &lt;SPAN style="color: #ff6600;"&gt;&lt;STRONG&gt;in step 2 the variable intTxEnable is used uninitialized.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;One possible order of the steps would be: 3-2-1-4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Holger Sachs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 09:59:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC546xx-SDK2-2-Ethernet-code-mistake/m-p/711781#M28712</guid>
      <dc:creator>hlsamts</dc:creator>
      <dc:date>2017-08-30T09:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: LPC546xx SDK2.2 Ethernet: code mistake</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC546xx-SDK2-2-Ethernet-code-mistake/m-p/711782#M28713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN class=""&gt;&lt;A _jive_internal="true" class="" data-containerid="-1" data-containertype="-1" data-objectid="286068" data-objecttype="3" href="https://community.nxp.com/people/hlsamts"&gt;Holger Sachs&lt;/A&gt;&lt;/SPAN&gt;,&lt;/P&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;&lt;SPAN style="background-color: inherit; line-height: 1.5; font-family: 微软雅黑,sans-serif;"&gt;Thank you for your interest in NXP Semiconductor products and&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;&lt;SPAN style="background-color: inherit; font-family: 微软雅黑,sans-serif;"&gt;for the opportunity to serve you.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff;"&gt;I'll contact with the AE team about this 'issue'.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000; font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;Have a great day,&lt;/DIV&gt;&lt;P&gt;TIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2017 07:42:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC546xx-SDK2-2-Ethernet-code-mistake/m-p/711782#M28713</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2017-08-31T07:42:05Z</dc:date>
    </item>
  </channel>
</rss>

