-
Notifications
You must be signed in to change notification settings - Fork 1.3k
ESP32-S2 2nd USB-SERIAL or more interfaces than endpoinds with static descriptor #3849
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I'm not quite sure what you're looking for. We have been thinking about a secondary CDC serial connection over USB. So for instance on Linux, you'd have |
Yes I'd like to have this secondary CDC /dev/ttyACM1
and a possibility to bridge its traffic to external pins TX/RX
it would be practical to run usb-serial bridge in
"background" of esp32 so that more user code
can work too if technologically possible.
…On 12/19/20, Dan Halbert ***@***.***> wrote:
I'm not quite sure what you're looking for. We have been thinking about a
secondary CDC serial connection over USB (e.g. you'd have `/dev/tty/ACM0`
for the REPL connection, and then also a `/dev/ttyACM1`. But if you want
hardware UART, then you want to use `busio.UART`.
--
You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub:
#3849 (comment)
|
this may be a dup of |
I rewrote this as a more general issue in #3853 and will close this in favor of that issue. |
My basic wish is to have second USB-SERIAL device in
ESP32-S2 which will lead to hardware TX/RX lines.
I was thinking - if descriptor must be static, and list all supported
device for which same endpoints have to be shared, then
perhaps on the OS (at least linux) is possible to blacklist unneeded
drivers, so that actually endpoints will be used only by not blacklisted
drivers, and things may work. (at least in heory)
The text was updated successfully, but these errors were encountered: