This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

touch screen and media button can not work at same time?

add touchscreen hid can worked  use hids, media button (consumer) can worked, but it can not work at same time, some one help me !!!

Parents
  •    
            // Report ID 1: digitizer touch   
            0x05, 0x0D,                    // USAGE_PAGE(Digitizers)
            0x09, 0x04,                    // USAGE     (Touch Screen)
            0xA1, 0x01,                    // COLLECTION(Application)
            0x85, 0x01,                             //   REPORT_ID
            /* Touch one */
            0x09, 0x22,                    //   USAGE (Finger)
            0xA1, 0x02,                    //   COLLECTION (Logical)     
            0x09, 0x42,                    //     USAGE (Tip Switch)
            0x15, 0x00,                    //     LOGICAL_MINIMUM (0)
            0x25, 0x01,                    //     LOGICAL_MAXIMUM (1)
            0x75, 0x01,                    //     REPORT_SIZE (1)
            0x95, 0x01,                    //     REPORT_COUNT(1)
            0x81, 0x02,                    //     INPUT (Data,Var,Abs)
            0x95, 0x07,                    //     REPORT_COUNT (7)
            0x81, 0x03,                    //     INPUT (Cnst,Ary,Abs)
            0x09, 0x51,                    //     USAGE (Contact Identifier)
            0x75, 0x08,                    //     REPORT_SIZE (8)
            0x95, 0x01,                    //     REPORT_COUNT (1)
            0x81, 0x02,                    //     INPUT (Data,Var,Abs)
            0x05, 0x01,                    //     USAGE_PAGE (Generic Desktop)
            0x09, 0x30,                    //     Usage (X)
            0x09, 0x31,                    //     Usage (Y)
            0x16, 0x00, 0x00,              //     Logical Minimum (0)
            0x26, 0xff, 0x7f,              //     Logical Maximum (32767)
            0x36, 0x00, 0x00,              //     Physical Minimum (0)
            0x46, 0xff, 0x7f,              //     Physical Maximum (32767)
            0x65, 0x11,                    //     Unit (Centimeter, SI-Linear)
            0x75, 0x10,                    //     Report Size (16),
            0x95, 0x02,                    //     Report Count (2),
            0x81, 0x02,                    //     Input (Data,Var,Abs)
            0xC0,                          //   END_COLLECTION  
           
            /* Contact count */
            0x09, 0x54,                    //   USAGE (Contact count)
            0x15, 0x00,                    //   LOGICAL_MINIMUM (0)
            0x25, 0x0A,                    //   LOGICAL_MAXIMUM (10)
            0x75, 0x08,                    //   REPORT_SIZE (8)
            0x95, 0x01,                    //   REPORT_COUNT(1)
            0x81, 0x02,                    //   INPUT (Data,Var,Abs)
             
            0xC0,                           // END_COLLECTION

      // Report ID 2: Advanced buttons
            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)

            0x09, 0xCD,       // Usage (Play/Pause)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)
            0x0A, 0x83, 0x01, // Usage (AL Consumer Control Configuration)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)
            0x09, 0xB5,       // Usage (Scan Next Track)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)
            0x09, 0xB6,       // Usage (Scan Previous Track)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)

            0x09, 0xEA,       // Usage (Volume Down)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)
            0x09, 0xE9,       // Usage (Volume Up)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)
            0x0A, 0x25, 0x02, // Usage (AC Forward)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)
            0x0A, 0x24, 0x02, // Usage (AC Back)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)
            0xC0,             // End Collection

Reply
  •    
            // Report ID 1: digitizer touch   
            0x05, 0x0D,                    // USAGE_PAGE(Digitizers)
            0x09, 0x04,                    // USAGE     (Touch Screen)
            0xA1, 0x01,                    // COLLECTION(Application)
            0x85, 0x01,                             //   REPORT_ID
            /* Touch one */
            0x09, 0x22,                    //   USAGE (Finger)
            0xA1, 0x02,                    //   COLLECTION (Logical)     
            0x09, 0x42,                    //     USAGE (Tip Switch)
            0x15, 0x00,                    //     LOGICAL_MINIMUM (0)
            0x25, 0x01,                    //     LOGICAL_MAXIMUM (1)
            0x75, 0x01,                    //     REPORT_SIZE (1)
            0x95, 0x01,                    //     REPORT_COUNT(1)
            0x81, 0x02,                    //     INPUT (Data,Var,Abs)
            0x95, 0x07,                    //     REPORT_COUNT (7)
            0x81, 0x03,                    //     INPUT (Cnst,Ary,Abs)
            0x09, 0x51,                    //     USAGE (Contact Identifier)
            0x75, 0x08,                    //     REPORT_SIZE (8)
            0x95, 0x01,                    //     REPORT_COUNT (1)
            0x81, 0x02,                    //     INPUT (Data,Var,Abs)
            0x05, 0x01,                    //     USAGE_PAGE (Generic Desktop)
            0x09, 0x30,                    //     Usage (X)
            0x09, 0x31,                    //     Usage (Y)
            0x16, 0x00, 0x00,              //     Logical Minimum (0)
            0x26, 0xff, 0x7f,              //     Logical Maximum (32767)
            0x36, 0x00, 0x00,              //     Physical Minimum (0)
            0x46, 0xff, 0x7f,              //     Physical Maximum (32767)
            0x65, 0x11,                    //     Unit (Centimeter, SI-Linear)
            0x75, 0x10,                    //     Report Size (16),
            0x95, 0x02,                    //     Report Count (2),
            0x81, 0x02,                    //     Input (Data,Var,Abs)
            0xC0,                          //   END_COLLECTION  
           
            /* Contact count */
            0x09, 0x54,                    //   USAGE (Contact count)
            0x15, 0x00,                    //   LOGICAL_MINIMUM (0)
            0x25, 0x0A,                    //   LOGICAL_MAXIMUM (10)
            0x75, 0x08,                    //   REPORT_SIZE (8)
            0x95, 0x01,                    //   REPORT_COUNT(1)
            0x81, 0x02,                    //   INPUT (Data,Var,Abs)
             
            0xC0,                           // END_COLLECTION

      // Report ID 2: Advanced buttons
            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)

            0x09, 0xCD,       // Usage (Play/Pause)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)
            0x0A, 0x83, 0x01, // Usage (AL Consumer Control Configuration)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)
            0x09, 0xB5,       // Usage (Scan Next Track)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)
            0x09, 0xB6,       // Usage (Scan Previous Track)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)

            0x09, 0xEA,       // Usage (Volume Down)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)
            0x09, 0xE9,       // Usage (Volume Up)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)
            0x0A, 0x25, 0x02, // Usage (AC Forward)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)
            0x0A, 0x24, 0x02, // Usage (AC Back)
            0x81, 0x06,       // Input (Data,Value,Relative,Bit Field)
            0xC0,             // End Collection

Children
No Data
Related