<?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 RTS on USB CDC device in MQX Software Solutions</title>
    <link>https://community.nxp.com/t5/MQX-Software-Solutions/RTS-on-USB-CDC-device/m-p/221420#M5859</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My device acts as a USB CDC device, my system is CW 10.2 and MQX 3.8.1; the communication channel needs a hardware flow control, I need to simulate the RTS signal to the host (and to get the simulated host CTS signal, of course!).&lt;/P&gt;&lt;P&gt;How can I implement this mechanism?&lt;/P&gt;&lt;P&gt;Is a notification event or an application event?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;Teckna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Oct 2012 16:35:04 GMT</pubDate>
    <dc:creator>Teckna</dc:creator>
    <dc:date>2012-10-19T16:35:04Z</dc:date>
    <item>
      <title>RTS on USB CDC device</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/RTS-on-USB-CDC-device/m-p/221420#M5859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My device acts as a USB CDC device, my system is CW 10.2 and MQX 3.8.1; the communication channel needs a hardware flow control, I need to simulate the RTS signal to the host (and to get the simulated host CTS signal, of course!).&lt;/P&gt;&lt;P&gt;How can I implement this mechanism?&lt;/P&gt;&lt;P&gt;Is a notification event or an application event?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;Teckna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2012 16:35:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/RTS-on-USB-CDC-device/m-p/221420#M5859</guid>
      <dc:creator>Teckna</dc:creator>
      <dc:date>2012-10-19T16:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: RTS on USB CDC device</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/RTS-on-USB-CDC-device/m-p/221421#M5860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Teckna,&lt;/P&gt;&lt;P&gt;I'm not USB expert at all (can spell it and plug mouse/keyboard/USB_Stick in).&lt;/P&gt;&lt;P&gt;Have you looked at the MQX example and its _README.pdf?&lt;/P&gt;&lt;P&gt;C:\Freescale\Freescale MQX 3.8b1\usb\device\examples\cdc\virtual_com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Page 6 has:&lt;/P&gt;&lt;P&gt;The USB_Notif_Callback, which is part of the callbacks initialized by &lt;/P&gt;&lt;P&gt;TestApp_Init is a callback function that the CDC class code uses to &lt;/P&gt;&lt;P&gt;signal to the user that a CDC event has happened. The four conditions &lt;/P&gt;&lt;P&gt;it handles are DTE activation and deactivation (for compatibility with &lt;/P&gt;&lt;P&gt;hardware flow control as in traditional UARTs), data received, and send &lt;/P&gt;&lt;P&gt;complete. The DTE conditions set and clear the start_transactions&lt;/P&gt;&lt;P&gt;variable which is tested in receive and send condition checks to make &lt;/P&gt;&lt;P&gt;sure data can be sent or received.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 15:58:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/RTS-on-USB-CDC-device/m-p/221421#M5860</guid>
      <dc:creator>DavidS</dc:creator>
      <dc:date>2012-10-23T15:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: RTS on USB CDC device</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/RTS-on-USB-CDC-device/m-p/221422#M5861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In our case:&lt;/P&gt;&lt;P&gt;PC host == DTE&lt;/P&gt;&lt;P&gt;K60 CDC device == DCE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the MQX USB CDC example, USB_Notif_Callback() shows how K60 DCE can handle CDC activation/deactivation signal from DTE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How about sending CDC activation/deactivation signal from K60 DCE to DTE ? Is there a USB device API to send activation/deactivation signal ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2014 08:37:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/RTS-on-USB-CDC-device/m-p/221422#M5861</guid>
      <dc:creator>richardtseng</dc:creator>
      <dc:date>2014-08-28T08:37:42Z</dc:date>
    </item>
  </channel>
</rss>

