<?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: FreeRTOS File System in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/FreeRTOS-File-System/m-p/558198#M15564</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;bump&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 19 Jun 2016 01:00:45 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-19T01:00:45Z</dc:date>
    <item>
      <title>FreeRTOS File System</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/FreeRTOS-File-System/m-p/558196#M15562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by OldisGold on Tue Mar 01 12:26:53 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am using NXP LPC54102 Development board. I am using the FreeRTOS example from lpc open. I need a file system to deal with multiple files.&amp;nbsp; Below is the link for the FreeRTOS + FAT SL version. I would like to know if it's compatible with NXP's LPC54102. Also any supporting documents to integrate this version of FreeRTOS will be useful.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&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%2Fwww.freertos.org%2FFreeRTOS-Plus%2FFreeRTOS_Plus_FAT_SL%2FFreeRTOS_Plus_FAT_SL.shtml" rel="nofollow" target="_blank"&gt;http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT_SL/FreeRTOS_Plus_FAT_SL.shtml&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FreeRTOS+FAT SL tiny footprint DOS compatible FAT file system&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;A href="https://community.nxp.com/www.freertos.org" target="test_blank"&gt;www.freertos.org&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FreeRTOS+sl FAT is a DOS compatible embedded file system that consumes minimal MCU resources&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:58:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/FreeRTOS-File-System/m-p/558196#M15562</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: FreeRTOS File System</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/FreeRTOS-File-System/m-p/558197#M15563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by &lt;A href="https://community.nxp.com/www.FreeRTOS.org" target="test_blank"&gt;www.FreeRTOS.org&lt;/A&gt; on Thu Mar 03 02:38:49 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;File systems themselves are generic components, where the only hardware dependency is in the media driver, so if you provide a media driver they are compatible with any system that has enough power, flash and RAM to run them.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You have an option of using the FatFS code that I think comes with LPCOpen, the FreeRTOS+FAT SL code you reference, or FreeRTOS+FAT (which is different code base the the 'SL' product).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;FreeRTOS+FAT SL is designed to minimise RAM usage, and can work with incredibly little RAM consumption, but as such is then limited in its speed and functionality (just like with a TCP/IP stack, the more RAM you throw at it, the faster it can be, up to a point).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;FreeRTOS+FAT on the other hand has a lot more functionality and is more powerful, but likewise uses more RAM.&amp;nbsp; I believe we had this running on an LPC18xx part using the SD card driver from LPCOpen, but would have to check.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Instruction on creating media drivers for both FreeRTOS file systems are on the web, and examples are provided in the download:&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%2Fwww.freertos.org%2FFreeRTOS-Plus%2FFreeRTOS_Plus_FAT_SL%2FMedia_Driver_API_Functions.shtml" rel="nofollow" target="_blank"&gt;http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT_SL/Media_Driver_API_Functions.shtml&lt;/A&gt;&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%2Fwww.freertos.org%2FFreeRTOS-Plus%2FFreeRTOS_Plus_FAT%2FCreating_a_file_system_media_driver.html" rel="nofollow" target="_blank"&gt;http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Creating_a_file_system_media_driver.html&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Note both products are completely free for LPC users.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:58:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/FreeRTOS-File-System/m-p/558197#M15563</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: FreeRTOS File System</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/FreeRTOS-File-System/m-p/558198#M15564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;bump&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Jun 2016 01:00:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/FreeRTOS-File-System/m-p/558198#M15564</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-19T01:00:45Z</dc:date>
    </item>
  </channel>
</rss>

