<?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のトピックRe: External SDram read consistently slower than write</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/External-SDram-read-consistently-slower-than-write/m-p/552005#M14299</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by mch0 on Thu Oct 09 06:23:17 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think with memcpy() the same effect is at work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Writes to the SDRAM are combined into a buffer, then executed with a burst transaction.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Since there are four buffers, the memcpy() can run close to maximum speed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Reads from the SDRAM are again prone to the gaps between bursts, since the EMC does not (seem to) prefetch data beyond a burst.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So most probably 3 of the 4 buffers will be unused (*) for reads, while the one in use must be emptied by the memcpy() before the next transaction is initiated by the EMC.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I thought of trying to "trick" the EMC into a prefetch by placing every 4th read "out of order" to generate an early request for the next burst, but I am unfortunately rather sure that this won't work with the M4 core (in order execution).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another idea, if your application allows for that, would be to tightly couple program execution of the two cores on the AHB (M4 and M0) and/or the GPDMA to create interleaved read accesses. In that case the EMC would see the request for the next "burst block" earlier and could perhaps reduce the gap. A danger here is a premature end of burst.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;As a last resort I would try that but it is certainly not easy to implement reliably.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(*) The EMC may use all 4 four buffers to create a cache, but this does not help in your case of a linear read.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;About my own results: The board version with SDRAM isn't even layouted, so I will not be able to deliver any real numbers for the next 4 weeks :(&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 18:35:11 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T18:35:11Z</dc:date>
    <item>
      <title>External SDram read consistently slower than write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/External-SDram-read-consistently-slower-than-write/m-p/552002#M14296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by fguerzoni on Wed Oct 08 16:10:34 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a strange issue with LPC4357 + 256M-AS4C16M16S (16x16x4) sdram memory on custom board.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When using GPDMA:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Writes from local ram (any bank) to external ram are at 185MByte/sec&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Reads from external ram to local ram (any bank) are at&amp;nbsp;&amp;nbsp; 75MByte/sec&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Theoretical speed limit is 204MByte/sec (ram clock is 102MHz and bus is 16bit)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When using direct memcpy things go slowly but writes happens with double the reads speed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;No errors happens on data at all but I think I'm missing something macro because I think reads should be at least fast as writes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I doubled checked configurations and application code without results.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance for any suggestion.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:35:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/External-SDram-read-consistently-slower-than-write/m-p/552002#M14296</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: External SDram read consistently slower than write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/External-SDram-read-consistently-slower-than-write/m-p/552003#M14297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by mch0 on Thu Oct 09 03:49:52 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think this might be systematic problem, nothing you can correct or avoid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;There are several buffers (GPDMA, EMC, to some extent the active row in the SDRAM) that help a lot for writes but much less for reads.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For writes the much faster GPDMA (double clock, double width) can refill the EMC buffer while the last data is written out (burst of 8) to the active row.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Since the EMC knows already the address of the next write and also has some data available, it can generate a back-to-back write burst.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For reads the GPDMA will most probably only generate the read request for the next burst when it has read (and maybe even stored) the last word of the previous burst. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Therefore the EMC must leave a gap (in clock cycles) between the two read bursts, it just doesn't know earlier about the new request. Maybe it even closes the row, which would prolong the gap even more.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is highly dependant on the internal stratetegy of the EMC of which we know close to nothing - the UM is not very informative here :/&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But the underlying problem is still present, regardless of the relative "smartness" or "dumbness" of the EMC.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is just my opinion, I don't have any more information than the UM provides.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll be interested in further results, if you have some, however.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Our next custom board shall also include an SDRAM, we'll try to get a 2Mx32 working at up to 200MHz (AS4C2M32S-5). I'm not sure we can get there, though. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyway, the write rate you achieve is very good, I think.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:35:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/External-SDram-read-consistently-slower-than-write/m-p/552003#M14297</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: External SDram read consistently slower than write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/External-SDram-read-consistently-slower-than-write/m-p/552004#M14298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by fguerzoni on Thu Oct 09 05:35:36 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Mike,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you for quick and detailed reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, I'm very satisfied about write speed. Not much about read speed becasue it's below my requirements.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;And yes, I can do nothing to change that result in term of ram and EMC settings. Performance are highly repeatable.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I preferred to not use 32 bit bus because pcb design hell about lines length and impedance. But I'm very interested in your future results, so please share when ready.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What explanation you give about the performance difference doing mcu data transfer (memcpy)? Writes perform double speed&amp;nbsp; than reads.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Filippo&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:35:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/External-SDram-read-consistently-slower-than-write/m-p/552004#M14298</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: External SDram read consistently slower than write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/External-SDram-read-consistently-slower-than-write/m-p/552005#M14299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by mch0 on Thu Oct 09 06:23:17 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think with memcpy() the same effect is at work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Writes to the SDRAM are combined into a buffer, then executed with a burst transaction.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Since there are four buffers, the memcpy() can run close to maximum speed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Reads from the SDRAM are again prone to the gaps between bursts, since the EMC does not (seem to) prefetch data beyond a burst.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So most probably 3 of the 4 buffers will be unused (*) for reads, while the one in use must be emptied by the memcpy() before the next transaction is initiated by the EMC.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I thought of trying to "trick" the EMC into a prefetch by placing every 4th read "out of order" to generate an early request for the next burst, but I am unfortunately rather sure that this won't work with the M4 core (in order execution).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another idea, if your application allows for that, would be to tightly couple program execution of the two cores on the AHB (M4 and M0) and/or the GPDMA to create interleaved read accesses. In that case the EMC would see the request for the next "burst block" earlier and could perhaps reduce the gap. A danger here is a premature end of burst.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;As a last resort I would try that but it is certainly not easy to implement reliably.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(*) The EMC may use all 4 four buffers to create a cache, but this does not help in your case of a linear read.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;About my own results: The board version with SDRAM isn't even layouted, so I will not be able to deliver any real numbers for the next 4 weeks :(&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:35:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/External-SDram-read-consistently-slower-than-write/m-p/552005#M14299</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: External SDram read consistently slower than write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/External-SDram-read-consistently-slower-than-write/m-p/552006#M14300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by eamonnh on Tue Oct 14 11:20:29 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi fguerzoni,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have struggled with this issue also. I have a 32-bit SDRAM which is reaching 282 MB/sec write and only 101 MB/sec read. We can see some extra dead cycles on the EMC bus between each read access which seems to slow it down quite a bit.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm interested that you are achieving 75MB/sec with a 16-bit bus. Which suggests that I may be able to achieve closer to 150MB/sec with a 32-bit databus&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Would you be kind enough to post your EMC configuration? I'd really like to see if I can improve my 32-bit read above the 101MB/sec I'm achieving. The part I'm using is an IS42S32160C.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's a snippet of my EMC config:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; //nSClks NXP Description&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ISSI Description&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;emc-&amp;gt;DYNAMICRP = tRP-1;//tRP202Precharge Command&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;emc-&amp;gt;DYNAMICRAS = tRAS-1;//tRAS485MemoryActive to PrechargeCommand&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;emc-&amp;gt;DYNAMICSREX= tSRX-1;//tSRX707Self Refresh Exit time.tSRX Exit Self Refresh&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;emc-&amp;gt;DYNAMICAPR = tAPR-1;//tAPR?1LastDataOut to Active&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;emc-&amp;gt;DYNAMICDAL = tDAL;//tDAL?4DataIn to Active&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;emc-&amp;gt;DYNAMICWR = tWR-1;//tWR-2WriteRecovery&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;emc-&amp;gt;DYNAMICRC = tRC-1;//tRC707ActiveCommandPeriodtRC&amp;nbsp; Row cycle time&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;emc-&amp;gt;DYNAMICRFC = tRFC-1;//tRFC?AutoRefreshPeriod&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;emc-&amp;gt;DYNAMICXSR = tXSR-1;//tXSR707ExitSelfRefreshtSRX Exit Self Refresh&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;emc-&amp;gt;DYNAMICRRD = tRRD-1;//tRRD152Active Bank A B TimetRRD Row activate to row activate delay&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;emc-&amp;gt;DYNAMICMRD = tMRD-1;//tMRD-2LoadModeReg to ActiveCommandtMRS Mode Register Set cycle time.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've also tried both RBC and BRC modes, without any apparent gain.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for bringing up this topic.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Kind regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Eamonn&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:35:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/External-SDram-read-consistently-slower-than-write/m-p/552006#M14300</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: External SDram read consistently slower than write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/External-SDram-read-consistently-slower-than-write/m-p/552007#M14301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by mch0 on Tue Oct 14 11:46:28 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi eamonn&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm interested in numbers, too :)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Unfortunately I believe right now that the gain from x16 to x32 is far less than a factor of two.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hopefully I will stand corrected, we'll see.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As far as I do understand the UM the EMC always generates burst accesses. If so, the gain of x32 vs. x16 is only 4 EMC clocks, but the overhead (burst setup + gap) remains constant.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;That's why I'm pessimistic.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What I would like to try is whether you can get rid of / shorten the gap ("dead cycles").&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you try to set up two bus masters that will generate read accesses at the same time?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The idea is to see whether the EMC can generate back-to-back read bursts at all.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;As you seem to have a LA connected to the bus, you could see a difference easily.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For a test maybe you could do this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set up two DMA transfers of 1000 transactions (32bit) each, one starting at an address like 0x20000000, the other at, say, 0x20000080.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Then start both channels at the same time.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;My idea is this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Both transfers will hit the same page (=active row) for half the time. While the EMC reads in one burst the other channel already generates read accesses. This second channel will stall, but at least the read access could be queued in the EMC.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So when the first burst terminates it could start the second one immediately.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;After that burst the roles are reversed and the show could go on w/o gaps.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If the gaps are still present I think we can pretty much give up on trying to enhance read performance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If the gaps vanish, there is hope :)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:35:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/External-SDram-read-consistently-slower-than-write/m-p/552007#M14301</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: External SDram read consistently slower than write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/External-SDram-read-consistently-slower-than-write/m-p/552008#M14302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by eamonnh on Tue Oct 14 13:44:47 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Mike,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your reply. I think your comment about the x32 vs x16 may well explain why I'm not seeing the extra bandwidth I was expecting.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Your idea of trying 2 simultaneous reads is very good. I'll run a test and post back if there is any gain.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks - Eamonn&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:35:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/External-SDram-read-consistently-slower-than-write/m-p/552008#M14302</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:35:13Z</dc:date>
    </item>
  </channel>
</rss>

