Skip to content

Latest commit

 

History

History
87 lines (61 loc) · 2.66 KB

changelog.md

File metadata and controls

87 lines (61 loc) · 2.66 KB

Adafruit TinyUSB Arduino Library Changelog

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

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 - 2020.04.06

  • Removed package-lock.json in hid generic inout example due to security warning from github

0.8.1 - 2020.01.08

  • More CI migrating work, no function changes

0.8.0 - 2019.12.30

  • Correct USB BCD version to 2.1 for webUSB
  • Migrate CI from travis to github actions

0.7.1 - 2019.10.12

  • Fixed MIDI build failed since it is under development

0.7.0 - 2019.10.09

  • Added MIDI virtual wires/plugs

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 - 2019.07.17

  • 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

0.0.1 Initial Release