mcuee
mcuee
Refer here: https://github.com/pyserial/pyserial/issues/428 There will be no "COM4" under Android.
> > Refer here: #428 > > There will be no "COM4" under Android. > > Could there be a way to emulate with termuxusb or something similar? As far...
You should use things like this: your paticular board is already supported (Arduino Mega 2560). https://github.com/mik3y/usb-serial-for-android/blob/master/usbSerialForAndroid/src/main/java/com/hoho/android/usbserial/driver/CdcAcmSerialDriver.java
Or you can also try termux-usb and pyusb. Ref: termux does not support usb serial: https://github.com/termux/termux-packages/issues/4618 Termux and pyusb: https://github.com/pyusb/pyusb/issues/285
Sorry no idea. Hopefully others can help you with the integration part.
Just test your Arduino code with [SimpleUSBTerminal](https://play.google.com/store/apps/details?id=de.kai_morich.serial_usb_terminal) app from Google Play Store and it works fine. Ref: Library: https://github.com/mik3y/usb-serial-for-android App source code (simplified): https://github.com/kai-morich/SimpleUsbTerminal But no idea how you can...
Refer to #428 You can use python code from here. https://github.com/jacklinquan/usbserial4a/blob/master/example/usbserial4a_ui_example.py
Have you tested latest git to see if it performs the same as 1.0.24 release? BTW, I am not so sure about this has anything to do with #974 or...
@cnlohr BTW, would you help to post your test code and debug log (by setting LIBUS_DEBUG=4)? Thanks. That will help me to recreate the issue. It will also help others...
> If I extend the timeout to be indefinite, then I am unable to repro the problem. It seems the issue revolves around timing out and/or canceling transfers. Can you...