From 28dd927214bcfbc83f58e81b2750b81b939d13a3 Mon Sep 17 00:00:00 2001 From: BadCD <57073119+BadCD@users.noreply.github.com> Date: Fri, 31 May 2024 10:57:21 +0200 Subject: [PATCH] Update cdc_multi.ino fixed a typo --- examples/CDC/cdc_multi/cdc_multi.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/CDC/cdc_multi/cdc_multi.ino b/examples/CDC/cdc_multi/cdc_multi.ino index 0723286f..32c84d72 100644 --- a/examples/CDC/cdc_multi/cdc_multi.ino +++ b/examples/CDC/cdc_multi/cdc_multi.ino @@ -29,7 +29,7 @@ // Create 2nd instance of CDC Ports. #ifdef ARDUINO_ARCH_ESP32 - #error "Currnetly multiple CDCs on ESP32-Sx is not yet supported. An PR to update core/esp32/USBCDC and/or pre-built libusb are needed." + #error "Currently multiple CDCs on ESP32-Sx is not yet supported. An PR to update core/esp32/USBCDC and/or pre-built libusb are needed." // for ESP32, we need to specify instance number when declaring object Adafruit_USBD_CDC USBSer1(1); #else