Skip to content

Releases: adafruit/Adafruit_TinyUSB_Arduino

0.9.1 - Updated example with FRAM/custom external flash pin

01 Sep 16:47
f62ce45
Compare
Choose a tag to compare

0.9.0 - 2020.04.23

23 Apr 09:00
19e62ac
Compare
Choose a tag to compare
  • 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

06 Apr 21:08
786bbc7
Compare
Choose a tag to compare

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

08 Jan 18:31
fdf4785
Compare
Choose a tag to compare
Update library.properties

0.8.0 - 2019.12.30

30 Dec 09:40
Compare
Choose a tag to compare
  • Correct USB BCD version to 2.1 for webUSB
  • Migrate CI from travis to github actions

Fix for non-compiling nRF52840

12 Oct 07:14
4c62e5c
Compare
Choose a tag to compare

MIDI is under development

0.7.0 - Added MIDI virtual wires/plugs

08 Oct 19:46
3796366
Compare
Choose a tag to compare
Update library.properties

webUSB !!

05 Aug 04:55
aec6460
Compare
Choose a tag to compare

0.6.0 - 2019.08.05

  • Added webUSB support with 2 example: webusb-serial, webusb-rgb
  • Alligned mouse examples, added newer hid in/out example from main repo, added new composite example for ramdisk and hid in/out. PR #19 thanks to @PTS93

0.5.0

17 Jul 07:21
a346a48
Compare
Choose a tag to compare
  • 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

29 May 13:55
fbe5505
Compare
Choose a tag to compare
Merge pull request #3 from PTS93/master

Added node.js example which works on every OS