
Communication Protocol Suite for FireMonkey



Delphi and C++Builder communication components. These components include implementations of the 3964 and 3964R protocols.
- compatible with Delphi/C++Builder versions XE2 to 12
- source code is included with the registered version
- allows royalty-free distribution in your applications
Order Communication Protocol Suite for FireMonkey license $160 USD (license for one developer)
Order Communication Protocol Suite for FireMonkey multi-license $480 USD (license for all developers in the company)
Order Communication Protocol Suite for FireMonkey year upgrades $80 USD (registered users only)
Order Communication Protocol Suite for FireMonkey 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 FComPort.DeviceName := '\\.\COM10'; // C++Builder FComPort->DeviceName = "\\\\.\\COM10";
How can I use a non-standard baud rate?
FComPort.BaudRate := brCustom; FComPort.CustomBaudRate := 460000;Make sure your hardware and drivers support the specified baud rate.