Pico W usb serial issue #1627
-
Working with Arduino and Earle's amazing library but have a very strange issue when connecting to the builtin USB serial port. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
It's very odd to come up right now, but there was just an addition to ignore the virtual DTR bit when writing to the USB serial port. I've never see anything that didn't set it properly from the PC, but evidently it's possible if you try hard enough. :) See the docs: https://github.com/earlephilhower/arduino-pico/blob/master/docs/serial.rst#rp2040-specific-serialusb-methods You'll need to use the |
Beta Was this translation helpful? Give feedback.
It's very odd to come up right now, but there was just an addition to ignore the virtual DTR bit when writing to the USB serial port. I've never see anything that didn't set it properly from the PC, but evidently it's possible if you try hard enough. :)
See the docs: https://github.com/earlephilhower/arduino-pico/blob/master/docs/serial.rst#rp2040-specific-serialusb-methods
You'll need to use the
git
head as this was literally added less than 24 hours ago, but by adding aSerial.ignoreFlowControl(true)
to the top of yoursetup()
it might just be all you need.