You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have read the documentation of the component in question and the issue is not addressed there.
I have searched the issue tracker for a similar issue and not found a similar issue.
Description
I noticed that the absolute mouse movement functionality appears to be missing from this fork, despite being present in the original TinyUSB library. The following code exists in the original hathach/tinyusb source files but seems to be uncommitted or excluded:
typedefstructTU_ATTR_PACKED {
uint8_tbuttons; /**< buttons mask for currently pressed buttons in the mouse. */int16_tx; /**< Current x position of the mouse. */int16_ty; /**< Current y position of the mouse. */int8_twheel; /**< Current delta wheel movement on the mouse. */int8_tpan; // using AC Pan
} hid_abs_mouse_report_t;
Questions
Was this functionality intentionally excluded from this fork?
If not, could it be added back to maintain feature parity with the original TinyUSB library?
The text was updated successfully, but these errors were encountered:
Currently, the esp_tinyusb is using the tinyusb-based espressif component (https://github.com/espressif/tinyusb) which in it turn based on the v0.15.0 of upstream tinyusb.
Answers checklist.
Description
I noticed that the absolute mouse movement functionality appears to be missing from this fork, despite being present in the original TinyUSB library. The following code exists in the original hathach/tinyusb source files but seems to be uncommitted or excluded:
In
hid_device.h
:In
hid_device.c
:In
hid.h
:Questions
The text was updated successfully, but these errors were encountered: