
Communication Protocol Suite



Delphi and C++Builder communication components. These components include implementations of the 3964 and 3964R protocols.
- compatible with Delphi/C++Builder versions 5 to 12 and Lazarus 3.8
- source code is included with the registered version
- allows 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.