Skip to content

Commit

Permalink
Merge pull request #104 from adafruit/disable-debug-samd
Browse files Browse the repository at this point in the history
revert CFG_TUSB_DEBUG on samd port
  • Loading branch information
hathach authored Jul 7, 2021
2 parents a59b5e6 + ee0959e commit 26a623f
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Adafruit TinyUSB Arduino Library Changelog

## 1.3.2 - 2021.07.07

- revert CFG_TUSB_DEBUG = 0 on SAMD port

## 1.3.1 - 2021.07.06

- Fix warning with ci build for rp2040 core
- Fix example build for esp32s2
- Use ARDUINO_NRF52_ADAFRUIT instead of ARDUINO_ARCH_NRF52

## 1.3.0 - 2021.06.29

- Move tusb_config for each ports into library to make it more portable
- Adding support for ESP32S2 (still need PR to be merged from esp32-arduino)
- Update CDC to have instance and getInstanceCount()
- Allow USB_VID/PID to be declared in variant pins_arduino.h
- Use bug report form template

## 1.1.0 - 2021.06.21

- Add support for multiple CDC ports (need to modify tusb_config.h)
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Adafruit TinyUSB Library
version=1.3.1
version=1.3.2
author=Adafruit
maintainer=Adafruit <[email protected]>
sentence=TinyUSB library for Arduino
Expand Down
2 changes: 1 addition & 1 deletion src/arduino/ports/samd/tusb_config_samd.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ extern "C" {

#define CFG_TUSB_OS OPT_OS_NONE

#define CFG_TUSB_DEBUG 2
#define CFG_TUSB_DEBUG 0
#if CFG_TUSB_DEBUG
#define CFG_TUSB_DEBUG_PRINTF serial1_printf
#endif
Expand Down

0 comments on commit 26a623f

Please sign in to comment.