<?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: LPC4088 USB Device Write problem</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847691#M33736</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priyank Bhatt，&lt;BR /&gt;Thank you for your interest in NXP Semiconductor products and for the opportunity to serve you.&lt;BR /&gt;The host is in charge of starting any kind of USB transactions, definitely, it includes IN transaction.&lt;BR /&gt;According to your statement, the LPC4088 doesn't receive IN token to call WriteEP(), so I'd highly recommend you to use the USB protocol tool to visualize the process of USB transferring, it can help us to analyze the issue.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #646464; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jul 2018 01:57:32 GMT</pubDate>
    <dc:creator>jeremyzhou</dc:creator>
    <dc:date>2018-07-25T01:57:32Z</dc:date>
    <item>
      <title>LPC4088 USB Device Write problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847690#M33735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am working on a custom board with LPC4088 on it. I am using USB1 in device mode to communicate with the PC software in order to update firmware.&lt;/P&gt;&lt;P&gt;Initially I was using LPCOpen's &lt;STRONG&gt;usbd_lib_cdc&lt;/STRONG&gt;&amp;nbsp; program to communicate to PC using terminal. So based on CDC code I have now changed it to vendor-specific USB code which is enumerated &amp;amp; recognized by the PC using our driver.&lt;/P&gt;&lt;P&gt;When I try to connect it to PC software it gets connected. The PC software sends the first char to start communication, which is read by the USB device successfully but when I try to write anything back, it fails to do that.&lt;/P&gt;&lt;P&gt;I observed that endpoint IN handler never gets called. And there is no IN packets when I call &lt;STRONG&gt;WriteEP()&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Till now,&lt;/P&gt;&lt;P&gt;1. Tried to writing random packets without using PC software. Not working.&lt;/P&gt;&lt;P&gt;2. setup USB_Configure_Event which is called once on reset.&lt;/P&gt;&lt;P&gt;3. tried to write using &lt;STRONG&gt;TxData &lt;/STRONG&gt; register as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my init code:&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;ErrorCode_t &lt;SPAN class="token function"&gt;hmi_init&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;USBD_HANDLE_T hUsb&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; USB_CORE_DESCS_T &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;pDesc&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; USBD_API_INIT_PARAM_T &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;pUsbParam&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; USBD_API_INIT_PARAM_T hmi_param&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorCode_t ret &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; LPC_OK&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; uint32_t ep_indx&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;


&amp;nbsp;&amp;nbsp;&amp;nbsp; g_HMI&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;hUsb &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; hUsb&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="token function"&gt;memset&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;void&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt;hmi_param&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;sizeof&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;USBD_API_INIT_PARAM_T&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; hmi_param&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mem_base &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; pUsbParam&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;mem_base&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; hmi_param&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mem_size &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; pUsbParam&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;mem_size&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;


&amp;nbsp;&amp;nbsp;&amp;nbsp; g_HMI&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tx_buff &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;uint8_t&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;pUsbParam&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;mem_base&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; hmi_param&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mem_base &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; HMI_RX_BUF_SZ&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; hmi_param&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mem_size &lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; HMI_RX_BUF_SZ&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; g_HMI&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;rx_buff &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;uint8_t&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;pUsbParam&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;mem_base&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; hmi_param&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mem_base &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; HMI_RX_BUF_SZ&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; hmi_param&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mem_size &lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; HMI_RX_BUF_SZ&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;


&amp;nbsp;&amp;nbsp;&amp;nbsp; ep_indx &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;USB_HMI_IN_EP &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0x0F&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ret &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; USBD_API&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;core&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;RegisterEpHandler&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;hUsb&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; ep_indx&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; HMI_bulk_in_handler&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt;g_HMI&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;ret &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; LPC_OK&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;/* register endpoint interrupt handler */&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ep_indx &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;USB_HMI_OUT_EP &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0x0F&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ret &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; USBD_API&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;core&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;RegisterEpHandler&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;hUsb&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; ep_indx&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; HMI_bulk_out_handler&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt;g_HMI&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;


&amp;nbsp;&amp;nbsp;&amp;nbsp; pUsbParam&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;mem_base &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; hmi_param&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mem_base&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; pUsbParam&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;mem_size &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; hmi_param&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mem_size&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;


&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; ret&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;



