<?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中的主题 spifi file system?</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/spifi-file-system/m-p/590109#M22022</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by charchar on Thu Nov 07 07:49:54 MST 2013&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm looking at implementing a file system on the spifi device on my target.&amp;nbsp; The goal is to be able to mount the file system as a USB mass-storage device to modify files, etc.&amp;nbsp; And to be able to read/write the files locally from the processor side (without the mass-storage mounted.)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Has anyone done anything similar?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks!&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 19:14:51 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T19:14:51Z</dc:date>
    <item>
      <title>spifi file system?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/spifi-file-system/m-p/590109#M22022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by charchar on Thu Nov 07 07:49:54 MST 2013&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm looking at implementing a file system on the spifi device on my target.&amp;nbsp; The goal is to be able to mount the file system as a USB mass-storage device to modify files, etc.&amp;nbsp; And to be able to read/write the files locally from the processor side (without the mass-storage mounted.)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Has anyone done anything similar?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks!&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:14:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/spifi-file-system/m-p/590109#M22022</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: spifi file system?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/spifi-file-system/m-p/590110#M22023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Pacman on Fri Nov 08 02:26:29 MST 2013&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I haven't.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But if you think about it...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You can get SD/MMC USB adapters, which lets you read from SD/MMC cards via the USB on your computer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So in fact, these must be using the exact same file system as the USB-sticks, right ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Alright, SPIFI is a SPI-like protocol and the SD/MMC card is a SPI-like protocol.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There are already a few FAT implementations for SD/MMC.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But of course, if you write your own, you are not limited to FAT. Writing your own could lead to something much more sophisticated than 'just FAT'.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(I'm always in favor of re-inventing the wheel; always! [color=#00f]if noone re-invented the wheel, Richard Stallman would not be able to get to his office at Microsoft in time.[/color])&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:14:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/spifi-file-system/m-p/590110#M22023</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: spifi file system?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/spifi-file-system/m-p/590111#M22024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by charchar on Fri Nov 08 08:40:29 MST 2013&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Yeah, I agree the best approach is to use an implementation that's already out there--- like this guy:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Felm-chan.org%2Ffsw%2Fff%2F00index_e.html" rel="nofollow" target="_blank"&gt;http://elm-chan.org/fsw/ff/00index_e.html&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;mapping it to spifi and then mapping it to USB mass-storage is some work (made easier with the lpcopen code....) &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I really like what nxp has done with the spifi controller--- a filesystem implementation for spifi would be useful--- just thought I'd throw it out there and see if anyone has done before.&amp;nbsp; :)&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:14:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/spifi-file-system/m-p/590111#M22024</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:14:52Z</dc:date>
    </item>
  </channel>
</rss>

