<?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: USB_HID_SET_REPORT_REQUEST does not work correctly in Kinetis Software Development Kit</title>
    <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/USB-HID-SET-REPORT-REQUEST-does-not-work-correctly/m-p/398797#M1379</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Dan, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes, you are right. I tested it on my side with the same result.&lt;/P&gt;&lt;P&gt;Thank you for your report.&lt;/P&gt;&lt;P&gt;I informed our SW team and they have already worked on this bug and in next release it will be fix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thank for your feedback!&lt;/P&gt;&lt;P&gt;Have a great day!&lt;/P&gt;&lt;P&gt;Iva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Jun 2015 08:48:33 GMT</pubDate>
    <dc:creator>ivadorazinova</dc:creator>
    <dc:date>2015-06-17T08:48:33Z</dc:date>
    <item>
      <title>USB_HID_SET_REPORT_REQUEST does not work correctly</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/USB-HID-SET-REPORT-REQUEST-does-not-work-correctly/m-p/398795#M1377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using the latest Freescale Kinetis Software Development Kit (Kinetis SDK 1.2.0), discovered that the &lt;STRONG&gt;USB_HID_SET_REPORT_REQUEST&lt;/STRONG&gt;&lt;BR /&gt; operation in the example application &lt;EM&gt;USB_App_Class_Callback()&lt;/EM&gt; function (see hid_mouse or hid_keyboard demo_apps examples) does not work correctly. When the USB host sends a "&lt;STRONG&gt;Set Report&lt;/STRONG&gt;" request, the "&lt;STRONG&gt;data&lt;/STRONG&gt;" pointer referenced is always a NULL.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Investigating this, I determined that there appears to be a problem with the &lt;EM&gt;USB_Control_Service()&lt;/EM&gt; function in the &lt;STRONG&gt;usb_framework.c&lt;/STRONG&gt; file. In this function, the local "&lt;STRONG&gt;data&lt;/STRONG&gt;" variable is always initialized to NULL and never changed before being passed to a callback function (eventually calling the application's &lt;EM&gt;USB_App_Class_Callback()&lt;/EM&gt; function). I was able to get it to work by adding the following line: (shown in bold)&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="j-rte-table"&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD colspan="1" style=""&gt;&lt;SPAN style="text-decoration: underline;"&gt;Line&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD colspan="1" style=""&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style=""&gt; 448&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD style=""&gt;/* class or vendor request */&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style=""&gt; 449&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD style=""&gt;size = event-&amp;gt;len + USB_SETUP_PKT_SIZE;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style=""&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD style=""&gt;&lt;STRONG&gt;data = event-&amp;gt;buffer_ptr;&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; &lt;/STRONG&gt;&lt;/TD&gt;&lt;TD style=""&gt;&lt;STRONG&gt;// DLK added this bug fix&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style=""&gt; 450&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD style=""&gt;error = usb_fw_ptr-&amp;gt;request_notify_callback(&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Jun 2015 19:30:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/USB-HID-SET-REPORT-REQUEST-does-not-work-correctly/m-p/398795#M1377</guid>
      <dc:creator>dankarm</dc:creator>
      <dc:date>2015-06-13T19:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: USB_HID_SET_REPORT_REQUEST does not work correctly</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/USB-HID-SET-REPORT-REQUEST-does-not-work-correctly/m-p/398796#M1378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Dan K,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for your feedback, I will test it on my side and let you know my results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Iva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2015 12:55:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/USB-HID-SET-REPORT-REQUEST-does-not-work-correctly/m-p/398796#M1378</guid>
      <dc:creator>ivadorazinova</dc:creator>
      <dc:date>2015-06-16T12:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: USB_HID_SET_REPORT_REQUEST does not work correctly</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/USB-HID-SET-REPORT-REQUEST-does-not-work-correctly/m-p/398797#M1379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Dan, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes, you are right. I tested it on my side with the same result.&lt;/P&gt;&lt;P&gt;Thank you for your report.&lt;/P&gt;&lt;P&gt;I informed our SW team and they have already worked on this bug and in next release it will be fix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thank for your feedback!&lt;/P&gt;&lt;P&gt;Have a great day!&lt;/P&gt;&lt;P&gt;Iva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2015 08:48:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/USB-HID-SET-REPORT-REQUEST-does-not-work-correctly/m-p/398797#M1379</guid>
      <dc:creator>ivadorazinova</dc:creator>
      <dc:date>2015-06-17T08:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: USB_HID_SET_REPORT_REQUEST does not work correctly</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/USB-HID-SET-REPORT-REQUEST-does-not-work-correctly/m-p/398798#M1380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dan, your fix is very interresting. I use it in KSDK1.2.0 and KBOOT 1.2.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iva, is it possible to get the official fix ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Nicolas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 09:59:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/USB-HID-SET-REPORT-REQUEST-does-not-work-correctly/m-p/398798#M1380</guid>
      <dc:creator>NicolasP</dc:creator>
      <dc:date>2015-08-25T09:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: USB_HID_SET_REPORT_REQUEST does not work correctly</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/USB-HID-SET-REPORT-REQUEST-does-not-work-correctly/m-p/398799#M1381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG class="font-color-meta"&gt;&lt;SPAN class="replyToName"&gt;Nicolas,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG class="font-color-meta"&gt;&lt;SPAN class="replyToName"&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="replyToName"&gt;yes - it will be fixed in KSDK 1.3. &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="replyToName"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="replyToName"&gt;Have a nice day!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="replyToName"&gt;Iva&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 08:48:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/USB-HID-SET-REPORT-REQUEST-does-not-work-correctly/m-p/398799#M1381</guid>
      <dc:creator>ivadorazinova</dc:creator>
      <dc:date>2015-08-27T08:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: USB_HID_SET_REPORT_REQUEST does not work correctly</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/USB-HID-SET-REPORT-REQUEST-does-not-work-correctly/m-p/398800#M1382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Iva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any schedule for V1.3 release ?&lt;/P&gt;&lt;P&gt;I have other issues with USB HID. Is there a list of fixes in V1.3 ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Nicolas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 15:17:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/USB-HID-SET-REPORT-REQUEST-does-not-work-correctly/m-p/398800#M1382</guid>
      <dc:creator>NicolasP</dc:creator>
      <dc:date>2015-08-27T15:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: USB_HID_SET_REPORT_REQUEST does not work correctly</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/USB-HID-SET-REPORT-REQUEST-does-not-work-correctly/m-p/398801#M1383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nicolas, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For these issues will be KSDK 1.3 Release Note, where you find known issues.&lt;/P&gt;&lt;P&gt;This version will be available with KSDK 1.3, by the end of Sep/beginning of Oct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Iva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2015 11:59:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/USB-HID-SET-REPORT-REQUEST-does-not-work-correctly/m-p/398801#M1383</guid>
      <dc:creator>ivadorazinova</dc:creator>
      <dc:date>2015-09-07T11:59:33Z</dc:date>
    </item>
  </channel>
</rss>

