Communication Protocol Suite
A robust set of communication components for Delphi and C++Builder,
featuring full support for the 3964 and 3964R serial communication protocols.
- Includes ComPort communication components
- Compatible with Delphi/C++Builder versions 5 - 13, and Lazarus 4.2
- Full source code provided with registered version
- Royalty-free distribution in your applications
Order Communication Protocol Suite license $160 USD (license for one developer)
Order Communication Protocol Suite multi-license $480 USD (license for all developers in company)
Order Communication Protocol Suite year upgrades $80 USD (registered users only)
Order Communication Protocol Suite year upgrades multi-license $240 USD (registered multi-license users only)
FAQ
How can I access COM ports numbered 10 and above?
Windows requires the use of a special prefix to access COM ports with numbers 10 or higher:// Delphi ComPort.DeviceName := '\\.\COM10'; // C++Builder ComPort->DeviceName = "\\\\.\\COM10";
How can I use a non-standard baud rate?
ComPort.BaudRate := brCustom; ComPort.CustomBaudRate := 460000;Make sure your hardware and drivers support the specified baud rate.