Skip to content

Commit 7be2c9a

Browse files
committedFeb 20, 2024·
fix debug eanble with host native
1 parent 1366ac5 commit 7be2c9a

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed
 

‎src/arduino/Adafruit_TinyUSB_API.cpp

+12-9
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,17 @@
2424

2525
#include "tusb_option.h"
2626

27-
#if CFG_TUD_ENABLED
27+
#if CFG_TUD_ENABLED || CFG_TUH_ENABLED
2828

2929
#include "Adafruit_TinyUSB.h"
3030
#include "Arduino.h"
3131

32-
//--------------------------------------------------------------------+
33-
// MACRO TYPEDEF CONSTANT ENUM DECLARATION
34-
//--------------------------------------------------------------------+
3532
extern "C" {
3633

34+
//--------------------------------------------------------------------+
35+
// Device
36+
//--------------------------------------------------------------------+
37+
#if CFG_TUD_ENABLED
3738
void TinyUSB_Device_Init(uint8_t rhport) {
3839
// Init USB Device controller and stack
3940
TinyUSBDevice.begin(rhport);
@@ -54,9 +55,12 @@ void TinyUSB_Device_FlushCDC(void) {
5455
tud_cdc_n_write_flush(instance);
5556
}
5657
}
58+
#endif
59+
#endif // CFG_TUD_ENABLED
5760

58-
// Debug log with Serial1
59-
#if CFG_TUSB_DEBUG && defined(CFG_TUSB_DEBUG_PRINTF)
61+
//------------- Debug log with Serial1 -------------//
62+
#if CFG_TUSB_DEBUG && defined(CFG_TUSB_DEBUG_PRINTF) && \
63+
!defined(ARDUINO_ARCH_ESP32)
6064

6165
// #define USE_SEGGER_RTT
6266
#define SERIAL_TUSB_DEBUG Serial1
@@ -90,7 +94,6 @@ __attribute__((used)) int CFG_TUSB_DEBUG_PRINTF(const char *__restrict format,
9094
}
9195
#endif // CFG_TUSB_DEBUG
9296

93-
#endif // ARDUINO_ARCH_ESP32
94-
9597
} // extern C
96-
#endif
98+
99+
#endif // CFG_TUD_ENABLED || CFG_TUH_ENABLED

0 commit comments

Comments
 (0)
Please sign in to comment.