
ComPort for FireMonkey


Delphi and C++Builder FireMonkey component for serial communication on Windows.
- Seamless communication with devices via serial ports
- Intuitive interface with advanced capabilities
- High-performance architecture using multithreading and overlapped I/O
- Compatible with Delphi/C++Builder XE2 - 13
- Registered version includes full source code
- Royalty-free distribution in your applications
ComPort for FireMonkey is part of Communication Protocol Suite for FireMonkey
Order ComPort for FireMonkey component $120 USD (license for one developer)
Order ComPort for FireMonkey multi-license $360 USD (license for all developers in company)
Order ComPort for FireMonkey year upgrades $60 USD (registered users only)
Order ComPort for FireMonkey year upgrades multi-license $180 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.