<?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>LPC MicrocontrollersのトピックCopy data from memory to memory fails</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Copy-data-from-memory-to-memory-fails/m-p/526731#M9249</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Dear all,&lt;/P&gt;&lt;P&gt;I scratch my head about this for too long with no progress, so...&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I work with a LPC4337 with external SDRAM (256Mb / 32 MB) at the EMC. The external SDRAM is located at DYCS0:&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;/* SDRAM Address Base for DYCS0*/ #define BUFFER_BASE 0x28000000 // Start Memory address for data buffer #define BUFFER_SIZE 0x02000000 // 32 Mb = 33,554,432 byte&amp;nbsp;&amp;nbsp; (0x2800 0000 --&amp;gt; 0x2A00 0000)&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can read- and write- access the buffer with no problems.&lt;/P&gt;&lt;P&gt;I also successfully send the buffer data out through USB (USBD_ROM_LIBUSB):&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;void TxBuffer(const uint32_t* buf, uint32_t len) { //... &amp;nbsp; libusbdev_QueueSendReq(buf, len); //... }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;/* Queue the given buffer for transmision to USB host application. */ ErrorCode_t libusbdev_QueueSendReq(uint8_t *pBuf, uint32_t buf_len) { &amp;nbsp; LUSB_CTRL_T *pUSB = (LUSB_CTRL_T *) &amp;amp;g_lusb; &amp;nbsp; ErrorCode_t ret = ERR_FAILED;&amp;nbsp;&amp;nbsp; &amp;nbsp; /* Check if a read request is pending */ &amp;nbsp; if (pUSB-&amp;gt;pTxBuf == 0) { &amp;nbsp; /* Queue the read request */ &amp;nbsp; pUSB-&amp;gt;pTxBuf = pBuf; &amp;nbsp; pUSB-&amp;gt;txBuffLen = buf_len;&amp;nbsp;&amp;nbsp; &amp;nbsp; USBD_API-&amp;gt;hw-&amp;gt;WriteEP(pUSB-&amp;gt;hUsb, LUSB_IN_EP, pBuf, buf_len); &amp;nbsp; ret = LPC_OK; &amp;nbsp; }&amp;nbsp;&amp;nbsp; &amp;nbsp; return ret; }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I added a SD card to store the same data in a file. Based on the SDMMC example (including FatFS):&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;void TxBuffer(const uint32_t* buf, uint32_t len) { //... &amp;nbsp; SDMMC_AddData(buf, len); //... }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;void SDMMC_AddData(uint8_t *pBuf, uint32_t buf_len) { &amp;nbsp; FRESULT rc; /* Result code */ &amp;nbsp; UINT bw;&amp;nbsp;&amp;nbsp; &amp;nbsp; rc = f_write(&amp;amp;Fil, pBuf, buf_len, &amp;amp;bw); //... }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This f_write() call works just fine when the buffer is a byte array (for example writing a text string).&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, when i pass on my external memory location pointer as pBuf (just like with the USB variant), f_write() fails. I tracked it down to the "mem_cpy()" lines within f_write(). After a few bytes of copying from 0x28000000+, it just 'stops'. No hard fault - the debugger is just quiet for a few seconds, then disconnects from the target.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The FatFS mem_cpy() is a simple byte by byte copy:&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;/* Copy memory to memory */ static void mem_cpy (void* dst, const void* src, UINT cnt) { &amp;nbsp; BYTE *d = (BYTE*)dst; &amp;nbsp; const BYTE *s = (const BYTE*)src;&amp;nbsp;&amp;nbsp; &amp;nbsp; if (cnt) { &amp;nbsp; do *d++ = *s++; while (--cnt); &amp;nbsp; } }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I tried the native memcpy() with the same result (it never returns).&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My next try was a DMA transfer, which also never completes (stays enabled with transfer size &amp;gt;0):&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;/* Copy memory to memory */ static void mem_cpy_DMA(uint32_t dstAddr, uint32_t srcAddr, uint32_t bytes) { &amp;nbsp; while (LPC_GPDMA-&amp;gt;CH[1].CONFIG &amp;amp; 0x1); // Wait for previous transfer to complete&amp;nbsp;&amp;nbsp; &amp;nbsp; /* BUFFER - DMA CONFIGURATION */ &amp;nbsp; LPC_GPDMA-&amp;gt;CH[1].SRCADDR = srcAddr; &amp;nbsp; LPC_GPDMA-&amp;gt;CH[1].DESTADDR = dstAddr; &amp;nbsp; LPC_GPDMA-&amp;gt;CH[1].LLI = 0; // Linked List Items not used &amp;nbsp; LPC_GPDMA-&amp;gt;CH[1].CONTROL = (bytes &amp;lt;&amp;lt;&amp;nbsp; 0)| // Transfer size &amp;nbsp; (0x0 &amp;lt;&amp;lt; 12)&amp;nbsp; | // Source Burst Size = 1 transfer per request &amp;nbsp; (0x0 &amp;lt;&amp;lt; 15)&amp;nbsp; | // Destination Burst Size = 1 transfer per request &amp;nbsp; (0x0 &amp;lt;&amp;lt; 18)&amp;nbsp; | // Source width = byte &amp;nbsp; (0x0 &amp;lt;&amp;lt; 21)&amp;nbsp; | // Destination width = byte &amp;nbsp; (0x1 &amp;lt;&amp;lt; 24)&amp;nbsp; | // Source AHB master = AHB master 1 &amp;nbsp; (0x1 &amp;lt;&amp;lt; 25)&amp;nbsp; | // Destination AHB master = AHB master 1 &amp;nbsp; (0x1 &amp;lt;&amp;lt; 26)&amp;nbsp; | // Source incremented after each transfer &amp;nbsp; (0x1 &amp;lt;&amp;lt; 27)&amp;nbsp; | // Destination incremented after each transfer &amp;nbsp; (0x0 &amp;lt;&amp;lt; 28)&amp;nbsp; | // PROT1: privileged access disabled &amp;nbsp; (0x1 &amp;lt;&amp;lt; 29)&amp;nbsp; | // PROT2: bufferable access enabled &amp;nbsp; (0x0 &amp;lt;&amp;lt; 30)&amp;nbsp; | // PROT3: cacheable access disabled &amp;nbsp; (0x0L &amp;lt;&amp;lt; 31); // Terminal count interrupt disabled &amp;nbsp; LPC_GPDMA-&amp;gt;CH[1].CONFIG&amp;nbsp; =&amp;nbsp; (0x1 &amp;lt;&amp;lt; 0)&amp;nbsp;&amp;nbsp; | // Channel immediately enabled &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (0x0 &amp;lt;&amp;lt; 1)&amp;nbsp;&amp;nbsp; | // Source peripheral = Don't care (transfer from memory) &amp;nbsp; (0x0 &amp;lt;&amp;lt; 6)&amp;nbsp;&amp;nbsp; | // Destination peripheral = Don't care (transfer to memory) &amp;nbsp; (0x0 &amp;lt;&amp;lt; 11)&amp;nbsp; | // Flow control = Memory to memory (DMA control) &amp;nbsp; (0x0 &amp;lt;&amp;lt; 14)&amp;nbsp; | // Interrupt error mask &amp;nbsp; (0x0L &amp;lt;&amp;lt; 15); // Terminal count interrupt mask }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I tried out of curiosity to change the external SDRAM back to a (smaller) local RAM, and all three memory copy variants work fine:&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;#define BUFFER_BASE&amp;nbsp; 0x20000000&amp;nbsp; // Start Memory address buffer #define BUFFER_SIZE&amp;nbsp; 0x00010000&amp;nbsp; // 64 kB AHB SRAM&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So my big question is: Why does the memory copy fail?&lt;/P&gt;&lt;P&gt;(...Although the external SDRAM buffer obviously works fine with the USB code?)&lt;/P&gt;&lt;P&gt;(...Why does it work with a local SRAM address, but not with the external SDRAM address?)&lt;/P&gt;&lt;P&gt;All experiments are with single packets of a like 70-90 bytes, so memory size and speed etc.are not a factor at this point.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any thoughts or ideas are much appreciated!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jul 2016 20:18:34 GMT</pubDate>
    <dc:creator>zzzmqp</dc:creator>
    <dc:date>2016-07-21T20:18:34Z</dc:date>
    <item>
      <title>Copy data from memory to memory fails</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Copy-data-from-memory-to-memory-fails/m-p/526731#M9249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Dear all,&lt;/P&gt;&lt;P&gt;I scratch my head about this for too long with no progress, so...&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I work with a LPC4337 with external SDRAM (256Mb / 32 MB) at the EMC. The external SDRAM is located at DYCS0:&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;/* SDRAM Address Base for DYCS0*/ #define BUFFER_BASE 0x28000000 // Start Memory address for data buffer #define BUFFER_SIZE 0x02000000 // 32 Mb = 33,554,432 byte&amp;nbsp;&amp;nbsp; (0x2800 0000 --&amp;gt; 0x2A00 0000)&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can read- and write- access the buffer with no problems.&lt;/P&gt;&lt;P&gt;I also successfully send the buffer data out through USB (USBD_ROM_LIBUSB):&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;void TxBuffer(const uint32_t* buf, uint32_t len) { //... &amp;nbsp; libusbdev_QueueSendReq(buf, len); //... }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;/* Queue the given buffer for transmision to USB host application. */ ErrorCode_t libusbdev_QueueSendReq(uint8_t *pBuf, uint32_t buf_len) { &amp;nbsp; LUSB_CTRL_T *pUSB = (LUSB_CTRL_T *) &amp;amp;g_lusb; &amp;nbsp; ErrorCode_t ret = ERR_FAILED;&amp;nbsp;&amp;nbsp; &amp;nbsp; /* Check if a read request is pending */ &amp;nbsp; if (pUSB-&amp;gt;pTxBuf == 0) { &amp;nbsp; /* Queue the read request */ &amp;nbsp; pUSB-&amp;gt;pTxBuf = pBuf; &amp;nbsp; pUSB-&amp;gt;txBuffLen = buf_len;&amp;nbsp;&amp;nbsp; &amp;nbsp; USBD_API-&amp;gt;hw-&amp;gt;WriteEP(pUSB-&amp;gt;hUsb, LUSB_IN_EP, pBuf, buf_len); &amp;nbsp; ret = LPC_OK; &amp;nbsp; }&amp;nbsp;&amp;nbsp; &amp;nbsp; return ret; }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I added a SD card to store the same data in a file. Based on the SDMMC example (including FatFS):&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;void TxBuffer(const uint32_t* buf, uint32_t len) { //... &amp;nbsp; SDMMC_AddData(buf, len); //... }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;void SDMMC_AddData(uint8_t *pBuf, uint32_t buf_len) { &amp;nbsp; FRESULT rc; /* Result code */ &amp;nbsp; UINT bw;&amp;nbsp;&amp;nbsp; &amp;nbsp; rc = f_write(&amp;amp;Fil, pBuf, buf_len, &amp;amp;bw); //... }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This f_write() call works just fine when the buffer is a byte array (for example writing a text string).&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, when i pass on my external memory location pointer as pBuf (just like with the USB variant), f_write() fails. I tracked it down to the "mem_cpy()" lines within f_write(). After a few bytes of copying from 0x28000000+, it just 'stops'. No hard fault - the debugger is just quiet for a few seconds, then disconnects from the target.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The FatFS mem_cpy() is a simple byte by byte copy:&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;/* Copy memory to memory */ static void mem_cpy (void* dst, const void* src, UINT cnt) { &amp;nbsp; BYTE *d = (BYTE*)dst; &amp;nbsp; const BYTE *s = (const BYTE*)src;&amp;nbsp;&amp;nbsp; &amp;nbsp; if (cnt) { &amp;nbsp; do *d++ = *s++; while (--cnt); &amp;nbsp; } }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I tried the native memcpy() with the same result (it never returns).&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My next try was a DMA transfer, which also never completes (stays enabled with transfer size &amp;gt;0):&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;/* Copy memory to memory */ static void mem_cpy_DMA(uint32_t dstAddr, uint32_t srcAddr, uint32_t bytes) { &amp;nbsp; while (LPC_GPDMA-&amp;gt;CH[1].CONFIG &amp;amp; 0x1); // Wait for previous transfer to complete&amp;nbsp;&amp;nbsp; &amp;nbsp; /* BUFFER - DMA CONFIGURATION */ &amp;nbsp; LPC_GPDMA-&amp;gt;CH[1].SRCADDR = srcAddr; &amp;nbsp; LPC_GPDMA-&amp;gt;CH[1].DESTADDR = dstAddr; &amp;nbsp; LPC_GPDMA-&amp;gt;CH[1].LLI = 0; // Linked List Items not used &amp;nbsp; LPC_GPDMA-&amp;gt;CH[1].CONTROL = (bytes &amp;lt;&amp;lt;&amp;nbsp; 0)| // Transfer size &amp;nbsp; (0x0 &amp;lt;&amp;lt; 12)&amp;nbsp; | // Source Burst Size = 1 transfer per request &amp;nbsp; (0x0 &amp;lt;&amp;lt; 15)&amp;nbsp; | // Destination Burst Size = 1 transfer per request &amp;nbsp; (0x0 &amp;lt;&amp;lt; 18)&amp;nbsp; | // Source width = byte &amp;nbsp; (0x0 &amp;lt;&amp;lt; 21)&amp;nbsp; | // Destination width = byte &amp;nbsp; (0x1 &amp;lt;&amp;lt; 24)&amp;nbsp; | // Source AHB master = AHB master 1 &amp;nbsp; (0x1 &amp;lt;&amp;lt; 25)&amp;nbsp; | // Destination AHB master = AHB master 1 &amp;nbsp; (0x1 &amp;lt;&amp;lt; 26)&amp;nbsp; | // Source incremented after each transfer &amp;nbsp; (0x1 &amp;lt;&amp;lt; 27)&amp;nbsp; | // Destination incremented after each transfer &amp;nbsp; (0x0 &amp;lt;&amp;lt; 28)&amp;nbsp; | // PROT1: privileged access disabled &amp;nbsp; (0x1 &amp;lt;&amp;lt; 29)&amp;nbsp; | // PROT2: bufferable access enabled &amp;nbsp; (0x0 &amp;lt;&amp;lt; 30)&amp;nbsp; | // PROT3: cacheable access disabled &amp;nbsp; (0x0L &amp;lt;&amp;lt; 31); // Terminal count interrupt disabled &amp;nbsp; LPC_GPDMA-&amp;gt;CH[1].CONFIG&amp;nbsp; =&amp;nbsp; (0x1 &amp;lt;&amp;lt; 0)&amp;nbsp;&amp;nbsp; | // Channel immediately enabled &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (0x0 &amp;lt;&amp;lt; 1)&amp;nbsp;&amp;nbsp; | // Source peripheral = Don't care (transfer from memory) &amp;nbsp; (0x0 &amp;lt;&amp;lt; 6)&amp;nbsp;&amp;nbsp; | // Destination peripheral = Don't care (transfer to memory) &amp;nbsp; (0x0 &amp;lt;&amp;lt; 11)&amp;nbsp; | // Flow control = Memory to memory (DMA control) &amp;nbsp; (0x0 &amp;lt;&amp;lt; 14)&amp;nbsp; | // Interrupt error mask &amp;nbsp; (0x0L &amp;lt;&amp;lt; 15); // Terminal count interrupt mask }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I tried out of curiosity to change the external SDRAM back to a (smaller) local RAM, and all three memory copy variants work fine:&lt;/P&gt;&lt;PRE class="c++" name="code"&gt;#define BUFFER_BASE&amp;nbsp; 0x20000000&amp;nbsp; // Start Memory address buffer #define BUFFER_SIZE&amp;nbsp; 0x00010000&amp;nbsp; // 64 kB AHB SRAM&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So my big question is: Why does the memory copy fail?&lt;/P&gt;&lt;P&gt;(...Although the external SDRAM buffer obviously works fine with the USB code?)&lt;/P&gt;&lt;P&gt;(...Why does it work with a local SRAM address, but not with the external SDRAM address?)&lt;/P&gt;&lt;P&gt;All experiments are with single packets of a like 70-90 bytes, so memory size and speed etc.are not a factor at this point.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any thoughts or ideas are much appreciated!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2016 20:18:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Copy-data-from-memory-to-memory-fails/m-p/526731#M9249</guid>
      <dc:creator>zzzmqp</dc:creator>
      <dc:date>2016-07-21T20:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Copy data from memory to memory fails</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Copy-data-from-memory-to-memory-fails/m-p/526732#M9250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, update...&amp;nbsp; all the above options are fine.&lt;/P&gt;&lt;P&gt;The problems was something else: All 4 CLK's have to be used for the EMC interface (...). The problem was that the SDMMC init code (taken from the LPC SD/MMC example) configured CLK2 as the SD_CLK, which messed up the EMC. Configuring pin PC_0 as the SD_CLK solves the issue.&lt;/P&gt;&lt;P&gt;See also here: &lt;A href="https://community.nxp.com/message/815228"&gt;Re: SD\MMC issue&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2016 14:32:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Copy-data-from-memory-to-memory-fails/m-p/526732#M9250</guid>
      <dc:creator>zzzmqp</dc:creator>
      <dc:date>2016-08-17T14:32:34Z</dc:date>
    </item>
  </channel>
</rss>

