<?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>MQX Software SolutionsのトピックRe: SD Card SPI + MFS?</title>
    <link>https://community.nxp.com/t5/MQX-Software-Solutions/SD-Card-SPI-MFS/m-p/218189#M5642</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you PetrM! I was able to port it over rather easily and succesfully!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Aug 2010 00:18:01 GMT</pubDate>
    <dc:creator>EDesigns</dc:creator>
    <dc:date>2010-08-20T00:18:01Z</dc:date>
    <item>
      <title>SD Card SPI + MFS?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/SD-Card-SPI-MFS/m-p/218184#M5637</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;I'm using the M52259EVB evaluation board and am successfully initializing a microSDHC card with SPI.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to use the MFS driver to read the FAT32 file system contents of the SD card?&lt;/P&gt;&lt;P&gt;I'm trying to open the device that I will be installing the MFS onto but it keeps crashing when i call&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fopen("spi0:", 0)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Aug 2010 01:23:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/SD-Card-SPI-MFS/m-p/218184#M5637</guid>
      <dc:creator>EDesigns</dc:creator>
      <dc:date>2010-08-14T01:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: SD Card SPI + MFS?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/SD-Card-SPI-MFS/m-p/218185#M5638</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;the code is crashing because you spi driver is not prepared cooperate with MFS directly. However you can use SD card driver for this task.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;See SDCARD example in "C:\Program Files\Freescale\Freescale MQX 3.6\mfs\examples\sdcard" and SD card documentation in IO Guide "C:\Program Files\Freescale\Freescale MQX 3.6\doc\mqx\MQXIOUG.pdf" .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you port the example to your system you should be able to access FAT32 on SD card.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Petr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Aug 2010 03:48:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/SD-Card-SPI-MFS/m-p/218185#M5638</guid>
      <dc:creator>PetrL</dc:creator>
      <dc:date>2010-08-14T03:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: SD Card SPI + MFS?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/SD-Card-SPI-MFS/m-p/218186#M5639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PetrL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response. I did look at those SDCard examples and the section in the I/O user guide. However, the SD Card drivers are not compatible with the 52259EVB evaluation board.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having troubles porting it over because the &lt;STRONG&gt;_io_sdcard_install&lt;/STRONG&gt; function uses &lt;STRONG&gt;_io_dev_install_ext&lt;/STRONG&gt; which uses the SD card functions that are not SPI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Aug 2010 01:28:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/SD-Card-SPI-MFS/m-p/218186#M5639</guid>
      <dc:creator>EDesigns</dc:creator>
      <dc:date>2010-08-19T01:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: SD Card SPI + MFS?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/SD-Card-SPI-MFS/m-p/218187#M5640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've attempted to port the code over and I'm still encountering the same problem as I was before.&lt;/P&gt;&lt;P&gt;It keeps crashing on this line:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sdcard_handle = fopen("sdcard:", 0);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm kind of confused on where &lt;STRONG&gt;sdcard:&lt;/STRONG&gt; is coming from. Should it be &lt;STRONG&gt;spi0:&lt;/STRONG&gt; ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Aug 2010 02:09:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/SD-Card-SPI-MFS/m-p/218187#M5640</guid>
      <dc:creator>EDesigns</dc:creator>
      <dc:date>2010-08-19T02:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: SD Card SPI + MFS?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/SD-Card-SPI-MFS/m-p/218188#M5641</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;you need to have a look at BSP of one of the boards, that already supports SDCARD driver, like twrmcf52259 (same processor). There are several files/declarations/initializations that need to be added to m52259evb's BSP - sdcard/sdcard_spi driver, init_sdcard0.c etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PetrM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Aug 2010 20:10:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/SD-Card-SPI-MFS/m-p/218188#M5641</guid>
      <dc:creator>PetrM</dc:creator>
      <dc:date>2010-08-19T20:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: SD Card SPI + MFS?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/SD-Card-SPI-MFS/m-p/218189#M5642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you PetrM! I was able to port it over rather easily and succesfully!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Aug 2010 00:18:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/SD-Card-SPI-MFS/m-p/218189#M5642</guid>
      <dc:creator>EDesigns</dc:creator>
      <dc:date>2010-08-20T00:18:01Z</dc:date>
    </item>
  </channel>
</rss>

