<?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>i.MX RT Crossover MCUsのトピックRe: Problem mounting FAT filesystem using BOARD_SDRAM</title>
    <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1091398#M9596</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi and thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can replicate the 'mount failed' error at will but the root cause is now a different failure to what I was originally seeing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I did was import the sdcard_fatfs_freertos demo app. On the second tab of the import option, I moved the BOARD_SDRAM option to next to top. I also added two build options to initialise the SDRAM. There were&amp;nbsp;XIP_BOOT_HEADER_DCD_ENABLE=1 and&amp;nbsp;SKIP_SYSCLK_INIT. Finally, I changed line 273 of sdcard_fatfs_freertos.c to read&amp;nbsp;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;if (f_mount(&amp;amp;g_fileSystem, driverNumberBuffer, 1U))&lt;/SPAN&gt;, ie change the option flag to 1 at the end to force the mount straight away rather than delay it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I built and ran the demo under the debugger, I got the mount failed error. If I moved the BOARD_SDRAM memory option back to its original place near the bottom, it ran correctly. With the SDRAM setup, the error was in the SD_SelectBusTiming routine in fsl_sd.c. However, with my original test, this function worked and I got a further error in the disc read function as per my original message. I haven't checked this out yet but will if necessary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The original problem came to light when I added the sdcard_fatfs_freertos code to my existing app. I am using a lot of RAM for an OPC UA Server so had to use SDRAM and not SRAM_DTC. I have got around the problem temporarily by changing the declaration of g_filesystem from&amp;nbsp;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;static FATFS g_fileSystem; &lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;to&lt;/SPAN&gt; FATFS *g_fileSystem = (FATFS *) 0x20000000;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt; to force it to use SRAM_DTC memory. This is not ideal but works until I can work out why the SDRAM option fails.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any further advice would be appreciated, thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Jun 2020 19:24:41 GMT</pubDate>
    <dc:creator>jon1</dc:creator>
    <dc:date>2020-06-15T19:24:41Z</dc:date>
    <item>
      <title>Problem mounting FAT filesystem using BOARD_SDRAM</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1091395#M9593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;I am using the RT1020 evaluation board and I am trying to get an SD Card to mount using the following example code from the &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;sdcard_fatfs_freertos&lt;/SPAN&gt; SDK demo :&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-family: 'courier new', courier, monospace;"&gt;if (f_mount(&amp;amp;g_fileSystem, driverNumberBuffer, 1U))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-family: 'courier new', courier, monospace;"&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-family: 'courier new', courier, monospace;"&gt;&amp;nbsp; &amp;nbsp; PRINTF("Mount volume failed.\r\n");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-family: 'courier new', courier, monospace;"&gt;&amp;nbsp; &amp;nbsp; return kStatus_Fail;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-family: 'courier new', courier, monospace;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;If&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;g_fileSystem&lt;/SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;resides in BOARD_SDRAM, the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;f_mount&lt;/SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;fails but if it is in SRAM_DTC, the function works.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;Delving into the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;f_mount&lt;/SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;code, it calls&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-family: 'courier new', courier, monospace;"&gt;find_volume&lt;/SPAN&gt;, which calls&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;check_fs&lt;/SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;which ends up reading sector 0 of the SD card using a call to&amp;nbsp;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;disk_read&lt;/SPAN&gt;(fs-&amp;gt;pdrv, fs-&amp;gt;win, sector, 1).&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;It would appear that reading a disc sector to a buffer (part of the &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;g_fileSystem&lt;/SPAN&gt; structure) which is in BOARD_SDRAM fails but if the buffer is in SRAM_DTC, it works. Some of the sector is read to BOARD_SDRAM but not the full 512 bytes. I don't know the technical reason for the failure but probably a timing issue due to the slower BOARD_SDRAM.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;Does anyone have any ideas&amp;nbsp;for solving this problem ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;Jon&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jun 2020 06:23:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1091395#M9593</guid>
      <dc:creator>jon1</dc:creator>
      <dc:date>2020-06-12T06:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem mounting FAT filesystem using BOARD_SDRAM</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1091396#M9594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #646464; background-color: #ffffff;"&gt;&lt;SPAN&gt;Hi&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A _jive_internal="true" data-content-finding="Community" data-userid="359143" data-username="jon@trajon.co.uk" href="https://community.nxp.com/people/jon@trajon.co.uk" style="color: #3d9ce7; background-color: #ffffff; border: 0px; font-weight: 600; text-decoration: none; font-size: 11.9994px;"&gt;Jon Welch&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thank you for your interest in NXP Semiconductor products and &lt;BR /&gt;for the opportunity to serve you.&lt;BR /&gt;I think I need more information about the phenomenon, whether you can introduce what modification you did about the sdcard_fatfs_freertos demo, then I can replicate this phenomenon on my site and it can help me to figure it out.&lt;BR /&gt;Looking forward to your reply.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2020 03:20:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1091396#M9594</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2020-06-15T03:20:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem mounting FAT filesystem using BOARD_SDRAM</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1091397#M9595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, I would suspect it is because the SDRAM is cached (by default) and DTC isn't.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2020 14:32:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1091397#M9595</guid>
      <dc:creator>jackking</dc:creator>
      <dc:date>2020-06-15T14:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem mounting FAT filesystem using BOARD_SDRAM</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1091398#M9596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi and thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can replicate the 'mount failed' error at will but the root cause is now a different failure to what I was originally seeing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I did was import the sdcard_fatfs_freertos demo app. On the second tab of the import option, I moved the BOARD_SDRAM option to next to top. I also added two build options to initialise the SDRAM. There were&amp;nbsp;XIP_BOOT_HEADER_DCD_ENABLE=1 and&amp;nbsp;SKIP_SYSCLK_INIT. Finally, I changed line 273 of sdcard_fatfs_freertos.c to read&amp;nbsp;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;if (f_mount(&amp;amp;g_fileSystem, driverNumberBuffer, 1U))&lt;/SPAN&gt;, ie change the option flag to 1 at the end to force the mount straight away rather than delay it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I built and ran the demo under the debugger, I got the mount failed error. If I moved the BOARD_SDRAM memory option back to its original place near the bottom, it ran correctly. With the SDRAM setup, the error was in the SD_SelectBusTiming routine in fsl_sd.c. However, with my original test, this function worked and I got a further error in the disc read function as per my original message. I haven't checked this out yet but will if necessary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The original problem came to light when I added the sdcard_fatfs_freertos code to my existing app. I am using a lot of RAM for an OPC UA Server so had to use SDRAM and not SRAM_DTC. I have got around the problem temporarily by changing the declaration of g_filesystem from&amp;nbsp;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;static FATFS g_fileSystem; &lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;to&lt;/SPAN&gt; FATFS *g_fileSystem = (FATFS *) 0x20000000;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt; to force it to use SRAM_DTC memory. This is not ideal but works until I can work out why the SDRAM option fails.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any further advice would be appreciated, thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2020 19:24:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1091398#M9596</guid>
      <dc:creator>jon1</dc:creator>
      <dc:date>2020-06-15T19:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem mounting FAT filesystem using BOARD_SDRAM</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1091399#M9597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="border: 0px; background-color: #ffffff; color: #646464; font-weight: inherit; "&gt;Hi&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;A _jive_internal="true" data-containerid="-1" data-containertype="-1" data-content-finding="Community" data-objectid="359143" data-objecttype="3" href="https://community.nxp.com/people/jon@trajon.co.uk" style="color: #3d9ce7; background-color: #ffffff; border: 0px; font-weight: 600; font-size: 11.9994px; padding: 1px 0px 1px calc(12px + 0.35ex);"&gt;Jon Welch&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;BR /&gt;I'd like to show the testing I did.&lt;BR /&gt;1) Enable DCD: adding XIP_BOOT_HEADER_DCD_ENABLE=1 and SKIP_SYSCLK_INI macros, in further, move up the BOARD_SDRAM and NCACHE_REGION, as below shows.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/112952i4DF32206B8DAC54C/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;BR /&gt;2) Place the g_fileSystem and g_fileSystem in the DTCM area.&lt;BR /&gt;&lt;STRONG&gt;__DATA(RAM3) static FATFS g_fileSystem; /* File system object */&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;__DATA(RAM3) static FIL g_fileObject; /* File object */&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;After doing the above work, I find that the demo will be stuck in the f_mkfs as below shows.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/112953i2819CC9261F2B74B/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Now I'm still working on it.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2020 08:50:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1091399#M9597</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2020-06-16T08:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem mounting FAT filesystem using BOARD_SDRAM</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1091400#M9598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #646464; background-color: #ffffff; border: 0px; font-weight: inherit;"&gt;Hi&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;A _jive_internal="true" data-containerid="-1" data-containertype="-1" data-content-finding="Community" data-objectid="359143" data-objecttype="3" href="https://community.nxp.com/people/jon@trajon.co.uk" style="color: #3d9ce7; background-color: #ffffff; border: 0px; font-weight: 600; font-size: 11.9994px; padding: 1px 0px 1px calc(12px + 0.35ex);"&gt;Jon Welch&lt;/A&gt;&lt;/P&gt;&lt;P&gt;After further testing, I find it should disable D-cache in addition above two modifications, after that the sdcard_fatfs_freertos can work now, however, its performance obvious is lower than the original version.&lt;BR /&gt;To disable the D-cache feature, just comment out the SCB_EnableDCache() function in the BOARD_ConfigMPU(void) function, as the below shows.&lt;BR /&gt; &lt;STRONG&gt;/* Enable I cache and D cache */&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; //SCB_EnableDCache();&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; SCB_EnableICache();&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2020 10:29:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1091400#M9598</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2020-06-16T10:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem mounting FAT filesystem using BOARD_SDRAM</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1091401#M9599</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;Many thanks for your prompt reply. Your suggestion to disable the DCache has solved my problem and I can now read/write to my SDCARD using BOARD_SDRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again, very much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2020 11:16:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1091401#M9599</guid>
      <dc:creator>jon1</dc:creator>
      <dc:date>2020-06-16T11:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem mounting FAT filesystem using BOARD_SDRAM</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1186176#M11343</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also for me&amp;nbsp;&lt;SPAN&gt;disable D-cache&amp;nbsp;works for me also, but I don't understand why.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Could you please explain more where the isssue comes from?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm also using SDRAM and SD card together.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 17:24:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/Problem-mounting-FAT-filesystem-using-BOARD-SDRAM/m-p/1186176#M11343</guid>
      <dc:creator>Alberto_isorna</dc:creator>
      <dc:date>2020-11-19T17:24:05Z</dc:date>
    </item>
  </channel>
</rss>

