Skip to content

Commit 232be2f

Browse files
authored
Merge pull request #388 from adafruit/fix-esp32-v2-build
fix build with esp32 v2
2 parents e5ae023 + fc0ecdd commit 232be2f

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

src/arduino/Adafruit_USBD_Device.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
#define ADAFRUIT_USBD_DEVICE_H_
2727

2828
#include "Adafruit_USBD_Interface.h"
29-
#include "tusb.h"
29+
30+
#include "../tusb.h" // use relative path to prevent ESP32 out-of-sync issue
3031

3132
#ifdef ARDUINO_ARCH_ESP32
3233
#include "esp32-hal-tinyusb.h"

src/arduino/Adafruit_USBH_Host.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
* THE SOFTWARE.
2323
*/
2424

25-
// ESP32 out-of-sync
2625
#ifdef ARDUINO_ARCH_ESP32
2726
#include "arduino/ports/esp32/tusb_config_esp32.h"
2827
#include "driver/gpio.h"
@@ -182,6 +181,7 @@ TU_ATTR_WEAK void tuh_hid_report_received_cb(uint8_t dev_addr, uint8_t instance,
182181

183182
#if defined(ARDUINO_ARCH_ESP32)
184183

184+
// ESP32 out-of-sync
185185
#if ESP_ARDUINO_VERSION < ESP_ARDUINO_VERSION_VAL(2, 0, 14) && \
186186
!defined(PLATFORMIO)
187187
extern "C" void hcd_int_handler_esp32(uint8_t rhport, bool in_isr);

src/class/cdc/cdc_host.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,21 @@
3232
#include "arduino/ports/esp32/tusb_config_esp32.h"
3333

3434
#ifndef CFG_TUH_CDC_FTDI_VID_PID_LIST
35-
// List of product IDs that can use the FTDI CDC driver. 0x0403 is FTDI's VID
35+
// List of product IDs that can use the FTDI CDC driver. 0x0403 is FTDI's VID
3636
#define CFG_TUH_CDC_FTDI_VID_PID_LIST \
3737
{0x0403, 0x6001}, {0x0403, 0x6006}, {0x0403, 0x6010}, {0x0403, 0x6011}, \
3838
{0x0403, 0x6014}, {0x0403, 0x6015}, {0x0403, 0x8372}, {0x0403, 0xFBFA}, \
3939
{0x0403, 0xCD18}
4040
#endif
4141

4242
#ifndef CFG_TUH_CDC_CP210X_VID_PID_LIST
43-
// List of product IDs that can use the CP210X CDC driver. 0x10C4 is Silicon Labs' VID
43+
// List of product IDs that can use the CP210X CDC driver. 0x10C4 is Silicon Labs' VID
4444
#define CFG_TUH_CDC_CP210X_VID_PID_LIST \
4545
{0x10C4, 0xEA60}, {0x10C4, 0xEA70}
4646
#endif
4747

4848
#ifndef CFG_TUH_CDC_CH34X_VID_PID_LIST
49-
// List of product IDs that can use the CH34X CDC driver
49+
// List of product IDs that can use the CH34X CDC driver
5050
#define CFG_TUH_CDC_CH34X_VID_PID_LIST \
5151
{ 0x1a86, 0x5523 }, /* ch341 chip */ \
5252
{ 0x1a86, 0x7522 }, /* ch340k chip */ \

src/class/net/ncm_device.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@
2626
* This file is part of the TinyUSB stack.
2727
*/
2828

29-
#include "tusb_option.h"
30-
31-
#if ( CFG_TUD_ENABLED && CFG_TUD_NCM )
32-
3329
// ESP32 out-of-sync
3430
#ifdef ARDUINO_ARCH_ESP32
3531
#include "arduino/ports/esp32/tusb_config_esp32.h"
3632
#endif
3733

34+
#include "tusb_option.h"
35+
36+
#if ( CFG_TUD_ENABLED && CFG_TUD_NCM )
37+
3838
#include "device/usbd.h"
3939
#include "device/usbd_pvt.h"
4040
#include "net_device.h"

0 commit comments

Comments
 (0)