<?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: LPC4350 -  Mass Storage - problem with size over 4GB in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4350-Mass-Storage-problem-with-size-over-4GB/m-p/552804#M14464</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Muis on Thu May 08 01:42:25 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I have the same problem with the USB rom driver, however specifying 0xFFFFFFFF for .MemorySize when size &amp;gt; 2GB doesnt fix the problem in my case, Windows still prompts to format the card. Also manually replacing BlockCount and MemorySize with values from a 2 GB card doesnt help. Anyone else have any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 18:35:34 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T18:35:34Z</dc:date>
    <item>
      <title>LPC4350 -  Mass Storage - problem with size over 4GB</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4350-Mass-Storage-problem-with-size-over-4GB/m-p/552802#M14462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Dmitry on Mon Sep 24 04:46:19 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I use HITEX board and example USBDEV_ROM - USB to SD-card bridge (as USB storage).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But in USBD_API (USBD_MSC_INIT_PARAM::MemorySize) I can use size of starage only 4GB(max) - uint32_t.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Show me way for decision this limitation....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:35:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4350-Mass-Storage-problem-with-size-over-4GB/m-p/552802#M14462</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4350 -  Mass Storage - problem with size over 4GB</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4350-Mass-Storage-problem-with-size-over-4GB/m-p/552803#M14463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Dmitry on Mon Sep 24 22:38:00 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I find solution. May be this will usefull for other users.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;capacity = BlockSize * BlockSize&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If&amp;nbsp; capacity &amp;lt; 4GB then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;USBD_MSC_INIT_PARAM_T::MemorySize = capacity&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;USBD_MSC_INIT_PARAM_T::BlockSize = BlockSize&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;USBD_MSC_INIT_PARAM_T::BlockCount = BlockSize&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If capacity over 4GB&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;USBD_MSC_INIT_PARAM_T::MemorySize = 0xFFFFFFFF&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;USBD_MSC_INIT_PARAM_T::BlockSize = BlockSize&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;USBD_MSC_INIT_PARAM_T::BlockCount = BlockSize&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:35:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4350-Mass-Storage-problem-with-size-over-4GB/m-p/552803#M14463</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4350 -  Mass Storage - problem with size over 4GB</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4350-Mass-Storage-problem-with-size-over-4GB/m-p/552804#M14464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Muis on Thu May 08 01:42:25 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I have the same problem with the USB rom driver, however specifying 0xFFFFFFFF for .MemorySize when size &amp;gt; 2GB doesnt fix the problem in my case, Windows still prompts to format the card. Also manually replacing BlockCount and MemorySize with values from a 2 GB card doesnt help. Anyone else have any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:35:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4350-Mass-Storage-problem-with-size-over-4GB/m-p/552804#M14464</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:35:34Z</dc:date>
    </item>
  </channel>
</rss>

