<?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>LPC MicrocontrollersのトピックRe: Mass Storage Device (MSD) with external SPI flash sst25vf064c ussing LPC1769</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524299#M6935</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by TheFallGuy on Thu Jan 29 10:18:37 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;As it says on the nxpusblib download page&lt;/SPAN&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;The nxpUSBlib software package is now obsoleted by the new LPCOpen Platform which can be found here.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 16:48:49 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T16:48:49Z</dc:date>
    <item>
      <title>Mass Storage Device (MSD) with external SPI flash sst25vf064c ussing LPC1769</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524289#M6925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by javos on Thu Oct 04 08:30:54 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi everybody!!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am working on a hand-held device, it will be a dataloger. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;My idea, is to download the data through USB. So my device will be a mass storage device. (I am using an external SPI flash 8MB sst25vc064c).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I could enumerate and read every file created. But when I try to write some file into the mass storage (SPI flash) the library stays in an infinite loop "while(!Endpoint_IsReadWriteAllowed());", This is a fragment of the code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;//From SCSI_Command_ReadWrite_10 function&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;for(i=0;i&amp;lt;TotalBlocks;i++)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; while(!Endpoint_IsReadWriteAllowed());&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Endpoint_Read_Stream_LE(buffer,VIRTUAL_MEMORY_BLOCK_SIZE,NULL);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Endpoint_ClearOUT();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; f25vf064c_wr_page512((BlockAddress+i),buffer);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; //MassStorage_Write((BlockAddress+i)*VIRTUAL_MEMORY_BLOCK_SIZE,buffer, VIRTUAL_MEMORY_BLOCK_SIZE);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know that the problem is becouse the function f25vf064c_wr_page512() take some time... So, how can I solve this issue? is it possible to use this SPI flash?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best Regads!!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:48:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524289#M6925</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Storage Device (MSD) with external SPI flash sst25vf064c ussing LPC1769</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524290#M6926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by javos on Thu Oct 04 12:22:18 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I found that even with an SD card I can't write files, I only can read, but when a write the library enter in the same infinite loop. This time the code is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;//From SCSI_Command_ReadWrite_10 function&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;for(i=0;i&amp;lt;TotalBlocks;i++)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; while(!Endpoint_IsReadWriteAllowed());&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Endpoint_Read_Stream_LE(buffer,VIRTUAL_MEMORY_BLOCK_SIZE,NULL);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Endpoint_ClearOUT();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; disk_write((BlockAddress+i),buffer,1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //MassStorage_Write((BlockAddress+i)*VIRTUAL_MEMORY_BLOCK_SIZE,buffer, VIRTUAL_MEMORY_BLOCK_SIZE);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am really sure that the function disk_write() work properly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does the library really support MSD for external FLASH?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:48:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524290#M6926</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Storage Device (MSD) with external SPI flash sst25vf064c ussing LPC1769</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524291#M6927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by nxpUSBlib team on Mon Nov 26 12:35:47 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;The MSC device example in the library reads/writes 512 byte sectors to RAM. It is up to you to provide the code that accesses your particular type of storage medium.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In v0.97 of the library there is example code in the BSP file for Hitex boards (\libraries\BSP\HITEX\bsp_HITEX.c) that uses SPI flash as the storage medium. Perhaps you can use this code as a starting point for your application.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I suggest that you add your platform specific code to the functions in the bsp files rather than in scsi.c. For example, you might consider adding the call to disk_write() inside of MassStorage_Write().&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:48:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524291#M6927</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Storage Device (MSD) with external SPI flash sst25vf064c ussing LPC1769</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524292#M6928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by danhauck on Sun Feb 17 23:55:22 MST 2013&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've the same problem. Any solutions?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Daniel&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:48:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524292#M6928</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Storage Device (MSD) with external SPI flash sst25vf064c ussing LPC1769</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524293#M6929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by haricharan on Tue Sep 03 23:19:03 MST 2013&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi everybody!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;My application is also a data logger, i would like to interface lpc 1227 with external ic SST25VF064C&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I could able to write any data in to it using SPI. Can any one help me regarding this.......... &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:48:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524293#M6929</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Storage Device (MSD) with external SPI flash sst25vf064c ussing LPC1769</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524294#M6930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Tsuneo on Wed Sep 04 07:54:11 MST 2013&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;I could able to write any data in to it using SPI.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you mean, you want to drive the SST25VF064C over SPI?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The chip manufacturer (moved to Microchip from SST) opens this reference code on their product page.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;SST25VF064C_Driver&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%2Fww1.microchip.com%2Fdownloads%2Fen%2FDeviceDoc%2FSST25VF064C.txt" rel="nofollow" target="_blank"&gt;http://ww1.microchip.com/downloads/en/DeviceDoc/SST25VF064C.txt&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Above source code does bit-banging SPI, instead of SPI peripheral.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But you'll easily modify it for a SPI peripheral&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyway, why are you asking this question on USB forum?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Tsuneo&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:48:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524294#M6930</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Storage Device (MSD) with external SPI flash sst25vf064c ussing LPC1769</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524295#M6931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Gonzalo_Sipel on Wed Dec 31 05:10:01 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have the same trouble, I can&amp;nbsp; read my SD card without problem but when I try to write&amp;nbsp; the library goes into an infinity loop. I'm using a NXP1788 microcontroller.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Has somebody been able to make it work ok?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;uint8_t Endpoint_Read_Stream_LE(uint8_t corenum,
