Search found 5 matches
- Thu Jan 09, 2025 10:49 am
- Forum: ESP32 Arduino
- Topic: Cannot get USB and MIDI Serial work at the same time
- Replies: 7
- Views: 2395
Re: Cannot get USB and MIDI Serial work at the same time
Thanks. Done it. espefuse.py --chip auto burn_efuse UART_PRINT_CONTROL 3 --port COM4 espefuse.py v4.8.dev5 Connecting... Detecting chip type... ESP32-S3 === Run "burn_efuse" command === The efuses to burn: from BLOCK0 - UART_PRINT_CONTROL Burning efuses: - 'UART_PRINT_CONTROL' (Set the default UART ...
- Sun Jan 05, 2025 8:23 pm
- Forum: ESP32 Arduino
- Topic: Cannot get USB and MIDI Serial work at the same time
- Replies: 7
- Views: 2395
Re: Cannot get USB and MIDI Serial work at the same time
What version of arduino-esp32 are you running? You are missing the option for USB mode. What you really want is to have HardwareSerial not attach anything to the USBSerial. If you look at the code , what you want is CDC boot turned off, and USB_MODE set to OTG (but not activated in code). These opt...
- Fri Dec 13, 2024 8:29 am
- Forum: ESP32 Arduino
- Topic: Cannot get USB and MIDI Serial work at the same time
- Replies: 7
- Views: 2395
Re: Cannot get USB and MIDI Serial work at the same time
I have arduino-ESP32 version 3.0.7 (looks like the most recent one). I am also posting the compilation output. Isn't the USBMode the 4th from the bottom on the image I've sent earlier? FQBN: esp32:esp32:esp32s3:USBMode=default Using board 'esp32s3' from platform in folder: C:\Users\Administrator\App...
- Thu Dec 12, 2024 10:45 am
- Forum: ESP32 Arduino
- Topic: Cannot get USB and MIDI Serial work at the same time
- Replies: 7
- Views: 2395
Re: Cannot get USB and MIDI Serial work at the same time
Thanks for the quick answer. I have to use these two, because all others are used for GPIOs. If it is not possible, I will need to make a PCB change :? . If I can solve it without hardware change, that would be perfect. I updated my code as you suggested, but still same behaviour. Works when plugged...
- Wed Dec 11, 2024 9:35 pm
- Forum: ESP32 Arduino
- Topic: Cannot get USB and MIDI Serial work at the same time
- Replies: 7
- Views: 2395
Cannot get USB and MIDI Serial work at the same time
Hello everyone, I have a working code that sends MIDI messages as a USB device to the computer. Now, I also want to send MIDI over the TX pin of the ESP32-S3 C1 Dev Board via a DIN connection. My code works, and I can read the messages through a serial-to-USB cable when I connect the ESP32-S3 C1 to ...