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
I have a device (USB device that behaves like a serial port) that results in ioctl error when setting a baud rate.
Error: Inappropriate ioctl for device setting custom baud rate of 9600.
(Happens with any baudrate).
If I disable the setBaudRate-fcuntion in the .c source, then the device works.
Could you please add a functionality that e.g. setting baudRate to "0", then
the baudRate is never set?
Thank you!
Thomas
The text was updated successfully, but these errors were encountered:
I have this issue too. I'm using a usb matricial printer Epson FX-890, the custom path for usb printers is /dev/usb/lpx, where x is a number. After searching a lot, found some informations:
/dev/usb/lpx - printing to USB printer, where x is the printer number. /dev/usb/lp0 usually
/dev/ttyUSBx - printing to printer connected using USB2Serial adapter
/dev/ttySx - printing to direct RS232 attached printer
USB printers protocol is diferent from the others and does not accept baud rate configurations like the others. If you try to change the baud rate directly with this command will get the same error:
Hi,
I have a device (USB device that behaves like a serial port) that results in ioctl error when setting a baud rate.
Error: Inappropriate ioctl for device setting custom baud rate of 9600.
(Happens with any baudrate).
If I disable the setBaudRate-fcuntion in the .c source, then the device works.
Could you please add a functionality that e.g. setting baudRate to "0", then
the baudRate is never set?
Thank you!
Thomas
The text was updated successfully, but these errors were encountered: