<?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: [Driver Request] LPC Open 2.02 - Composite Driver CDC and DFU in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Driver-Request-LPC-Open-2-02-Composite-Driver-CDC-and-DFU/m-p/524371#M7007</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by m.yzb on Wed Nov 20 02:23:57 MST 2013&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot for the drivers, everything works now.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 16:51:59 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T16:51:59Z</dc:date>
    <item>
      <title>[Driver Request] LPC Open 2.02 - Composite Driver CDC and DFU</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Driver-Request-LPC-Open-2-02-Composite-Driver-CDC-and-DFU/m-p/524369#M7005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by m.yzb on Mon Nov 18 09:57:11 MST 2013&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to build a project on the LPC 4330 using the new USB Rom examples from LPC Open 2.02. I wanted to use the USBD Rom DFU Composite Project as a basis for my project, however after building and debugging my PC only detects the Mass Storage device and the HID.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I downloaded the Driver Package for the examples that are posted next to the download link for the LPC Open 2.02 however Windows 7 doesn't want to detect a Valid Driver for the DFU and CDC.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;On a side note when running the standart USBD CDC Vcom Project the drivers get installed without a problem and I can establish a Vcom connection and mess around with the terminal.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any Ideas on where to get the missing drivers?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Many thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;~m.yzb&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:51:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Driver-Request-LPC-Open-2-02-Composite-Driver-CDC-and-DFU/m-p/524369#M7005</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: [Driver Request] LPC Open 2.02 - Composite Driver CDC and DFU</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Driver-Request-LPC-Open-2-02-Composite-Driver-CDC-and-DFU/m-p/524370#M7006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by durgesh on Tue Nov 19 16:09:13 MST 2013&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the reminder. The LPCOpen Windows driver package has been updated to include drivers for this example.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; Please get the latest &lt;/SPAN&gt;&lt;A href="http://http://www.lpcware.com/content/nxpfile/lpcopen-software-platform-usbd-library-drivers-windows" rel="nofollow noopener noreferrer" target="_blank"&gt;windows drivers&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp; package.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Note, the DFU interface in this example will in AppIdle state in normal mode. So DFU_DETACH command should be sent to put the device in DfuIdel state. So if you are using open source dfu-util tool (also available in LPCXpresson installs bin director), you need to issue the command in following order. Make a note of "-e" option first time. The test.bin file use below is generated based on lpcopen\applications\lpc18xx_43xx\keil_uvision_projects\hitex_eva_4350\periph\periph_iram_blinky example project.&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;
C:\nxp\LPCXpresso_6.0.2_151\lpcxpresso\bin&amp;gt;dfu-util.exe -e -d 1fc9:0089
dfu-util 0.6

Copyright 2005-2008 Weston Schmidt, Harald Welte and OpenMoko Inc.
Copyright 2010-2012 Tormod Volden and Stefan Schmidt
This program is Free Software and has ABSOLUTELY NO WARRANTY

Filter on vendor = 0x1fc9 product = 0x0089
Opening DFU capable USB device... ID 1fc9:0089
Run-time device DFU version 0100
Claiming USB DFU Runtime Interface...
Determining device status: state = appIDLE, status = 0
Device really in Runtime Mode, send DFU detach request...
Resetting USB...

C:\nxp\LPCXpresso_6.0.2_151\lpcxpresso\bin&amp;gt;dfu-util.exe -d 1fc9:0089 -D ..\..\..\test.bin
dfu-util 0.6

Copyright 2005-2008 Weston Schmidt, Harald Welte and OpenMoko Inc.
Copyright 2010-2012 Tormod Volden and Stefan Schmidt
This program is Free Software and has ABSOLUTELY NO WARRANTY

Filter on vendor = 0x1fc9 product = 0x0089
Opening DFU capable USB device... ID 1fc9:0089
Run-time device DFU version 0100
Found DFU: [1fc9:0089] devnum=0, cfg=1, intf=0, alt=0, name="DFU"
Claiming USB DFU Interface...
Setting Alternate Setting #0 ...
Determining device status: state = dfuIDLE, status = 0
dfuIDLE, continuing
DFU mode device DFU version 0100
Device returned transfer size 2048
No valid DFU suffix signature
Warning: File has no DFU suffix
bytes_per_hash=655
Copying data from PC to DFU device
Starting download: [##################################################] finished
!
state(2) = dfuIDLE, status(0) = No error condition is present
Done!

C:\nxp\LPCXpresso_6.0.2_151\lpcxpresso\bin&amp;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:51:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Driver-Request-LPC-Open-2-02-Composite-Driver-CDC-and-DFU/m-p/524370#M7006</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: [Driver Request] LPC Open 2.02 - Composite Driver CDC and DFU</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Driver-Request-LPC-Open-2-02-Composite-Driver-CDC-and-DFU/m-p/524371#M7007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by m.yzb on Wed Nov 20 02:23:57 MST 2013&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot for the drivers, everything works now.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 16:51:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Driver-Request-LPC-Open-2-02-Composite-Driver-CDC-and-DFU/m-p/524371#M7007</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T16:51:59Z</dc:date>
    </item>
  </channel>
</rss>

