I tried adding setparameter to the usbserial demo
usb.SetParameters(19200,usb.DATABITS_8,usb.STOPBITS_1,usb.PARITY_NONE)
but it keeps on sending in 9600 ...
Maybe there's something wrong with my ftdi device.
When I run the program my permission is asked for the usb device ,I say yes but then
Msgbox(usb.DeviceInfo, "Device Information")
says : "No device found . Is an accessory connected ? "
But then later in the code:
Dim dev As Int
dev = usb.Open(19200)
If dev <> usb.USB_NONE Then
Log("Connected successfully!")
end if
Writes "Connected succesfully" to the log and I'm able to send at 9600 . I don't get it.
When I run the demo from the ftdi site my device is recognized as an ftdi device....