void *const Buffer,
uint16_t Length,
uint16_t *const BytesProcessed)
{
uint16_t i;
if (endpointselected[corenum] == ENDPOINT_CONTROLEP) {
if (usb_data_buffer_size[corenum] == 0) {
return ENDPOINT_RWSTREAM_IncompleteTransfer;
}
}
else if (usb_data_buffer_OUT_size[corenum] == 0)&amp;nbsp;&amp;nbsp;&amp;nbsp; {
return ENDPOINT_RWSTREAM_IncompleteTransfer;
}

for (i = 0; i &amp;lt; Length; i++) {
#if defined(__LPC175X_6X__) || defined(__LPC177X_8X__) || defined(__LPC407X_8X__)
if (endpointselected[corenum] != ENDPOINT_CONTROLEP) {
[color=#c33]&lt;STRONG&gt;//HERE IS THE PROBLEM, WHILE LOOP NEVER ENDS&lt;/STRONG&gt;
while (usb_data_buffer_OUT_size[corenum] == 0);/* Current Fix for LPC17xx, havent checked for others */[/color]

}
#endif
((uint8_t *) Buffer)&lt;I&gt; = Endpoint_Read_8(corenum);
}
return ENDPOINT_RWSTREAM_NoError;
}&lt;/I&gt;&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:48:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524295#M6931</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Storage Device (MSD) with external SPI flash sst25vf064c ussing LPC1769</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524296#M6932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Gonzalo_Sipel on Thu Jan 29 08:09:36 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi everyone&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I've been able to write my sd. I had to make some modifications to usblibrary.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;I post this here &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.lpcware.com%2Fcontent%2Fforum%2Fsample-code-lpc1347-and-usb-msd-sd-card%23comment-1143210" rel="nofollow" target="_blank"&gt;http://www.lpcware.com/content/forum/sample-code-lpc1347-and-usb-msd-sd-card#comment-1143210&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:48:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524296#M6932</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Storage Device (MSD) with external SPI flash sst25vf064c ussing LPC1769</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524297#M6933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by javos on Thu Jan 29 08:47:30 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you Gonza!!!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I had used another usb lib for MSD.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I will take a look and try to implement these patches.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards!!!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:48:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524297#M6933</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Storage Device (MSD) with external SPI flash sst25vf064c ussing LPC1769</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524298#M6934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Gonzalo_Sipel on Thu Jan 29 09:52:31 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Javos&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Does the usb lib that you have used work ok?? is it from NXP? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Although I made it can work ok I still have some doubts about if I will use nxpusblib or not.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:48:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524298#M6934</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Storage Device (MSD) with external SPI flash sst25vf064c ussing LPC1769</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524299#M6935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by TheFallGuy on Thu Jan 29 10:18:37 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;As it says on the nxpusblib download page&lt;/SPAN&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;The nxpUSBlib software package is now obsoleted by the new LPCOpen Platform which can be found here.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:48:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524299#M6935</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Storage Device (MSD) with external SPI flash sst25vf064c ussing LPC1769</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524300#M6936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Gonzalo_Sipel on Thu Jan 29 10:31:42 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;TheFallGuy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I've seen that and I know that nxpUSBlib is obsoleted but I saw the code of the new library and it's the same that before (with the same bugs!!) &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:48:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524300#M6936</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Storage Device (MSD) with external SPI flash sst25vf064c ussing LPC1769</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524301#M6937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a mass storage class device driver for LPC17xx in the lpcopen 2 lib? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Oct 2019 21:14:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Mass-Storage-Device-MSD-with-external-SPI-flash-sst25vf064c/m-p/524301#M6937</guid>
      <dc:creator>froux</dc:creator>
      <dc:date>2019-10-16T21:14:49Z</dc:date>
    </item>
  </channel>
</rss>