&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I have seen many post/questions related to this &amp;amp; tried all of them but none worked.&lt;/P&gt;&lt;P&gt;I would appreciate if someone can help me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Priyank.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2018 10:32:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847690#M33735</guid>
      <dc:creator>priyankb</dc:creator>
      <dc:date>2018-07-24T10:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4088 USB Device Write problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847691#M33736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priyank Bhatt，&lt;BR /&gt;Thank you for your interest in NXP Semiconductor products and for the opportunity to serve you.&lt;BR /&gt;The host is in charge of starting any kind of USB transactions, definitely, it includes IN transaction.&lt;BR /&gt;According to your statement, the LPC4088 doesn't receive IN token to call WriteEP(), so I'd highly recommend you to use the USB protocol tool to visualize the process of USB transferring, it can help us to analyze the issue.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #646464; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 01:57:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847691#M33736</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2018-07-25T01:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4088 USB Device Write problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847692#M33737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/jeremyzhou"&gt;jeremyzhou&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;Thank you for your response.&lt;/P&gt;&lt;P&gt;I have seen the waveform using logic analyzer and host is continuously asking for IN packets but receives NAK.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 04:55:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847692#M33737</guid>
      <dc:creator>priyankb</dc:creator>
      <dc:date>2018-07-25T04:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4088 USB Device Write problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847693#M33738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV class=""&gt;&lt;P&gt;Hi &lt;A _jive_internal="true" data-containerid="-1" data-containertype="-1" data-objectid="213424" data-objecttype="3" href="https://community.nxp.com/people/jeremyzhou"&gt;jeremyzhou&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Thank you for your response.&lt;/P&gt;&lt;P&gt;I have seen the waveform using logic analyzer and host is continuously asking for IN packets but receives NAK.&lt;/P&gt;&lt;P&gt;I have checked &lt;STRONG&gt;ReEp &lt;/STRONG&gt;register to see if endpoints are realized, it looks ok. Used event handlers to see for any unexpected event, but none occurred.&lt;/P&gt;&lt;P&gt;Also&amp;nbsp;checked &lt;STRONG&gt;USB_Configure_Event &lt;/STRONG&gt;as suggested in &lt;A href="https://community.nxp.com/thread/419145"&gt;USB_Configure_Event called by USBD_API-&amp;amp;amp;gt;hw-&amp;amp;amp;gt;Init&amp;nbsp;&lt;/A&gt; . It fires once after reset. The endpoint IN interrupt never fires.&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 05:22:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847693#M33738</guid>
      <dc:creator>priyankb</dc:creator>
      <dc:date>2018-07-25T05:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4088 USB Device Write problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847694#M33739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priyank Bhatt,&lt;BR /&gt;In the usbd_lib_cdc demo, it uses the vcom_write and vcom_bread functions to send the data to PC or receive the data from PC. It's very clear and simple, so I'd like to know the code modification work you did and the testing process, it may give me more insight into this weird phenomenon.&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 08:24:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847694#M33739</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2018-07-26T08:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4088 USB Device Write problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847695#M33740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/jeremyzhou"&gt;jeremyzhou&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;I have solved the problem. Changing endpoints worked. I have a doubt about fixed endpoints configuration in the user manual. What does it mean? Does that mean a particular endpoint is used with a specific configuration only?&lt;span class="lia-inline-image-display-wrapper" image-alt="ep.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/66528i8DFECAD4E9AD049A/image-size/large?v=v2&amp;amp;px=999" role="button" title="ep.png" alt="ep.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 08:36:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847695#M33740</guid>
      <dc:creator>priyankb</dc:creator>
      <dc:date>2018-07-26T08:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4088 USB Device Write problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847696#M33741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priyank Bhatt,,&lt;/P&gt;&lt;P&gt;1) Does that mean a particular endpoint is used with a specific configuration only?&lt;/P&gt;&lt;P&gt;-- Yes, it does.&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 09:16:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847696#M33741</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2018-07-26T09:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4088 USB Device Write problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847697#M33742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/jeremyzhou"&gt;jeremyzhou&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;Then how come CDC demo use endpoint 1 with bulk configuration. This is confusing.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="desccdc.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/66525i063F227B0243A91A/image-size/large?v=v2&amp;amp;px=999" role="button" title="desccdc.png" alt="desccdc.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="cdcdesc.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/66526i64067E3AB8939030/image-size/large?v=v2&amp;amp;px=999" role="button" title="cdcdesc.png" alt="cdcdesc.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 09:29:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847697#M33742</guid>
      <dc:creator>priyankb</dc:creator>
      <dc:date>2018-07-26T09:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4088 USB Device Write problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847698#M33743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priyank Bhatt,&lt;BR /&gt;Definitely, it sounds contradictory and I'll reply you later after confirming with AE team.&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2018 07:11:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847698#M33743</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2018-07-30T07:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4088 USB Device Write problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847699#M33744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priyank Bhatt,&lt;/P&gt;&lt;P&gt;After testing and confirming with AE team, it should follow the reference manual.&lt;/P&gt;&lt;P&gt;Hope this is clear.&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2018 08:59:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4088-USB-Device-Write-problem/m-p/847699#M33744</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2018-08-02T08:59:29Z</dc:date>
    </item>
  </channel>
</rss>

