From fd507fc9638251b93013c80891f166326467b85f Mon Sep 17 00:00:00 2001 From: sg Date: Mon, 10 Jul 2000 07:00:20 +0000 Subject: [PATCH] * Added ID and Log tags --- rtl/linux/serial.pp | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/rtl/linux/serial.pp b/rtl/linux/serial.pp index 889e48813f..3cae1c282e 100644 --- a/rtl/linux/serial.pp +++ b/rtl/linux/serial.pp @@ -1,4 +1,6 @@ -{ Unit for handling the serial interfaces under Linux. +{ $Id$ + + Unit for handling the serial interfaces under Linux. (c) 2000 Sebastian Guenther, sg@freepascal.org } @@ -27,8 +29,8 @@ 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 + /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 Linux documentation. Returns "0" if device could not be found } function SerOpen(const DeviceName: String): TSerialHandle; @@ -204,3 +206,11 @@ end; end. + + +{ + $Log$ + Revision 1.2 2000-07-10 07:00:20 sg + * Added ID and Log tags + +}