<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Windows  and HID</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/16377/windows-and-hid</link><description>Hi, 
 I use SDK 12 softdevice 130 2.0.1 
 The example project of HID is running on my nrf51822 board, it is pairs with iPhone but the windows 7 write that the HID driver is not install correctly. 
 Any idea? 
 
 Thanks.</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 04 Nov 2016 10:02:30 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/16377/windows-and-hid" /><item><title>RE: Windows  and HID</title><link>https://devzone.nordicsemi.com/thread/62700?ContentTypeID=1</link><pubDate>Fri, 04 Nov 2016 10:02:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e0afacf7-6ef1-4415-926f-1a44b9de3021</guid><dc:creator>Gordon</dc:creator><description>&lt;p&gt;Thanks - will do!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Windows  and HID</title><link>https://devzone.nordicsemi.com/thread/62701?ContentTypeID=1</link><pubDate>Fri, 04 Nov 2016 08:33:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:45f5e832-196a-4663-9aef-125562ec82cf</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;@Gordon: Please create a new case with description about your setup. If you test with the default example, would it work ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Windows  and HID</title><link>https://devzone.nordicsemi.com/thread/62699?ContentTypeID=1</link><pubDate>Thu, 03 Nov 2016 16:55:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:40380077-8059-4d94-87d9-12e5b005eb78</guid><dc:creator>Gordon</dc:creator><description>&lt;p&gt;Just to add - in the Windows System log it says it concluded the driver install process with error code 0 - which sounds good to me...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Windows  and HID</title><link>https://devzone.nordicsemi.com/thread/62698?ContentTypeID=1</link><pubDate>Thu, 03 Nov 2016 16:49:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4f740b36-3a2b-4b23-8408-b5ba03c9c65c</guid><dc:creator>Gordon</dc:creator><description>&lt;p&gt;I&amp;#39;m having the same problems. Works fine on Mac OS/Android - but &lt;code&gt;Driver Error&lt;/code&gt; on windows 10. Is there some kind of error log that I could track this down with to see what the error was?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Windows  and HID</title><link>https://devzone.nordicsemi.com/thread/62697?ContentTypeID=1</link><pubDate>Fri, 16 Sep 2016 07:45:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:62faa6f2-928f-4891-bf35-67657ca65c9f</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;@max: Sorry for late response. I am not sure what could be the issue here. But above you mentioned that it worked on Windows with S130 v2.0.0 but not on S130 v2.0.1 ?
Could you provide 2 sniffer traces, one capture your device with S130 v2.0.0 and one with S130 v2.0.1 ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Windows  and HID</title><link>https://devzone.nordicsemi.com/thread/62695?ContentTypeID=1</link><pubDate>Wed, 14 Sep 2016 09:21:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0f675aa3-784e-4617-a174-09204a62fc60</guid><dc:creator>max</dc:creator><description>&lt;p&gt;static uint8_t report_map_data[] =
{
0x05, 0x01,                 // Usage Page (Generic Desktop)
0x09, 0x06,                 // Usage (Keyboard)
0xA1, 0x01,                 // Collection (Application)
0x85, 0x01,                 //     Report Id (1)
0x05, 0x07,                 //     Usage Page (Key Codes)
0x19, 0xe0,                 //     Usage Minimum (224)
0x29, 0xe7,                 //     Usage Maximum (231)
0x15, 0x00,                 //     Logical Minimum (0)
0x25, 0x01,                 //     Logical Maximum (1)
0x75, 0x01,                 //     Report Size (1)
0x95, 0x08,                 //     Report Count (8)
0x81, 0x02,                 //     Input (Data, Variable, Absolute)&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;        0x95, 0x01,                 //     Report Count (1)
        0x75, 0x08,                 //     Report Size (8)
        0x81, 0x01,                 //     Input (Constant) reserved byte(1)
        
        0x95, 0x05,                 //     Report Count (5)
        0x75, 0x01,                 //     Report Size (1)
        0x05, 0x08,                 //     Usage Page (Page# for LEDs)
        0x19, 0x01,                 //     Usage Minimum (1)
        0x29, 0x05,                 //     Usage Maximum (5)
        0x91, 0x02,                 //     Output (Data, Variable, Absolute), Led report
        0x95, 0x01,                 //     Report Count (1)
        0x75, 0x03,                 //     Report Size (3)
        0x91, 0x01,                 //     Output (Data, Variable, Absolute), Led report padding
        
        0x95, 0x06,                 //     Report Count (6)
        0x75, 0x08,                 //     Report Size (8)
        0x15, 0x00,                 //     Logical Minimum (0)
        0x25, 0x65,                 //     Logical Maximum (101)
        0x05, 0x07,                 //     Usage Page (Key codes)
        0x19, 0x00,                 //     Usage Minimum (0)
        0x29, 0x65,                 //     Usage Maximum (101)
        0x81, 0x00,                 //     Input (Data, Array) Key array(6 bytes)
        
        0x09, 0x05,                 //     Usage (Vendor Defined)
        0x15, 0x00,                 //     Logical Minimum (0)
        0x26, 0xFF, 0x00,           //     Logical Maximum (255)
        0x75, 0x08,                 //     Report Count (2)
        0x95, 0x02,                 //     Report Size (8 bit)
        0xB1, 0x02,                 //     Feature (Data, Variable, Absolute)
        
        0xC0,                        // End Collection (Application)
        
        0x05, 0x0C,        // Usage Page (Consumer)
        0x09, 0x01,        // Usage (Consumer Control)
        0xA1, 0x01,        // Collection (Application)
        0x85, 0x02,        //   Report ID (2)
        0x15, 0x00,        //   Logical Minimum (0)
        0x25, 0x01,        //   Logical Maximum (1)
        0x75, 0x01,        //   Report Size (1)
        0x95, 0x01,        //   Report Count (1)
        0x0A, 0xAE, 0x01,  //   Usage (AL Keyboard Layout)
        0x81, 0x06,        //   Input (Data,Var,Rel,No Wrap,Linear,Preferred State,No Null Position)
        0xC0,              // End Collection
      };
&lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Windows  and HID</title><link>https://devzone.nordicsemi.com/thread/62694?ContentTypeID=1</link><pubDate>Wed, 14 Sep 2016 09:21:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6f2c22ce-47a8-4607-bb3e-e1f56524a898</guid><dc:creator>max</dc:creator><description>&lt;p&gt;Yes,after adding this report just osx,android,ios working. Windows not.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Windows  and HID</title><link>https://devzone.nordicsemi.com/thread/62693?ContentTypeID=1</link><pubDate>Wed, 14 Sep 2016 09:16:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:579635b8-e962-495e-a06d-8535a271e780</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Could you confirm you would have no problem with the unmodified example ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Windows  and HID</title><link>https://devzone.nordicsemi.com/thread/62696?ContentTypeID=1</link><pubDate>Wed, 14 Sep 2016 09:09:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:040c7b62-f510-45fa-a9bb-047dafbb75c3</guid><dc:creator>max</dc:creator><description>&lt;p&gt;I just added a report for hid keyboard on ios.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;0x05, 0x0C,        // Usage Page (Consumer)
    0x09, 0x01,        // Usage (Consumer Control)
    0xA1, 0x01,        // Collection (Application)
    0x85, 0x02,        //   Report ID (2)
    0x15, 0x00,        //   Logical Minimum (0)
    0x25, 0x01,        //   Logical Maximum (1)
    0x75, 0x01,        //   Report Size (1)
    0x95, 0x01,        //   Report Count (1)
    0x0A, 0xAE, 0x01,  //   Usage (AL Keyboard Layout)
    0x81, 0x06,        //   Input (Data,Var,Rel,No Wrap,Linear,Preferred State,No Null Position)
    0xC0,              // End Collection
&lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Windows  and HID</title><link>https://devzone.nordicsemi.com/thread/62692?ContentTypeID=1</link><pubDate>Tue, 13 Sep 2016 12:51:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:be166db6-921d-4b2e-b5e4-29396a9c2005</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;We would need some &lt;a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF-Sniffer/"&gt;sniffer traces&lt;/a&gt; for comparison.&lt;/p&gt;
&lt;p&gt;But did you modify the example in SDK v12 to work with S132 v2.0.1 ? Note that the example are made for S132 v3.0.0.&lt;/p&gt;
&lt;p&gt;I would suggest to test with the pre-compiled hex file comes with the SDK.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Windows  and HID</title><link>https://devzone.nordicsemi.com/thread/62691?ContentTypeID=1</link><pubDate>Tue, 13 Sep 2016 09:23:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c52cee13-188b-493e-b50d-fd011d9bd688</guid><dc:creator>max</dc:creator><description>&lt;p&gt;Hi,
On windows 10 it is also an error Driver error.&lt;/p&gt;
&lt;p&gt;if i testing SDK 11 s130 2.0.0 , it is works on WIN7 and Win10&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Windows  and HID</title><link>https://devzone.nordicsemi.com/thread/62690?ContentTypeID=1</link><pubDate>Tue, 13 Sep 2016 08:53:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:014ad4fa-e6b9-4379-8c08-3caa4038ffec</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Hi Max,&lt;/p&gt;
&lt;p&gt;BLE is not supported natively on Windows7. I don&amp;#39;t think you can use BLE HID devices on Windows 7 out of the box. It should works on a Windows 8 or 10 machine though.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>