Lines 202-209
dumpitem(const char *label, struct hid_item *h)
Link Here
|
202 |
{ |
202 |
{ |
203 |
if ((h->flags & HIO_CONST) && !verbose) |
203 |
if ((h->flags & HIO_CONST) && !verbose) |
204 |
return; |
204 |
return; |
205 |
printf("%s rid=%d size=%d count=%d page=%s usage=%s%s%s", label, |
205 |
printf("%s rid=%d pos=%d size=%d count=%d page=%s usage=%s%s%s", label, |
206 |
h->report_ID, h->report_size, h->report_count, |
206 |
h->report_ID, h->pos, h->report_size, h->report_count, |
207 |
hid_usage_page(HID_PAGE(h->usage)), |
207 |
hid_usage_page(HID_PAGE(h->usage)), |
208 |
hid_usage_in_page(h->usage), |
208 |
hid_usage_in_page(h->usage), |
209 |
h->flags & HIO_CONST ? " Const" : "", |
209 |
h->flags & HIO_CONST ? " Const" : "", |
210 |
- |
|
|