|
@@ -1,4 +1,4 @@
|
|
|
-{ Unit for handling the serial interfaces under Linux.
|
|
|
+{ Unit for handling the serial interfaces for Linux and similar Unices.
|
|
|
(c) 2000 Sebastian Guenther, [email protected]
|
|
|
}
|
|
|
|
|
@@ -27,9 +27,9 @@ type
|
|
|
|
|
|
|
|
|
{ Open the serial device with the given device name, for example:
|
|
|
- ttyS0, ttyS1... for normal serial ports
|
|
|
- ttyI0, ttyI1... for ISDN emulated serial ports
|
|
|
- other device names are possible; refer to your Linux documentation.
|
|
|
+ /dev/ttyS0, /dev/ttyS1... for normal serial ports
|
|
|
+ /dev/ttyI0, /dev/ttyI1... for ISDN emulated serial ports
|
|
|
+ other device names are possible; refer to your OS documentation.
|
|
|
Returns "0" if device could not be found }
|
|
|
function SerOpen(const DeviceName: String): TSerialHandle;
|
|
|
|
|
@@ -204,8 +204,14 @@ end;
|
|
|
|
|
|
|
|
|
end.
|
|
|
+
|
|
|
+{
|
|
|
$Log$
|
|
|
- Revision 1.2 2000-09-18 13:14:51 marco
|
|
|
+ Revision 1.3 2000-10-10 14:12:36 sg
|
|
|
+ * Some cosmetic improvements (no changes in interface, only within the
|
|
|
+ source itself (comments etc.)
|
|
|
+
|
|
|
+ Revision 1.2 2000/09/18 13:14:51 marco
|
|
|
* Global Linux +bsd to (rtl/freebsd rtl/unix rtl/linux structure)
|
|
|
|
|
|
Revision 1.2 2000/07/13 11:33:49 michael
|