• Home
  • History
  • Annotate
Name
Date
Size
#Lines
LOC

..--

jni/23-Nov-2023-478372

src/com/android/commands/hid/22-Nov-2023-752599

Android.bpD23-Nov-2023169 108

MODULE_LICENSE_APACHE2D22-Nov-20230

NOTICED22-Nov-202310.4 KiB191158

README.mdD23-Nov-20236.5 KiB151128

hidD23-Nov-2023379 103

README.md

1 # Usage
2 ##  Two options to use the hid command:
3 ### 1. Interactive through stdin:
4 type `hid -` into the terminal, then type/paste commands to send to the binary.
5 Use Ctrl+D to signal end of stream to the binary (EOF).
6 
7 This mode can be also used from an app to send HID events.
8 For an example, see the cts test case at: [InputTestCase.java][2]
9 
10 When using another program to control hid in interactive mode, registering a
11 new input device (for example, a bluetooth joystick) should be the first step.
12 After the device is added, you need to wait for the _onInputDeviceAdded_
13 (see [InputDeviceListener][1]) notification before issuing commands
14 to the device.
15 Failure to do so will cause missed events and inconsistent behaviour.
16 In the current implementation of the hid command, the hid binary will wait
17 for the file descriptor to the uhid node to send the UHID_START and UHID_OPEN
18 signals before returning. However, this is not sufficient. These signals
19 only notify the readiness of the kernel driver,
20 but do not take into account the inputflinger framework.
21 
22 
23 ### 2. Using a file as an input:
24 type `hid <filename>`, and the file will be used an an input to the binary.
25 You must add a sufficient delay after a "register" command to ensure device
26 is ready. The interactive mode is the recommended method of communicating
27 with the hid binary.
28 
29 All of the input commands should be in pseudo-JSON format as documented below.
30 See examples [here][3].
31 
32 The file can have multiple commands one after the other (which is not strictly
33 legal JSON format, as this would imply multiple root elements).
34 
35 ## Command description
36 
37 1. `register`
38 Register a new uhid device
39 
40 | Field         | Type          | Description                |
41 |:-------------:|:-------------:|:-------------------------- |
42 | id            | integer       | Device id                  |
43 | command       | string        | Must be set to "register"  |
44 | name          | string        | Device name                |
45 | vid           | 16-bit integer| Vendor id                  |
46 | pid           | 16-bit integer| Product id                 |
47 | bus           | string        | Bus that device should use |
48 | descriptor    | byte array    | USB HID report descriptor  |
49 
50 Device ID is used for matching the subsequent commands to a specific device
51 to avoid ambiguity when multiple devices are registered.
52 
53 Device bus is used to determine how the uhid device is connected to the host.
54 The options are "usb" and "bluetooth".
55 
56 USB HID report descriptor should be generated according the the USB HID spec
57 and can be checked by reverse parsing using a variety of tools, for example
58 [usbdescreqparser][5].
59 
60 Example:
61 ```json
62 {
63   "id": 1,
64   "command": "register",
65   "name": "Odie (Test)",
66   "vid": 0x18d1,
67   "pid": 0x2c40,
68   "bus": "usb",
69   "descriptor": [0x05, 0x01, 0x09, 0x05, 0xa1, 0x01, 0x85, 0x01, 0x05, 0x09, 0x0a, 0x01, 0x00,
70     0x0a, 0x02, 0x00, 0x0a, 0x04, 0x00, 0x0a, 0x05, 0x00, 0x0a, 0x07, 0x00, 0x0a, 0x08, 0x00,
71     0x0a, 0x0e, 0x00, 0x0a, 0x0f, 0x00, 0x0a, 0x0d, 0x00, 0x05, 0x0c, 0x0a, 0x24, 0x02, 0x0a,
72     0x23, 0x02, 0x15, 0x00, 0x25, 0x01, 0x75, 0x01, 0x95, 0x0b, 0x81, 0x02, 0x75, 0x01, 0x95,
73     0x01, 0x81, 0x03, 0x05, 0x01, 0x75, 0x04, 0x95, 0x01, 0x25, 0x07, 0x46, 0x3b, 0x01, 0x66,
74     0x14, 0x00, 0x09, 0x39, 0x81, 0x42, 0x66, 0x00, 0x00, 0x09, 0x01, 0xa1, 0x00, 0x09, 0x30,
75     0x09, 0x31, 0x09, 0x32, 0x09, 0x35, 0x05, 0x02, 0x09, 0xc5, 0x09, 0xc4, 0x15, 0x00, 0x26,
76     0xff, 0x00, 0x35, 0x00, 0x46, 0xff, 0x00, 0x75, 0x08, 0x95, 0x06, 0x81, 0x02, 0xc0, 0x85,
77     0x02, 0x05, 0x08, 0x0a, 0x01, 0x00, 0x0a, 0x02, 0x00, 0x0a, 0x03, 0x00, 0x0a, 0x04, 0x00,
78     0x15, 0x00, 0x25, 0x01, 0x75, 0x01, 0x95, 0x04, 0x91, 0x02, 0x75, 0x04, 0x95, 0x01, 0x91,
79     0x03, 0xc0, 0x05, 0x0c, 0x09, 0x01, 0xa1, 0x01, 0x85, 0x03, 0x05, 0x01, 0x09, 0x06, 0xa1,
80     0x02, 0x05, 0x06, 0x09, 0x20, 0x15, 0x00, 0x26, 0xff, 0x00, 0x75, 0x08, 0x95, 0x01, 0x81,
81     0x02, 0x06, 0xbc, 0xff, 0x0a, 0xad, 0xbd, 0x75, 0x08, 0x95, 0x06, 0x81, 0x02, 0xc0, 0xc0]
82 }
83 ```
84 2. `delay`
85 Add a delay to command processing
86 
87 | Field         | Type          | Description                |
88 |:-------------:|:-------------:|:-------------------------- |
89 | id            | integer       | Device id                  |
90 | command       | string        | Must be set to "delay"     |
91 | duration      | integer       | Delay in milliseconds      |
92 
93 Example:
94 ```json
95 {
96   "id": 1,
97   "command": "delay",
98   "duration": 10
99 }
100 ```
101 
102 3. `report`
103 Send a report to the HID device
104 
105 | Field         | Type          | Description                |
106 |:-------------:|:-------------:|:-------------------------- |
107 | id            | integer       | Device id                  |
108 | command       | string        | Must be set to "report"    |
109 | report        | byte array    | Report data to send        |
110 
111 Example:
112 ```json
113 {
114   "id": 1,
115   "command": "report",
116   "report": [0x01, 0x01, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x00, 0x00]
117 }
118 ```
119 
120 ### Sending a joystick button press event
121 To send a button press event on a joystick device:
122 1. Register the joystick device
123 2. Send button down event with coordinates ABS_X, ABS_Y, ABS_Z, and ABS_RZ
124 at the center of the range. If the coordinates are not centered, this event
125 will generate a motion event within the input framework, in addition to the
126 button press event. The range can be determined from the uhid report descriptor.
127 3. Send the button up event with the same coordinates as in 2.
128 4. Check that the button press event was received.
129 
130 ### Notes
131 1. As soon as EOF is reached (either in interactive mode, or in file mode),
132 the device that was created will be unregistered. There is no
133 explicit command for unregistering a device.
134 2. The linux input subsystem does not generate events for those values
135 that remain unchanged. For example, if there are two events sent to the driver,
136 and both events have the same value of ABS_X, then ABS_X coordinate
137 will not be reported.
138 3. The description of joystick actions is available [here][6].
139 4. Joysticks are split axes. When an analog stick is in a resting state,
140 the reported coordinates are at the center of the range.
141 5. The `getevent` utility can used to print out the key events
142 for debugging purposes.
143 
144 
145 [1]: https://developer.android.com/reference/android/hardware/input/InputManager.InputDeviceListener.html
146 [2]: ../../../../cts/tests/tests/hardware/src/android/hardware/input/cts/tests/InputTestCase.java
147 [3]: ../../../../cts/tests/tests/hardware/res/raw/
148 [4]: https://developer.android.com/training/game-controllers/controller-input.html#button
149 [5]: http://eleccelerator.com/usbdescreqparser/
150 [6]: https://developer.android.com/training/game-controllers/controller-input.html
151