Use the unmodified library:
Dim r As Reflector
r.Target = UsbSerial1
Dim driver As JavaObject = r.GetField("driver")
driver.RunMethod("setRTS", Array(True))
No change in RTS status with
driver.RunMethod("setRTS", Array(True)) or
driver.RunMethod("setRTS", Array(False))
My doubt is that without implementing the function in the library, will this code have any effect ? It seems to be implemented in the Prolific driver, but not in ftdi and Silicon labs, CP2102 which I use for testing.
Sunish