<?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: FRDM-K28F USB mass storage controller example application - cannot format in MCUXpresso SDK</title>
    <link>https://community.nxp.com/t5/MCUXpresso-SDK/FRDM-K28F-USB-mass-storage-controller-example-application-cannot/m-p/774548#M804</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been doing something very similar. I am using MCUXpresso 10.0.2. on OSX. The problem I found with the frdmk28f_usb_examples_usb_device_msc_ramdisk_bm example is that the disk created in the example is simply too small to hold a filesystem. If you go into disc.h and change the size like this:&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;#define&lt;/SPAN&gt; TOTAL_LOGICAL_ADDRESS_BLOCKS_NORMAL (240U)&lt;/P&gt;&lt;P class=""&gt;It then gives you a 120k byte disk which just about works (at least for a Mac file system).&lt;/P&gt;&lt;P class=""&gt;&lt;/P&gt;&lt;P class=""&gt;I have then moved on to using SDRAM but so far have found that I cant make the USB dump directly into SDRAM. It immediately crashes, I do not yet know why. My current working scheme is based on&amp;nbsp; frdmk28f_usb_examples_usb_device_msc_sdcard_freertos with the calls to write to the SDCARD replaces with memcpy. I'd much rather get the data going direct to DDR but at the moment that doesn't work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Nov 2017 10:48:24 GMT</pubDate>
    <dc:creator>andrewfisher</dc:creator>
    <dc:date>2017-11-23T10:48:24Z</dc:date>
    <item>
      <title>FRDM-K28F USB mass storage controller example application - cannot format</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/FRDM-K28F-USB-mass-storage-controller-example-application-cannot/m-p/774546#M802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tested the USB mass storage device example application on a brand new FRDM-K28F board using MCUXpresso and the latest SDK download.&lt;/P&gt;&lt;P&gt;When I connect the USB device port on the board into my PC Windows shows it as a drive , but the asks if I want to format the drive.&amp;nbsp; Windows then indicates it cannot format the drive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;has anyone tested the mass storage device usb example for this board and has seen similar or different behavior?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My goal eventually is to use the SDRAM on this board and map it to the USB mass storage driver as a preformatted&amp;nbsp; RAM disk of size 4 to 8 Megabyte, would that be possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2017 07:57:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/FRDM-K28F-USB-mass-storage-controller-example-application-cannot/m-p/774546#M802</guid>
      <dc:creator>aptron_chad</dc:creator>
      <dc:date>2017-11-14T07:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: FRDM-K28F USB mass storage controller example application - cannot format</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/FRDM-K28F-USB-mass-storage-controller-example-application-cannot/m-p/774547#M803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Chad&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;What IDE do you use? If you use MCUXpresso 10.0.x, there may be have some unknow problem on this&amp;nbsp; project. You can update to 10.1.0. I have tested it, and it seems ok. I have also teseted by KEIL and IAR, the project is ok. So if&amp;nbsp; the problem is still there, it may caused by your computer. You can download the firmware and try it on other computer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2017 07:18:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/FRDM-K28F-USB-mass-storage-controller-example-application-cannot/m-p/774547#M803</guid>
      <dc:creator>jingpan</dc:creator>
      <dc:date>2017-11-22T07:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: FRDM-K28F USB mass storage controller example application - cannot format</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/FRDM-K28F-USB-mass-storage-controller-example-application-cannot/m-p/774548#M804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been doing something very similar. I am using MCUXpresso 10.0.2. on OSX. The problem I found with the frdmk28f_usb_examples_usb_device_msc_ramdisk_bm example is that the disk created in the example is simply too small to hold a filesystem. If you go into disc.h and change the size like this:&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;#define&lt;/SPAN&gt; TOTAL_LOGICAL_ADDRESS_BLOCKS_NORMAL (240U)&lt;/P&gt;&lt;P class=""&gt;It then gives you a 120k byte disk which just about works (at least for a Mac file system).&lt;/P&gt;&lt;P class=""&gt;&lt;/P&gt;&lt;P class=""&gt;I have then moved on to using SDRAM but so far have found that I cant make the USB dump directly into SDRAM. It immediately crashes, I do not yet know why. My current working scheme is based on&amp;nbsp; frdmk28f_usb_examples_usb_device_msc_sdcard_freertos with the calls to write to the SDCARD replaces with memcpy. I'd much rather get the data going direct to DDR but at the moment that doesn't work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2017 10:48:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/FRDM-K28F-USB-mass-storage-controller-example-application-cannot/m-p/774548#M804</guid>
      <dc:creator>andrewfisher</dc:creator>
      <dc:date>2017-11-23T10:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: FRDM-K28F USB mass storage controller example application - cannot format</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/FRDM-K28F-USB-mass-storage-controller-example-application-cannot/m-p/774549#M805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jing,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried recompiling using MCUxpresso 10.1.0. and&amp;nbsp;TOTAL_LOGICAL_ADDRESS_BLOCKS_NORMAL (48U) the FRDM-K28F sdk version is 2.2.0 . Windows is unable to format it. i have tried it on 2 machines running windows 10.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2017 12:44:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/FRDM-K28F-USB-mass-storage-controller-example-application-cannot/m-p/774549#M805</guid>
      <dc:creator>aptron_chad</dc:creator>
      <dc:date>2017-11-24T12:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: FRDM-K28F USB mass storage controller example application - cannot format</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/FRDM-K28F-USB-mass-storage-controller-example-application-cannot/m-p/774550#M806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrew,&lt;/P&gt;&lt;P&gt;changing&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;TOTAL_LOGICAL_ADDRESS_BLOCKS_NORMAL&amp;nbsp; to (240U) didn't yield positive results for me though I did see the format disk dialog in File Explorer mention a capacity of 120K once.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Regarding mapping to SDRAM that would be ideal, even better if it could present as a preformatted volume . the question I would be asking is the SDRAM properly setup with the io mapping and the SDRAM itself. There is no driver / demo code that proves SDRAM operation that I can see in sdk2.2.0.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2017 13:03:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/FRDM-K28F-USB-mass-storage-controller-example-application-cannot/m-p/774550#M806</guid>
      <dc:creator>aptron_chad</dc:creator>
      <dc:date>2017-11-24T13:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: FRDM-K28F USB mass storage controller example application - cannot format</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/FRDM-K28F-USB-mass-storage-controller-example-application-cannot/m-p/774551#M807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;correction there is a driver example&amp;nbsp; &amp;nbsp;frdmk28f_driver_examples_sdramc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2017 13:08:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/FRDM-K28F-USB-mass-storage-controller-example-application-cannot/m-p/774551#M807</guid>
      <dc:creator>aptron_chad</dc:creator>
      <dc:date>2017-11-24T13:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: FRDM-K28F USB mass storage controller example application - cannot format</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/FRDM-K28F-USB-mass-storage-controller-example-application-cannot/m-p/1875904#M4786</link>
      <description>&lt;P&gt;Can somebody please post the link to the USB mass storage example?&amp;nbsp; Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2024 04:06:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/FRDM-K28F-USB-mass-storage-controller-example-application-cannot/m-p/1875904#M4786</guid>
      <dc:creator>chewbacca</dc:creator>
      <dc:date>2024-05-28T04:06:19Z</dc:date>
    </item>
  </channel>
</rss>

