You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Both USB OTG and UART connected to macOS via separate USB cables.
Version
v3.0.4
IDE Name
Arduino IDE & PlatformIO
Operating System
macOS 15.1
Flash frequency
80Mhz
PSRAM enabled
no
Upload speed
460800
Description
USB OTG port does not appear on macOS, i have tried -DARDUINO_USB_MODE=1 -DARDUINO_USB_CDC_ON_BOOT=1 in PlatformIO and the bewlo in Arduino IDE. Yes, i have tried three different cables.
This is all i get, usbserial-110 is the UART i use for programming, no OTG port...
lsusb can also only see the UART, no OTG/CDC
Sketch
#include<Arduino.h>// MAX7219
#defineHARDWARE_TYPE MD_MAX72XX::GENERIC_HW
#defineMAX_DEVICES1
#defineCLK_PIN36// or SCK
#defineDATA_PIN35// or MOSI
#defineCS_PIN40// or SS
#include<MD_MAX72xx.h>
MD_MAX72XX mx = MD_MAX72XX(HARDWARE_TYPE, DATA_PIN, CLK_PIN, CS_PIN, MAX_DEVICES);
voidsetup() {
Serial.begin(115200);
if (!mx.begin())
Serial.println("MCP7219 Failed to Initialize!");
else
Serial.println("MCP7219 Initialized");
mx.clear();
}
voidloop() {
}
If you hold down the gpio0 (boot) button and then press the reset button, do you see the Espressif USB JTAG device in lsusb? You must manually put the device into download mode this way the first time you upload code. This will install a firmware that then understands how to provide usb-cdc.
Your menu there does not look like 3.0.4. Mine looks like this:
Board
esp32-s3-devkitc-1
Device Description
esp32-s3-devkitc-1
Hardware Configuration
Both USB OTG and UART connected to macOS via separate USB cables.
Version
v3.0.4
IDE Name
Arduino IDE & PlatformIO
Operating System
macOS 15.1
Flash frequency
80Mhz
PSRAM enabled
no
Upload speed
460800
Description
USB OTG port does not appear on macOS, i have tried -DARDUINO_USB_MODE=1 -DARDUINO_USB_CDC_ON_BOOT=1 in PlatformIO and the bewlo in Arduino IDE. Yes, i have tried three different cables.
This is all i get, usbserial-110 is the UART i use for programming, no OTG port...
lsusb can also only see the UART, no OTG/CDC
Sketch
Debug Message
dmesg
Other Steps to Reproduce
No response
I have checked existing issues, online documentation and the Troubleshooting Guide
The text was updated successfully, but these errors were encountered: