Skip to content

Releases: adafruit/Adafruit_TinyUSB_Arduino

1.0.3 - 2021.05.26

26 May 03:00
8f4bc1f
Compare
Choose a tag to compare
  • 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

20 May 18:13
2168ccf
Compare
Choose a tag to compare

Warn user to select TinyUSB via menu on ports where it is optional e.g SAMD and RP2040

1.0.0 - 2021.05.19

19 May 10:00
1b8b9c9
Compare
Choose a tag to compare

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.10.5 - Updated issue and bug report templates

26 Apr 20:32
031c295
Compare
Choose a tag to compare

0.10.4 - Added feather M4 CAN

14 Apr 21:32
17a17c0
Compare
Choose a tag to compare

0.10.2 - Only use unsigned values for array access

08 Apr 20:18
c0724e5
Compare
Choose a tag to compare

0.10.1 - Updated URL in examples

28 Dec 19:41
1ea58a1
Compare
Choose a tag to compare

0.10.0 - Allow use of all write() variants, use setStringDescriptor() in example

16 Sep 20:11
a514551
Compare
Choose a tag to compare

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 */ ),
};