We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc358ea commit d3091dfCopy full SHA for d3091df
cores/arduino/main.cpp
@@ -26,7 +26,7 @@ void initVariant() { }
26
27
#ifdef USE_TINYUSB
28
// Called by main.cpp to initialize usb device typically with CDC device for Serial
29
-void Adafruit_TinyUSB_Device_init(uint8_t rhport) __attribute__((weak));
+void TinyUSB_Device_init(uint8_t rhport) __attribute__((weak));
30
#endif
31
32
// Initialize C library
@@ -46,7 +46,7 @@ int main( void )
46
delay(1);
47
48
#if defined(USE_TINYUSB)
49
- Adafruit_TinyUSB_Device_init(0);
+ TinyUSB_Device_init(0);
50
#elif defined(USBCON)
51
USBDevice.init();
52
USBDevice.attach();
0 commit comments