<?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: FR_NO_FILESYSTEM error on FAFTS working SD card FAT32 with MCI interface on LPC1788 in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522695#M5331</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm having this issue too. What was the solution?!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Apr 2019 20:03:59 GMT</pubDate>
    <dc:creator>mspenard603</dc:creator>
    <dc:date>2019-04-29T20:03:59Z</dc:date>
    <item>
      <title>FR_NO_FILESYSTEM error on FAFTS working SD card FAT32 with MCI interface on LPC1788</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522689#M5325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by sipel_tp on Thu Aug 22 08:54:00 MST 2013&lt;/STRONG&gt;&lt;BR /&gt;&lt;I&gt;&lt;I&gt;&lt;STRONG&gt;&lt;BR /&gt;Hello everybody, &lt;BR /&gt;&lt;BR /&gt;I've tried to inicialize a SD card using the elm-chan.org FATFS library with a LPC1788 and the MCI interface.&lt;BR /&gt;&lt;BR /&gt;I manage to recognize the card but I can't make the library work.&lt;BR /&gt;&lt;BR /&gt;I've tried to inicialize a SD card like I show you right here but f_open keeps me throwing FR_NO_FILESYSTEM:&lt;BR /&gt;&lt;/STRONG&gt;&lt;/I&gt;&lt;/I&gt;&lt;BR /&gt;&lt;SPAN&gt;---------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;en_Mci_CardType cardType;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;uint32_t i,j;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;BYTE buffer[64];&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FRESULT result;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;static FATFS fs;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FIL objectFIL;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;memset(buffer, 0, 64);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;disk_initialize(0);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;result = f_mount(0, &amp;amp;fs);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;cardType = MCI_GetCardType();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;result = f_open(&amp;amp;objectFIL, "0:SDCARD/archive1.txt", FA_OPEN_EXISTING |FA_READ);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-----------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Here is the part of the code inside f_open where it makes that:&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;----------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;fmt = check_fs(fs, bsect = 0);/* Check sector 0 as an SFD format */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if (fmt == 1) {/* Not an FAT boot record, it may be patitioned */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Check a partition listed in top of the partition table */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;tbl = &amp;amp;fs-&amp;gt;win[MBR_Table + LD2PT(vol) * 16];/* Partition table */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if (tbl[4]) {/* Is the partition existing? */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;bsect = LD_DWORD(&amp;amp;tbl[8]);/* Partition offset in LBA */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[color=#f00]fmt = check_fs(fs, bsect);/* Check the partition */[/color]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if (fmt == 3) return FR_DISK_ERR;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[color=#00c]if (fmt || LD_WORD(fs-&amp;gt;win+BPB_BytsPerSec) != SS(fs))/* No valid FAT patition is found */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;return FR_NO_FILESYSTEM;[/color]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;----------------------------------------------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;The line in red returns me fmt=2 so later in the blue line it finds that the partition is not valid.&lt;BR /&gt;&lt;BR /&gt;checl_fs is in here:&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;--------------------------------------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;static&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;BYTE check_fs (/* 0:The FAT boot record, 1:Valid boot record but not an FAT, 2:Not a boot record, 3:Error */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FATFS *fs,/* File system object */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DWORD sect/* Sector# (lba) to check if it is an FAT boot record or not */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if (disk_read(fs-&amp;gt;drive, fs-&amp;gt;win, sect, 1) != RES_OK)/* Load boot record */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;return 3;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if (LD_WORD(&amp;amp;fs-&amp;gt;win[BS_55AA]) != 0xAA55)/* Check record signature (always placed at offset 510 even if the sector size is &amp;gt;512) */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;return 2;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if ((LD_DWORD(&amp;amp;fs-&amp;gt;win[BS_FilSysType]) &amp;amp; 0xFFFFFF) == 0x544146)/* Check "FAT" string */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;return 0;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if ((LD_DWORD(&amp;amp;fs-&amp;gt;win[BS_FilSysType32]) &amp;amp; 0xFFFFFF) == 0x544146)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;return 0;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;return 1;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;--------------------------------------------------------------------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;BR /&gt;I would extremely apreciate any kind of help,&lt;BR /&gt;&lt;BR /&gt;Thank you very much !&lt;/STRONG&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:41:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522689#M5325</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: FR_NO_FILESYSTEM error on FAFTS working SD card FAT32 with MCI interface on LPC1788</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522690#M5326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by f_roozdar on Fri Jan 24 10:52:52 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What is the output of disk_initialize() function?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:41:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522690#M5326</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: FR_NO_FILESYSTEM error on FAFTS working SD card FAT32 with MCI interface on LPC1788</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522691#M5327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by nigude on Sun Aug 31 12:12:31 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I am facing exactly same issue while working on LPC2478. Any help ? The Disk initialize function works well.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:41:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522691#M5327</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: FR_NO_FILESYSTEM error on FAFTS working SD card FAT32 with MCI interface on LPC1788</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522692#M5328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by siangming on Mon Mar 09 23:03:28 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i am also using this FATFs library on my LPC11u37H via the SPI interface.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;the disk_initialize() function is ok also... able to detect SD card ver 2.. Communicating with the sdcard also seems ok, with the commands (reset, read etc) all going to the card and the card responding correctly (R1 responses and able to read data from card..)..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When i try to f_mount and f_open the card, i get a FR_NO_FILESYSTEM return.. and it is exactly the same problem with threadstart above where:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;........................&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the part of the code inside f_open where it makes that:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;----------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;fmt = check_fs(fs, bsect = 0);/* Check sector 0 as an SFD format */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if (fmt == 1) {/* Not an FAT boot record, it may be patitioned */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Check a partition listed in top of the partition table */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;tbl = &amp;amp;fs-&amp;gt;win[MBR_Table + LD2PT(vol) * 16];/* Partition table */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if (tbl[4]) {/* Is the partition existing? */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;bsect = LD_DWORD(&amp;amp;tbl[8]);/* Partition offset in LBA */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[color=#f03]fmt = check_fs(fs, bsect);/* Check the partition */[/color]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if (fmt == 3) return FR_DISK_ERR;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[color=#03f]if (fmt || LD_WORD(fs-&amp;gt;win+BPB_BytsPerSec) != SS(fs))/* No valid FAT patition is found */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;return FR_NO_FILESYSTEM;[/color]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;----------------------------------------------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The line in red returns me fmt=2 so later in the blue line it finds that the partition is not valid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;checl_fs is in here:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;--------------------------------------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;static&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;BYTE check_fs (/* 0:The FAT boot record, 1:Valid boot record but not an FAT, 2:Not a boot record, 3:Error */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FATFS *fs,/* File system object */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DWORD sect/* Sector# (lba) to check if it is an FAT boot record or not */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if (disk_read(fs-&amp;gt;drive, fs-&amp;gt;win, sect, 1) != RES_OK)/* Load boot record */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;return 3;&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;I&gt;if (LD_WORD(&amp;amp;fs-&amp;gt;win[BS_55AA]) != 0xAA55)/* Check record signature (always placed at offset 510 even if the sector size is &amp;gt;512) */&lt;BR /&gt;return 2;&lt;/I&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if ((LD_DWORD(&amp;amp;fs-&amp;gt;win[BS_FilSysType]) &amp;amp; 0xFFFFFF) == 0x544146)/* Check "FAT" string */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;return 0;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if ((LD_DWORD(&amp;amp;fs-&amp;gt;win[BS_FilSysType32]) &amp;amp; 0xFFFFFF) == 0x544146)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;return 0;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;return 1;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;--------------------------------------------------------------------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;.......................&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;the return of 2 is the result of above BOLD statement where the record signature (0xAA55) is not found... &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i formatted my sdcard but i got the same result...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyone can help? i do not have a second card to try out...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:41:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522692#M5328</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: FR_NO_FILESYSTEM error on FAFTS working SD card FAT32 with MCI interface on LPC1788</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522693#M5329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MikeSimmonds on Tue Mar 10 10:46:14 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;To all of you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can your windoze or linucks boxes read the card (via a card reader adapter)?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Maybe the card really is not formatted properly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Apart from that, I know sod all about SD cards.&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 16:41:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522693#M5329</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: FR_NO_FILESYSTEM error on FAFTS working SD card FAT32 with MCI interface on LPC1788</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522694#M5330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Was this problem resolved? I am facing the same issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2018 16:43:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522694#M5330</guid>
      <dc:creator>puddletowntom</dc:creator>
      <dc:date>2018-05-24T16:43:18Z</dc:date>
    </item>
    <item>
      <title>Re: FR_NO_FILESYSTEM error on FAFTS working SD card FAT32 with MCI interface on LPC1788</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522695#M5331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm having this issue too. What was the solution?!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Apr 2019 20:03:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522695#M5331</guid>
      <dc:creator>mspenard603</dc:creator>
      <dc:date>2019-04-29T20:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: FR_NO_FILESYSTEM error on FAFTS working SD card FAT32 with MCI interface on LPC1788</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522696#M5332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;I'm having this issue too.My&amp;nbsp;&lt;SPAN&gt;solution is:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;formatted my sdcard ，File system set as FAT32,Allocation unit size set as default，and it is well。&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="f_mount error.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/90165i3F6B2FF3313EAFE4/image-size/large?v=v2&amp;amp;px=999" role="button" title="f_mount error.png" alt="f_mount error.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2020 05:35:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/FR-NO-FILESYSTEM-error-on-FAFTS-working-SD-card-FAT32-with-MCI/m-p/522696#M5332</guid>
      <dc:creator>lonlypan</dc:creator>
      <dc:date>2020-02-25T05:35:09Z</dc:date>
    </item>
  </channel>
</rss>

