Pierre Constantineau
Pierre Constantineau
This could be implemented as follows: 1 - set a private variable with default value in the constructor 2 - refactor code to use variable instead of hardcoded delay 3...
Variable is already [there](https://github.com/jpconstantineau/BlueMicro_HID_Arduino_Library/blob/main/src/hid_queues.cpp#L17) Setter is already [there](https://github.com/jpconstantineau/BlueMicro_HID_Arduino_Library/blob/main/src/hid_queues.cpp#L63) variable isn't used in functions that need it. [here](https://github.com/jpconstantineau/BlueMicro_HID_Arduino_Library/blob/main/src/hid_queues.cpp#L303), [here](https://github.com/jpconstantineau/BlueMicro_HID_Arduino_Library/blob/main/src/hid_queues.cpp#L310) and [here](https://github.com/jpconstantineau/BlueMicro_HID_Arduino_Library/blob/main/src/hid_queues.cpp#L317) for USB [here](https://github.com/jpconstantineau/BlueMicro_HID_Arduino_Library/blob/main/src/hid_queues.cpp#L330), [here ](https://github.com/jpconstantineau/BlueMicro_HID_Arduino_Library/blob/main/src/hid_queues.cpp#L337) and [here ](https://github.com/jpconstantineau/BlueMicro_HID_Arduino_Library/blob/main/src/hid_queues.cpp#L344)for BLE
Setter should also be documented in readme
I just did a release that should address this issue. Let me know if it works. Arduino should pull it in a few hours.
That's a leftover of the troubleshooting I had to do. These can be removed without any issue.
I just did a release that should address this issue. Let me know if it works. Arduino should pull it in a few hours.
Indeed, I could add more examples and documentation on this. Since the implementation uses Tiny USB under the hood, you can have a look at these examples for inspiration. The...
I just did a release that added code as a start to resolve this issue. Let me know if it works. Arduino should pull it in a few hours. To...
I have the same issue with plain arduino IDE - As such, it's not the build env. We need to test out with plain TinyUSB if that's an issue with...
This is a PlatformIO specific issue that's not related to this library but is more likely to be resolved at the BSP level - or by the config in the...