I have a quirky device that has multiple devices in it's report (gamepad, keyboard, and a mouse).
If i send any set hid protocol message to the device during it's life cycle, it will stall the polls to the gamepad endpoint (which I want to talk to) and prefers the keyboard only.
I need some way to tell tinyusb to skip sending the set protocol command during operation, so this PR allows me to call in my code
tuh_hid_set_default_protocol(HID_PROTOCOL_SKIP);
and during enumeratio...