Releases: adafruit/Adafruit_TinyUSB_Arduino
Releases · adafruit/Adafruit_TinyUSB_Arduino
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 */ ),
};
0.8.2 - Remove package-lock.json, update issue template
This release removes the package-lock.json
that hard-codes specific library versions that NPM will install and use. Thanks to Timon/ @PTS93 for the patch
0.8.1 - Migrate to Github Actions
Update library.properties
0.8.0 - 2019.12.30
- Correct USB BCD version to 2.1 for webUSB
- Migrate CI from travis to github actions
Fix for non-compiling nRF52840
MIDI is under development
0.7.0 - Added MIDI virtual wires/plugs
Update library.properties
webUSB !!
0.5.0
- Added travis build
- Fixed msc setID
- Added itfnum to internal API getDescriptor()
- Added MIDI support
- Added midi_test example
- Added pizza box dj example for cplayground express
- Mass Storage
- Added msc_sdfat, msc dual lun (external flash + sd card) example
- Updated msc example to use new SPIFlash 3.x API
- Update msc example to print root contents
- HID
- Added hid_mouse, hid_keyboard
- Added hid_composite_joy_featherwing
- Added Composite: mouse_ramdisk, mouse_external_flash example
Initial release
Merge pull request #3 from PTS93/master Added node.js example which works on every OS