Page 1 of 1

PCan-RS-R232 baud rate of 9600

Posted: Mon 20. Mar 2017, 15:03
by Passh2o
Checking to see before purchase if PCAN RS232 can operate at 9600 baud in the ser to can C program. Also any help setting up for 9600 baud configuration in C would be a big help.

Re: PCan-RS-R232 baud rate of 9600

Posted: Tue 21. Mar 2017, 11:48
by PEAK-Support
Yes - it is possible:

Code: Select all

// Baudrates
#define		SER_BAUD_115K2		115200
#define		SER_BAUD_57K6		57600
#define		SER_BAUD_38K4		38400
#define		SER_BAUD_19K2		19200
#define		SER_BAUD_9K6		9600
#define		SER_BAUD_4K8		4800
#define		SER_BAUD_2K4		2400
#define		SER_BAUD_1K2		1200