Communication Protocol Suite for FireMonkey
A robust set of communication components for Delphi and C++Builder,
featuring full support for the 3964 and 3964R serial communication protocols.
- Includes ComPort for FireMonkey communication components
- Compatible with Delphi/C++Builder versions XE2 - 13
- Full source code provided with registered version
- 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.