File tree Expand file tree Collapse file tree 2 files changed +21
-4
lines changed Expand file tree Collapse file tree 2 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Adafruit TinyUSB Arduino Library Changelog
2
2
3
+ ## 1.1.0 - 2021.06.21
4
+
5
+ - Add support for multiple CDC ports (need to modify tusb_config.h)
6
+ - fix #86 when calling midi API when device is not fully enumerated
7
+ - fix Serial connection issue with nrf52 on windows
8
+ - Update device driver of rp2040 to match tinyusb upstream
9
+ - Added feather rp2040 to ci build (skipped the external flash example for now due to SdFat compilation error)
10
+ - Add optional debug log for stack with Serial1 on samd core (will expand later to other core).
11
+ - lost more bug fixes to the stack
12
+
13
+ ## 1.0.3 - 2021.05.26
14
+
15
+ - Update tinyusb stack to latest
16
+ - Added HID Gamepad example with Dhat support
17
+ - Fix warnings with -Wall -Wextra
18
+ - Fix warnings with cast function type for nrf
19
+
3
20
## 1.0.1 - 2021.05.21
4
21
5
22
Warn user to select TinyUSB via menu on ports where it is optional e.g SAMD and RP2040
Original file line number Diff line number Diff line change @@ -241,11 +241,11 @@ void loop()
241
241
delay (2000 );
242
242
243
243
244
- // Test buttons
245
- for (int i=0 ; i<= 15 ; ++i)
244
+ // Test buttons (up to 32 buttons)
245
+ for (int i=0 ; i<32 ; ++i)
246
246
{
247
- Serial.print (" Pressing button " ); Serial.println (i+ 1 );
248
- gp.buttons = (0x00 | TU_BIT (i) );
247
+ Serial.print (" Pressing button " ); Serial.println (i);
248
+ gp.buttons = (1U << i );
249
249
usb_hid.sendReport (0 , &gp, sizeof (gp));
250
250
delay (1000 );
251
251
}
You can’t perform that action at this time.
0 commit comments