Skip to content

Commit 26a623f

Browse files
authored
Merge pull request #104 from adafruit/disable-debug-samd
revert CFG_TUSB_DEBUG on samd port
2 parents a59b5e6 + ee0959e commit 26a623f

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

changelog.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Adafruit TinyUSB Arduino Library Changelog
22

3+
## 1.3.2 - 2021.07.07
4+
5+
- revert CFG_TUSB_DEBUG = 0 on SAMD port
6+
7+
## 1.3.1 - 2021.07.06
8+
9+
- Fix warning with ci build for rp2040 core
10+
- Fix example build for esp32s2
11+
- Use ARDUINO_NRF52_ADAFRUIT instead of ARDUINO_ARCH_NRF52
12+
13+
## 1.3.0 - 2021.06.29
14+
15+
- Move tusb_config for each ports into library to make it more portable
16+
- Adding support for ESP32S2 (still need PR to be merged from esp32-arduino)
17+
- Update CDC to have instance and getInstanceCount()
18+
- Allow USB_VID/PID to be declared in variant pins_arduino.h
19+
- Use bug report form template
20+
321
## 1.1.0 - 2021.06.21
422

523
- Add support for multiple CDC ports (need to modify tusb_config.h)

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Adafruit TinyUSB Library
2-
version=1.3.1
2+
version=1.3.2
33
author=Adafruit
44
maintainer=Adafruit <info@adafruit.com>
55
sentence=TinyUSB library for Arduino

src/arduino/ports/samd/tusb_config_samd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ extern "C" {
4646

4747
#define CFG_TUSB_OS OPT_OS_NONE
4848

49-
#define CFG_TUSB_DEBUG 2
49+
#define CFG_TUSB_DEBUG 0
5050
#if CFG_TUSB_DEBUG
5151
#define CFG_TUSB_DEBUG_PRINTF serial1_printf
5252
#endif

0 commit comments

Comments
 (0)