<?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>LPCXpresso IDEのトピックRe: LPCXpresso LPC1769 USBCDC example</title>
    <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543431#M8239</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by ndjekic on Wed May 25 06:29:11 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hey,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does any1 know , how can I send data from PC to LPC1769 wiht USB cable. I have USB CDC lib, and I figure out how to send from controller to PC some value, but now I want to send something from PC to controller. Does any1 have example for this or anything? Anything that is helpful is welcome.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 21:59:26 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T21:59:26Z</dc:date>
    <item>
      <title>LPCXpresso LPC1769 USBCDC example</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543428#M8236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by ernesto1960 on Fri Jan 17 14:26:35 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;-Using the lpc1769 expresso board and having problems with the VCOMDEMO.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-Have connected the D+ D- gnd and Vbus to the USB cable ,powering the expresso board thru the LPCLink usb port.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-Windows is not recognizing the usb device after adding the inf file provided in the vcomdemo src directory.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Are my connections ok ? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What's is the best example to test the USB CDC?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;EB&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 21:59:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543428#M8236</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T21:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso LPC1769 USBCDC example</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543429#M8237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by serge on Mon Jan 20 05:10:33 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you activate P2.9 (USB connect)? Because without a pullup on D+ the pc will not recognize your USB connection. D+ should be pulled high when connecting if you want the pc to enumerate the USB connection.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 21:59:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543429#M8237</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T21:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso LPC1769 USBCDC example</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543430#M8238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by mister_T on Mon May 23 10:31:15 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I can confirm that this fixes it. Change function Board_USBD_Init() in board.c. Only new line is the one commented as USB CONNECT. New function is as follows:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;void Board_USBD_Init(uint32_t port)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;/* VBUS is not connected on the NXP LPCXpresso LPC1769, so leave the pin at default setting. */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;/*Chip_IOCON_PinMux(LPC_IOCON, 1, 30, IOCON_MODE_INACT, IOCON_FUNC2);*/ /* USB VBUS */&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_IOCON_PinMux(LPC_IOCON, 2, 9, IOCON_MODE_INACT, IOCON_FUNC1); //USB connect&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_IOCON_PinMux(LPC_IOCON, 0, 29, IOCON_MODE_INACT, IOCON_FUNC1);/* P0.29 D1+, P0.30 D1- */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_IOCON_PinMux(LPC_IOCON, 0, 30, IOCON_MODE_INACT, IOCON_FUNC1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_USB-&amp;gt;USBClkCtrl = 0x12;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Dev, AHB clock enable */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;while ((LPC_USB-&amp;gt;USBClkSt &amp;amp; 0x12) != 0x12); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 21:59:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543430#M8238</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T21:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso LPC1769 USBCDC example</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543431#M8239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by ndjekic on Wed May 25 06:29:11 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hey,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does any1 know , how can I send data from PC to LPC1769 wiht USB cable. I have USB CDC lib, and I figure out how to send from controller to PC some value, but now I want to send something from PC to controller. Does any1 have example for this or anything? Anything that is helpful is welcome.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 21:59:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543431#M8239</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T21:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso LPC1769 USBCDC example</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543432#M8240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by R2D2 on Thu May 26 00:42:10 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: ndjekic&lt;/STRONG&gt;&lt;BR /&gt;Anything that is helpful is welcome.&lt;BR /&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So what's wrong with usbd_lib_cdc&amp;nbsp; :quest:&amp;nbsp; :~&amp;nbsp; :O&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;Virtual Comm port example&lt;BR /&gt;&lt;BR /&gt;Example description&lt;BR /&gt;The example shows how to us USBD LIB stack to creates a virtual comm port.&lt;BR /&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 21:59:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543432#M8240</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T21:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso LPC1769 USBCDC example</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543433#M8241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by ndjekic on Thu May 26 01:01:03 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I can't figure out which functions are used to send chars from PC to LPC1769. I'm trying to figure it out. &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 21:59:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543433#M8241</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T21:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso LPC1769 USBCDC example</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543434#M8242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by R2D2 on Thu May 26 04:28:02 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: ndjekic&lt;/STRONG&gt;&lt;BR /&gt;I can't figure out which functions are used to send chars from PC to LPC1769. I'm trying to figure it out.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; :quest: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This sample is the LPC176x code, so obviously you need a terminal program for your PC to open the COM port and receive / transmit data&amp;nbsp; :O &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Something like TeraTerm... &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 21:59:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543434#M8242</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T21:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso LPC1769 USBCDC example</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543435#M8243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by ndjekic on Fri May 27 04:21:59 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for answering, but I found problem. I'm using PuTTy tel, and there was problem with Putty. When I wanted to send something, it just overwritten current value. I didn't notice that local echo function was on auto scale, on PuTTy, so that made most of problems. But thank you one more time, this post generally was really helpful.&amp;nbsp; :) &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 21:59:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-LPC1769-USBCDC-example/m-p/543435#M8243</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T21:59:29Z</dc:date>
    </item>
  </channel>
</rss>

