Re: Suspected bug in hid-microsoft.c

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Thanks!

> 1. (easiest) tune your udev rule to also give user access to the
> hidraw subsystem on this device. SDL should be able to read it
> directly, and handle it properly, but this won't solve for future
> users

This udev rule does in fact "fix" the problem

KERNELS=="*:045E:0B22.*", MODE="0666"

> 2. (no kernel compilation required) we can try to fix the report
> descriptor of the device through HID-BPF. Assuming you have
> CONFIG_HID_BPF enabled in your kernel, we can relatively easily change
> the way the device is exported/handled by the kernel, to make it
> useful hopefully
> 3. (hardest IMO as you'll have to recompile your kernel for the tests)
> we can try to tune hid-microsoft.c to properly export these buttons
>
> For 2 and 3, I'll need some events from your device with hid-recorder.
> You only gave me the report descriptor, but no events which are hard
> to deduce based on the long report descriptor.

With the udev rule, I attached the hid-recorder output when pressing
the paddles.  I see the 01 02 04 08 showing up at the end of the line.


> Also for 2 and 3 we need to have a BTN_* button code to use, and I
> don't know which ones should be used from the top of my head. HID-BPF
> would be easiest to use as we can let the user decide of it, while
> we'll need to have a more formal usage in case we fix hid-microsoft.

When connected with USB, evemu-record shows button names
"BTN_TRIGGER_HAPPY5" "BTN_TRIGGER_HAPPY6" "BTN_TRIGGER_HAPPY7"
"BTN_TRIGGER_HAPPY8".  I assume these are the button codes we can use?

################################
#      Waiting for events      #
################################
E: 0.000001 0001 02c4 0001      # EV_KEY / BTN_TRIGGER_HAPPY5   1
E: 0.000001 0000 0000 0000      # ------------ SYN_REPORT (0) ---------- +0ms
E: 0.143950 0001 02c4 0000      # EV_KEY / BTN_TRIGGER_HAPPY5   0
E: 0.143950 0000 0000 0000      # ------------ SYN_REPORT (0) ---------- +143ms
E: 6.543984 0001 02c5 0001      # EV_KEY / BTN_TRIGGER_HAPPY6   1
E: 6.543984 0000 0000 0000      # ------------ SYN_REPORT (0) ---------- +6400ms
E: 6.615981 0001 02c5 0000      # EV_KEY / BTN_TRIGGER_HAPPY6   0
E: 6.615981 0000 0000 0000      # ------------ SYN_REPORT (0) ---------- +72ms
E: 7.520034 0001 02c6 0001      # EV_KEY / BTN_TRIGGER_HAPPY7   1
E: 7.520034 0000 0000 0000      # ------------ SYN_REPORT (0) ---------- +905ms
E: 7.648127 0001 02c6 0000      # EV_KEY / BTN_TRIGGER_HAPPY7   0
E: 7.648127 0000 0000 0000      # ------------ SYN_REPORT (0) ---------- +128ms
E: 8.344035 0001 02c7 0001      # EV_KEY / BTN_TRIGGER_HAPPY8   1
E: 8.344035 0000 0000 0000      # ------------ SYN_REPORT (0) ---------- +696ms
E: 8.480049 0001 02c7 0000      # EV_KEY / BTN_TRIGGER_HAPPY8   0
E: 8.480049 0000 0000 0000      # ------------ SYN_REPORT (0) ---------- +136ms


>
> For 1, maybe SDL (or Steam) already ships some udev rules, and
> submitting a fix there would make things working for everybody.
>
> Anyway, depending on how much you want this to be fixed and what you
> can do (is CONFIG_HID_BPF enabled in your distro? and can you
> recompile a kernel module?) we can figure out the next step.

Yes HID-BPF is configured in my kernel:

cat /proc/config.gz | gunzip
#
# HID-BPF support
#
CONFIG_HID_BPF=y
# end of HID-BPF support

I've never recompiled a module before, but I've compiled lots of other
stuff before.  How hard can it be?

Cheers
# Xbox Wireless Controller
# 0x05, 0x01,                    // Usage Page (Generic Desktop)        0
# 0x09, 0x05,                    // Usage (Game Pad)                    2
# 0xa1, 0x01,                    // Collection (Application)            4
# 0x85, 0x01,                    //  Report ID (1)                      6
# 0x09, 0x01,                    //  Usage (Pointer)                    8
# 0xa1, 0x00,                    //  Collection (Physical)              10
# 0x09, 0x30,                    //   Usage (X)                         12
# 0x09, 0x31,                    //   Usage (Y)                         14
# 0x15, 0x00,                    //   Logical Minimum (0)               16
# 0x27, 0xff, 0xff, 0x00, 0x00,  //   Logical Maximum (65535)           18
# 0x95, 0x02,                    //   Report Count (2)                  23
# 0x75, 0x10,                    //   Report Size (16)                  25
# 0x81, 0x02,                    //   Input (Data,Var,Abs)              27
# 0xc0,                          //  End Collection                     29
# 0x09, 0x01,                    //  Usage (Pointer)                    30
# 0xa1, 0x00,                    //  Collection (Physical)              32
# 0x09, 0x32,                    //   Usage (Z)                         34
# 0x09, 0x35,                    //   Usage (Rz)                        36
# 0x15, 0x00,                    //   Logical Minimum (0)               38
# 0x27, 0xff, 0xff, 0x00, 0x00,  //   Logical Maximum (65535)           40
# 0x95, 0x02,                    //   Report Count (2)                  45
# 0x75, 0x10,                    //   Report Size (16)                  47
# 0x81, 0x02,                    //   Input (Data,Var,Abs)              49
# 0xc0,                          //  End Collection                     51
# 0x05, 0x02,                    //  Usage Page (Simulation Controls)   52
# 0x09, 0xc5,                    //  Usage (Brake)                      54
# 0x15, 0x00,                    //  Logical Minimum (0)                56
# 0x26, 0xff, 0x03,              //  Logical Maximum (1023)             58
# 0x95, 0x01,                    //  Report Count (1)                   61
# 0x75, 0x0a,                    //  Report Size (10)                   63
# 0x81, 0x02,                    //  Input (Data,Var,Abs)               65
# 0x15, 0x00,                    //  Logical Minimum (0)                67
# 0x25, 0x00,                    //  Logical Maximum (0)                69
# 0x75, 0x06,                    //  Report Size (6)                    71
# 0x95, 0x01,                    //  Report Count (1)                   73
# 0x81, 0x03,                    //  Input (Cnst,Var,Abs)               75
# 0x05, 0x02,                    //  Usage Page (Simulation Controls)   77
# 0x09, 0xc4,                    //  Usage (Accelerator)                79
# 0x15, 0x00,                    //  Logical Minimum (0)                81
# 0x26, 0xff, 0x03,              //  Logical Maximum (1023)             83
# 0x95, 0x01,                    //  Report Count (1)                   86
# 0x75, 0x0a,                    //  Report Size (10)                   88
# 0x81, 0x02,                    //  Input (Data,Var,Abs)               90
# 0x15, 0x00,                    //  Logical Minimum (0)                92
# 0x25, 0x00,                    //  Logical Maximum (0)                94
# 0x75, 0x06,                    //  Report Size (6)                    96
# 0x95, 0x01,                    //  Report Count (1)                   98
# 0x81, 0x03,                    //  Input (Cnst,Var,Abs)               100
# 0x05, 0x01,                    //  Usage Page (Generic Desktop)       102
# 0x09, 0x39,                    //  Usage (Hat switch)                 104
# 0x15, 0x01,                    //  Logical Minimum (1)                106
# 0x25, 0x08,                    //  Logical Maximum (8)                108
# 0x35, 0x00,                    //  Physical Minimum (0)               110
# 0x46, 0x3b, 0x01,              //  Physical Maximum (315)             112
# 0x66, 0x14, 0x00,              //  Unit (EnglishRotation: deg)        115
# 0x75, 0x04,                    //  Report Size (4)                    118
# 0x95, 0x01,                    //  Report Count (1)                   120
# 0x81, 0x42,                    //  Input (Data,Var,Abs,Null)          122
# 0x75, 0x04,                    //  Report Size (4)                    124
# 0x95, 0x01,                    //  Report Count (1)                   126
# 0x15, 0x00,                    //  Logical Minimum (0)                128
# 0x25, 0x00,                    //  Logical Maximum (0)                130
# 0x35, 0x00,                    //  Physical Minimum (0)               132
# 0x45, 0x00,                    //  Physical Maximum (0)               134
# 0x65, 0x00,                    //  Unit (None)                        136
# 0x81, 0x03,                    //  Input (Cnst,Var,Abs)               138
# 0x05, 0x09,                    //  Usage Page (Button)                140
# 0x19, 0x01,                    //  Usage Minimum (1)                  142
# 0x29, 0x0f,                    //  Usage Maximum (15)                 144
# 0x15, 0x00,                    //  Logical Minimum (0)                146
# 0x25, 0x01,                    //  Logical Maximum (1)                148
# 0x75, 0x01,                    //  Report Size (1)                    150
# 0x95, 0x0f,                    //  Report Count (15)                  152
# 0x81, 0x02,                    //  Input (Data,Var,Abs)               154
# 0x15, 0x00,                    //  Logical Minimum (0)                156
# 0x25, 0x00,                    //  Logical Maximum (0)                158
# 0x75, 0x01,                    //  Report Size (1)                    160
# 0x95, 0x01,                    //  Report Count (1)                   162
# 0x81, 0x03,                    //  Input (Cnst,Var,Abs)               164
# 0x05, 0x0c,                    //  Usage Page (Consumer Devices)      166
# 0x0a, 0xb2, 0x00,              //  Usage (Record)                     168
# 0x15, 0x00,                    //  Logical Minimum (0)                171
# 0x25, 0x01,                    //  Logical Maximum (1)                173
# 0x95, 0x01,                    //  Report Count (1)                   175
# 0x75, 0x01,                    //  Report Size (1)                    177
# 0x81, 0x02,                    //  Input (Data,Var,Abs)               179
# 0x15, 0x00,                    //  Logical Minimum (0)                181
# 0x25, 0x00,                    //  Logical Maximum (0)                183
# 0x75, 0x07,                    //  Report Size (7)                    185
# 0x95, 0x01,                    //  Report Count (1)                   187
# 0x81, 0x03,                    //  Input (Cnst,Var,Abs)               189
# 0x05, 0x0c,                    //  Usage Page (Consumer Devices)      191
# 0x09, 0x01,                    //  Usage (Consumer Control)           193
# 0xa1, 0x01,                    //  Collection (Application)           195
# 0x0a, 0x85, 0x00,              //   Usage (Order Movie)               197
# 0x15, 0x00,                    //   Logical Minimum (0)               200
# 0x26, 0xff, 0x00,              //   Logical Maximum (255)             202
# 0x95, 0x01,                    //   Report Count (1)                  205
# 0x75, 0x08,                    //   Report Size (8)                   207
# 0x81, 0x02,                    //   Input (Data,Var,Abs)              209
# 0x0a, 0x99, 0x00,              //   Usage (Media Select Security)     211
# 0x15, 0x00,                    //   Logical Minimum (0)               214
# 0x26, 0xff, 0x00,              //   Logical Maximum (255)             216
# 0x95, 0x01,                    //   Report Count (1)                  219
# 0x75, 0x04,                    //   Report Size (4)                   221
# 0x81, 0x02,                    //   Input (Data,Var,Abs)              223
# 0x15, 0x00,                    //   Logical Minimum (0)               225
# 0x25, 0x00,                    //   Logical Maximum (0)               227
# 0x95, 0x01,                    //   Report Count (1)                  229
# 0x75, 0x04,                    //   Report Size (4)                   231
# 0x81, 0x03,                    //   Input (Cnst,Var,Abs)              233
# 0x0a, 0x81, 0x00,              //   Usage (Assign Selection)          235
# 0x15, 0x00,                    //   Logical Minimum (0)               238
# 0x26, 0xff, 0x00,              //   Logical Maximum (255)             240
# 0x95, 0x01,                    //   Report Count (1)                  243
# 0x75, 0x04,                    //   Report Size (4)                   245
# 0x81, 0x02,                    //   Input (Data,Var,Abs)              247
# 0x15, 0x00,                    //   Logical Minimum (0)               249
# 0x25, 0x00,                    //   Logical Maximum (0)               251
# 0x95, 0x01,                    //   Report Count (1)                  253
# 0x75, 0x04,                    //   Report Size (4)                   255
# 0x81, 0x03,                    //   Input (Cnst,Var,Abs)              257
# 0xc0,                          //  End Collection                     259
# 0x05, 0x0f,                    //  Usage Page (Vendor Usage Page 0x0f) 260
# 0x09, 0x21,                    //  Usage (Vendor Usage 0x21)          262
# 0x85, 0x03,                    //  Report ID (3)                      264
# 0xa1, 0x02,                    //  Collection (Logical)               266
# 0x09, 0x97,                    //   Usage (Vendor Usage 0x97)         268
# 0x15, 0x00,                    //   Logical Minimum (0)               270
# 0x25, 0x01,                    //   Logical Maximum (1)               272
# 0x75, 0x04,                    //   Report Size (4)                   274
# 0x95, 0x01,                    //   Report Count (1)                  276
# 0x91, 0x02,                    //   Output (Data,Var,Abs)             278
# 0x15, 0x00,                    //   Logical Minimum (0)               280
# 0x25, 0x00,                    //   Logical Maximum (0)               282
# 0x75, 0x04,                    //   Report Size (4)                   284
# 0x95, 0x01,                    //   Report Count (1)                  286
# 0x91, 0x03,                    //   Output (Cnst,Var,Abs)             288
# 0x09, 0x70,                    //   Usage (Vendor Usage 0x70)         290
# 0x15, 0x00,                    //   Logical Minimum (0)               292
# 0x25, 0x64,                    //   Logical Maximum (100)             294
# 0x75, 0x08,                    //   Report Size (8)                   296
# 0x95, 0x04,                    //   Report Count (4)                  298
# 0x91, 0x02,                    //   Output (Data,Var,Abs)             300
# 0x09, 0x50,                    //   Usage (Vendor Usage 0x50)         302
# 0x66, 0x01, 0x10,              //   Unit (SILinear: s)                304
# 0x55, 0x0e,                    //   Unit Exponent (-2)                307
# 0x15, 0x00,                    //   Logical Minimum (0)               309
# 0x26, 0xff, 0x00,              //   Logical Maximum (255)             311
# 0x75, 0x08,                    //   Report Size (8)                   314
# 0x95, 0x01,                    //   Report Count (1)                  316
# 0x91, 0x02,                    //   Output (Data,Var,Abs)             318
# 0x09, 0xa7,                    //   Usage (Vendor Usage 0xa7)         320
# 0x15, 0x00,                    //   Logical Minimum (0)               322
# 0x26, 0xff, 0x00,              //   Logical Maximum (255)             324
# 0x75, 0x08,                    //   Report Size (8)                   327
# 0x95, 0x01,                    //   Report Count (1)                  329
# 0x91, 0x02,                    //   Output (Data,Var,Abs)             331
# 0x65, 0x00,                    //   Unit (None)                       333
# 0x55, 0x00,                    //   Unit Exponent (0)                 335
# 0x09, 0x7c,                    //   Usage (Vendor Usage 0x7c)         337
# 0x15, 0x00,                    //   Logical Minimum (0)               339
# 0x26, 0xff, 0x00,              //   Logical Maximum (255)             341
# 0x75, 0x08,                    //   Report Size (8)                   344
# 0x95, 0x01,                    //   Report Count (1)                  346
# 0x91, 0x02,                    //   Output (Data,Var,Abs)             348
# 0xc0,                          //  End Collection                     350
# 0x05, 0x0c,                    //  Usage Page (Consumer Devices)      351
# 0x09, 0x01,                    //  Usage (Consumer Control)           353
# 0x85, 0x0c,                    //  Report ID (12)                     355
# 0xa1, 0x01,                    //  Collection (Application)           357
# 0x0a, 0x9e, 0x00,              //   Usage (Media Select SAP)          359
# 0x15, 0x00,                    //   Logical Minimum (0)               362
# 0x26, 0xff, 0x00,              //   Logical Maximum (255)             364
# 0x95, 0x01,                    //   Report Count (1)                  367
# 0x75, 0x08,                    //   Report Size (8)                   369
# 0x81, 0x02,                    //   Input (Data,Var,Abs)              371
# 0x0a, 0xa1, 0x00,              //   Usage (Once)                      373
# 0x15, 0x00,                    //   Logical Minimum (0)               376
# 0x26, 0xff, 0x00,              //   Logical Maximum (255)             378
# 0x95, 0x01,                    //   Report Count (1)                  381
# 0x75, 0x08,                    //   Report Size (8)                   383
# 0x81, 0x02,                    //   Input (Data,Var,Abs)              385
# 0x0a, 0xa2, 0x00,              //   Usage (Daily)                     387
# 0x15, 0x00,                    //   Logical Minimum (0)               390
# 0x26, 0xff, 0x00,              //   Logical Maximum (255)             392
# 0x95, 0x01,                    //   Report Count (1)                  395
# 0x75, 0x08,                    //   Report Size (8)                   397
# 0x81, 0x02,                    //   Input (Data,Var,Abs)              399
# 0x0a, 0xa3, 0x00,              //   Usage (Weekly)                    401
# 0x15, 0x00,                    //   Logical Minimum (0)               404
# 0x26, 0xff, 0x00,              //   Logical Maximum (255)             406
# 0x95, 0x01,                    //   Report Count (1)                  409
# 0x75, 0x08,                    //   Report Size (8)                   411
# 0x81, 0x02,                    //   Input (Data,Var,Abs)              413
# 0xc0,                          //  End Collection                     415
# 0xc0,                          // End Collection                      416
# 0x05, 0x01,                    // Usage Page (Generic Desktop)        417
# 0x09, 0x06,                    // Usage (Keyboard)                    419
# 0xa1, 0x01,                    // Collection (Application)            421
# 0x85, 0x05,                    //  Report ID (5)                      423
# 0x05, 0x07,                    //  Usage Page (Keyboard)              425
# 0x19, 0xe0,                    //  Usage Minimum (224)                427
# 0x29, 0xe7,                    //  Usage Maximum (231)                429
# 0x15, 0x00,                    //  Logical Minimum (0)                431
# 0x25, 0x01,                    //  Logical Maximum (1)                433
# 0x75, 0x01,                    //  Report Size (1)                    435
# 0x95, 0x08,                    //  Report Count (8)                   437
# 0x81, 0x02,                    //  Input (Data,Var,Abs)               439
# 0x95, 0x01,                    //  Report Count (1)                   441
# 0x75, 0x08,                    //  Report Size (8)                    443
# 0x81, 0x03,                    //  Input (Cnst,Var,Abs)               445
# 0x95, 0x06,                    //  Report Count (6)                   447
# 0x75, 0x08,                    //  Report Size (8)                    449
# 0x15, 0x00,                    //  Logical Minimum (0)                451
# 0x25, 0x65,                    //  Logical Maximum (101)              453
# 0x05, 0x07,                    //  Usage Page (Keyboard)              455
# 0x19, 0x00,                    //  Usage Minimum (0)                  457
# 0x29, 0x65,                    //  Usage Maximum (101)                459
# 0x81, 0x00,                    //  Input (Data,Arr,Abs)               461
# 0xc0,                          // End Collection                      463
# 
R: 464 05 01 09 05 a1 01 85 01 09 01 a1 00 09 30 09 31 15 00 27 ff ff 00 00 95 02 75 10 81 02 c0 09 01 a1 00 09 32 09 35 15 00 27 ff ff 00 00 95 02 75 10 81 02 c0 05 02 09 c5 15 00 26 ff 03 95 01 75 0a 81 02 15 00 25 00 75 06 95 01 81 03 05 02 09 c4 15 00 26 ff 03 95 01 75 0a 81 02 15 00 25 00 75 06 95 01 81 03 05 01 09 39 15 01 25 08 35 00 46 3b 01 66 14 00 75 04 95 01 81 42 75 04 95 01 15 00 25 00 35 00 45 00 65 00 81 03 05 09 19 01 29 0f 15 00 25 01 75 01 95 0f 81 02 15 00 25 00 75 01 95 01 81 03 05 0c 0a b2 00 15 00 25 01 95 01 75 01 81 02 15 00 25 00 75 07 95 01 81 03 05 0c 09 01 a1 01 0a 85 00 15 00 26 ff 00 95 01 75 08 81 02 0a 99 00 15 00 26 ff 00 95 01 75 04 81 02 15 00 25 00 95 01 75 04 81 03 0a 81 00 15 00 26 ff 00 95 01 75 04 81 02 15 00 25 00 95 01 75 04 81 03 c0 05 0f 09 21 85 03 a1 02 09 97 15 00 25 01 75 04 95 01 91 02 15 00 25 00 75 04 95 01 91 03 09 70 15 00 25 64 75 08 95 04 91 02 09 50 66 01 10 55 0e 15 00 26 ff 00 75 08 95 01 91 02 09 a7 15 00 26 ff 00 75 08 95 01 91 02 65 00 55 00 09 7c 15 00 26 ff 00 75 08 95 01 91 02 c0 05 0c 09 01 85 0c a1 01 0a 9e 00 15 00 26 ff 00 95 01 75 08 81 02 0a a1 00 15 00 26 ff 00 95 01 75 08 81 02 0a a2 00 15 00 26 ff 00 95 01 75 08 81 02 0a a3 00 15 00 26 ff 00 95 01 75 08 81 02 c0 c0 05 01 09 06 a1 01 85 05 05 07 19 e0 29 e7 15 00 25 01 75 01 95 08 81 02 95 01 75 08 81 03 95 06 75 08 15 00 25 65 05 07 19 00 29 65 81 00 c0
N: Xbox Wireless Controller
I: 5 045e 0b22
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   1 | # 
E: 000000.000000 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 01
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   1 | # 
E: 000000.001002 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 01
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   1 | # 
E: 000000.001487 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 01
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   1 | # 
E: 000000.001944 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 01
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   1 | # 
E: 000000.002401 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 01
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   1 | # 
E: 000000.003336 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 01
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   1 | # 
E: 000000.010494 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 01
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   1 | # 
E: 000000.016620 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 01
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   1 | # 
E: 000000.023255 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 01
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   1 | # 
E: 000000.033284 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 01
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   1 | # 
E: 000000.039948 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 01
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.046600 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.056677 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.063620 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.073157 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.073711 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.083320 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.093276 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.103210 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.103891 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.117791 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.133279 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.134209 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.143369 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.153267 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.159926 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.173627 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.186719 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.187266 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.196578 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.203336 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.413335 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.423378 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.433206 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.434185 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.453308 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.460009 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.466556 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.473368 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.486648 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.496628 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.503236 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.513234 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.519980 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.528029 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.543356 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.549991 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   4 | # 
E: 000000.556775 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 04
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.563271 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.576754 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.586634 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.593355 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.603294 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.613284 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.613894 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.633298 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.639968 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.646683 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.653367 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.666572 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.679970 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.680646 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.693323 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.699952 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.706553 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.723333 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.729987 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000000.736639 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000000.973282 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000000.973883 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000000.983383 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000000.999860 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000001.006571 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000001.013303 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000001.023189 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000001.033175 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000001.043514 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000001.053294 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000001.059868 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000001.066690 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000001.073317 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000001.089934 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000001.096787 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   2 | # 
E: 000001.103274 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 02
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.116579 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.117185 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.133264 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.143185 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.150028 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.156670 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.163196 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.179880 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.186607 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.193301 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.203312 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.209939 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.226528 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.233199 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.239894 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.246626 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.253891 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.273225 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.273986 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.283576 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.596755 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.597405 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.606664 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.626760 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.627411 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.639868 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.641139 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.656668 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.666639 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.673331 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.686863 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.687476 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.696778 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.713192 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.720053 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.729948 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.730582 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   8 | # 
E: 000001.743267 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 08
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.760250 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.760849 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.773285 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.780042 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.786815 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.803881 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.810231 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.816563 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.823188 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.833173 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.846500 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.853433 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.863161 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.870132 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.876784 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.893328 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.899992 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.906572 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.916636 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00
# ReportID: 1 / X:  33591 | Y:  32360 
#             | Z:  33117 | Rz:  31898 | Brake:     0 | # | Accelerator:     0 | # | Hat switch:   0 | # | Button: 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0 | # | Record: 0 | # 
#             | Order Movie:    0 | Media Select Security:   0 | # | Assign Selection:   0 | # 
E: 000001.926641 20 01 37 83 68 7e 5d 81 9a 7c 00 00 00 00 00 00 00 00 00 00 00

[Index of Archives]     [Linux Media Devel]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Linux Wireless Networking]     [Linux Omap]

  Powered by Linux