<?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: SDHC working with DMA in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181436#M1763</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;OK - I have for you another source of information, some days ago I finished the updated MQX version of SDHC driver based on ADMA and it works pretty fine, the one not finished bug is that is not able to handle non alignment data buffers, but rest things seems to runs correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not published yet version that after some updates will be part of some new release of MQX. I hope that this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Petr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Jul 2013 12:03:59 GMT</pubDate>
    <dc:creator>Gargy</dc:creator>
    <dc:date>2013-07-12T12:03:59Z</dc:date>
    <item>
      <title>SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181407#M1734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to develop a program which communicatee with WIFI card over SDIO protocol. The SDIO protocol part working fine but I want to use the simple internal DMA to read and write data. However I got at every time a DMA ERROR interrupt (the DMA TRANSFER COMPLETE flag is also fired up). Here is my configuration program:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;SDIO_SetWriteWatermark(SDHC_BASE_PTR, (u32)(count&amp;amp;0xffff));SDIO_SetReadWatermark(SDHC_BASE_PTR, (u32)(count&amp;amp;0xffff));SDIO_SetDMAAddress(SDHC_BASE_PTR, (u32)data); // data is an pointer over my bufferSDIO_SetCommandArgument(SDHC_BASE_PTR, arg); SDIO_SendCommand(SDHC_BASE_PTR, SDIO_CMD53_IO_RW_EXTENDED,SDIO_ENABLE_DMA |                                                         SDIO_DATA_PRESENT |                                                         SDIO_DATA_READ |                                                        SDIO_RESPONSE_LENGTH_48);&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Someone has an idea to get the SDIO working fine with the internal DMA?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jocelyn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2020 09:31:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181407#M1734</guid>
      <dc:creator>jocelyn_massero</dc:creator>
      <dc:date>2020-10-29T09:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181408#M1735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jocelyn&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't manage to get ADMA working on the SDIO. The problem that I had was that I was getting data from the chip (visible with logic analyser) but the ADMA2 was giving an error that its buffer descriptor was invalid (DMA error).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Its buffer descriptor is very simple and I didn't see why it should report that the valid bit is not set (even if I filled the buffer descriptor with 0xffffffff 0xffffffff it reported the same error, even though no bit is a '0'...(?)). Therefore I always used it since then in non-DMA mode.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this a different problem to yours or is it effectively the same?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2011 02:23:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181408#M1735</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2011-11-09T02:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181409#M1736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply,&lt;BR /&gt;&lt;BR /&gt;Yes I have the same error as yours when I use ADMA2. That's really weird because the descriptor seems to be correct. I also tried the simple DMA mode and I have also a DMA error.&lt;BR /&gt;&lt;BR /&gt;Hope that someone will can help us.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Jocelyn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2011 02:31:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181409#M1736</guid>
      <dc:creator>jocelyn_massero</dc:creator>
      <dc:date>2011-11-09T02:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181410#M1737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jocelyn&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I haven't found any examples on this so I am assuming that it doesn't work (rather than invest too much time getting no where). It would ceretainly be good if freescale could add a demonstration in this mode to know that it will be worth making the attempt to overcome difficulties, whereby I would expect that the trick to getting it working will be visible in the example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It may be due to ADMA access rights but I didn't find what may be controlling it - in which case the actual DMA error may be misleading (eg. if the DMA controller can't actually access the buffer descriptor). In other DMA cases it sometimes occurs that there is a problem with access rights but I have otherwise always found that the DMA error made this fairly clear....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2011 04:43:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181410#M1737</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2011-11-09T04:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181411#M1738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try to desactivate the MTU protection on the kinetis, that solved my problem. Now the DMA can access to the memory.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jocelyn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Nov 2011 02:48:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181411#M1738</guid>
      <dc:creator>jocelyn_massero</dc:creator>
      <dc:date>2011-11-16T02:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181412#M1739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you send you code for me to test on my SDIO WIFI card?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2012 12:23:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181412#M1739</guid>
      <dc:creator>T_M_F</dc:creator>
      <dc:date>2012-01-05T12:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181413#M1740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you send me your code? If you can tell me the speed of your SDIO, that will be great.&lt;/P&gt;&lt;P&gt;email me jack@engtech.ca&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2012 21:13:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181413#M1740</guid>
      <dc:creator>Muffinman</dc:creator>
      <dc:date>2012-01-24T21:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181414#M1741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you send me your code? If you can tell me the speed of your SDIO, that will be great.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2012 21:14:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181414#M1741</guid>
      <dc:creator>Muffinman</dc:creator>
      <dc:date>2012-01-24T21:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181415#M1742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;you are absolutely right, with one mistake.&lt;BR /&gt;&lt;BR /&gt;The name of protection is not MTU, but MPU.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;// Switch off MPU unit&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MPU_CESR &amp;amp;= ~MPU_CESR_VLD_MASK;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gargy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2012 00:27:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181415#M1742</guid>
      <dc:creator>Gargy</dc:creator>
      <dc:date>2012-01-25T00:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181416#M1743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gargy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you test the speed with the DMA foe esdhc 4 bit?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2012 20:40:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181416#M1743</guid>
      <dc:creator>Muffinman</dc:creator>
      <dc:date>2012-01-25T20:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181417#M1744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;not yet. This is my hobby project and I don't have enough time for it :smileysad:.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gargy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2012 20:53:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181417#M1744</guid>
      <dc:creator>Gargy</dc:creator>
      <dc:date>2012-01-25T20:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181418#M1745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gargy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What code are you guys talking about, where can I find it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2012 23:33:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181418#M1745</guid>
      <dc:creator>T_M_F</dc:creator>
      <dc:date>2012-01-25T23:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181419#M1746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I wrote, one pcs of driver myself, but still there is any bug. When I stepping the code, it runs but if I run the code the MCU broke down. :smileyhappy:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gargy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2012 00:43:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181419#M1746</guid>
      <dc:creator>Gargy</dc:creator>
      <dc:date>2012-01-26T00:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181420#M1747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The naked speed for the 4 bit SDIO for 100M Hz K60 could be around 40-50M bps. I didn't know if your driver is ready for so fast buffer transceiving? Could you send me the driver for my reference. My email is in theis topic.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jan 2012 03:58:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181420#M1747</guid>
      <dc:creator>Muffinman</dc:creator>
      <dc:date>2012-01-27T03:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181421#M1748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;maybe I just have the developing version (not finished), but why not. More eyes, more see.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will send it to you when I will be on my home PC.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gargy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jan 2012 13:47:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181421#M1748</guid>
      <dc:creator>Gargy</dc:creator>
      <dc:date>2012-01-27T13:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181422#M1749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can attach it here? i thought.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what about SDHC with normal SDHC card and not SDIO?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jan 2012 16:08:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181422#M1749</guid>
      <dc:creator>T_M_F</dc:creator>
      <dc:date>2012-01-27T16:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181423#M1750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't receive the code, would you like send again?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2012 04:49:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181423#M1750</guid>
      <dc:creator>Muffinman</dc:creator>
      <dc:date>2012-02-01T04:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181424#M1751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;you can't received anything, because I didn't sent you email. Give me few days (up to weekend). I have at the moemnt something function but I want to clear up little bit source code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please be more patient.&lt;BR /&gt;&lt;BR /&gt;I looks that it will be works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gargy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2012 16:22:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181424#M1751</guid>
      <dc:creator>Gargy</dc:creator>
      <dc:date>2012-02-01T16:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181425#M1752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;here is my testing project for TWR-K60. It runs on mask 0M33Z. I tested it in IAR 6.21.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;So I hope that will help zou, and I also except that zou look inside and all possible bugs or improvements zou are placed on this forum(I'll be more than happy) .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So there is also tested file system FATFS (&lt;A href="http://elm-chan.org/fsw/ff/00index_e.html)." rel="nofollow" target="_blank"&gt;http://elm-chan.org/fsw/ff/00index_e.html).&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The driver is designed just only for SD/SDHC cards.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Enjoy and let me know.&lt;/P&gt;&lt;P&gt;Gargy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 04:33:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181425#M1752</guid>
      <dc:creator>Gargy</dc:creator>
      <dc:date>2012-02-03T04:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: SDHC working with DMA</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181426#M1753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great, Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Feb 2012 22:17:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/SDHC-working-with-DMA/m-p/181426#M1753</guid>
      <dc:creator>Muffinman</dc:creator>
      <dc:date>2012-02-13T22:17:44Z</dc:date>
    </item>
  </channel>
</rss>

