Posted: Fri Nov 01, 2019 7:53 am
				
				There is always the option of buying genuine FTDI cables, somewhat more expensive (15-20 US or so...) Available at all major component suppliers.
BTW, it says:
			It is unfortunately not so easy, there is a lot of fiddling with the RTS line and such. The source is located at Soureforge and can be downloaded using svn.jenom wrote:what are the serial protocol setting of JP1.x interfaces ? (baud rate, start bit, stop bit, parity, etc...
BTW, it says:
Code: Select all
	dcbSerialParams.BaudRate = 38400;
	dcbSerialParams.ByteSize = 8;
	dcbSerialParams.StopBits = TWOSTOPBITS;
	dcbSerialParams.Parity = NOPARITY;
	dcbSerialParams.fDtrControl = DTR_CONTROL_ENABLE;
	dcbSerialParams.fRtsControl = RTS_CONTROL_ENABLE;