Releases: adafruit/Adafruit_TinyUSB_Arduino
Releases · adafruit/Adafruit_TinyUSB_Arduino
1.0.3 - 2021.05.26
- Update tinyusb stack to latest
- Added HID Gamepad example with Dhat support
- Fix warnings with -Wall -Wextra
- Fix warnings with cast function type for nrf
1.0.1 - 2021.05.21
Warn user to select TinyUSB via menu on ports where it is optional e.g SAMD and RP2040
1.0.0 - 2021.05.19
Rework to work as independent libraries, sources from https://github.com/adafruit/Adafruit_TinyUSB_ArduinoCore is now integrated as part of this libraries. Require
- Adafruit SAMD core with version at least 1.7.0
- Adafruit nRF52 core with version at least 0.22.0
- Support earlephilhower/arduino-pico version released after earlephilhower/arduino-pico#127
0.10.5 - Updated issue and bug report templates
Bump to 0.10.5
0.10.4 - Added feather M4 CAN
0.10.2 - Only use unsigned values for array access
Bump to 0.10.2
0.10.1 - Updated URL in examples
Bump to 0.10.1
0.10.0 - Allow use of all write() variants, use setStringDescriptor() in example
0.9.1 - Updated example with FRAM/custom external flash pin
0.9.0 - 2020.04.23
- Fixed mouseButtonRelease() error
- Supported multiple cables for USB MIDI (requires BSP nRF52 0.20.0 and SAMD 1.5.12 )
- Added consumer control support to HID/hid_composite example
- Added Adafruit_USBD_HID send report helper: sendReport8(), sendReport16(), sendReport32()
Minor Breaking Changes
- Removed trailing comma in hid report descriptor, this is required to use with BSP nRF52 0.20.0 and SAMD 1.5.12 e.g
from
uint8_t const desc_hid_report[] =
{
TUD_HID_REPORT_DESC_KEYBOARD( HID_REPORT_ID(RID_KEYBOARD), ),
TUD_HID_REPORT_DESC_MOUSE ( HID_REPORT_ID(RID_MOUSE ), ),
};
to
uint8_t const desc_hid_report[] =
{
TUD_HID_REPORT_DESC_KEYBOARD( HID_REPORT_ID(RID_KEYBOARD) /*, no more trailing comma */ ),
TUD_HID_REPORT_DESC_MOUSE ( HID_REPORT_ID(RID_MOUSE ) /*, no more trailing comma */ ),
};