USB is a packet protocol: it buffers bytes, then sends a packet. This is causing me a problem because the software I am using (pymodbus) sees an incomplete Modbus Packet in a complete USB packet, and reports a short-packet error ("No Response received from the remote unit/Unable to decode response")
With some devices I can mitigate against this problem by adjusting the USB packet latency to minimum. Other devices/drivers/systems don't offer this adjustment.
Is there a setting in pymodbus (ModbusSerialClient) that allows me to tell it to relax RTU inter-character timeout (which is meaningless in this case), or otherwise allow for USB devices?