[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/doc/lispref/processes.texi,v
From: |
Eli Zaretskii |
Subject: |
[Emacs-diffs] Changes to emacs/doc/lispref/processes.texi,v |
Date: |
Tue, 21 Oct 2008 14:41:12 +0000 |
CVSROOT: /cvsroot/emacs
Module name: emacs
Changes by: Eli Zaretskii <eliz> 08/10/21 14:41:12
Index: processes.texi
===================================================================
RCS file: /cvsroot/emacs/emacs/doc/lispref/processes.texi,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- processes.texi 20 Oct 2008 19:47:54 -0000 1.10
+++ processes.texi 21 Oct 2008 14:41:12 -0000 1.11
@@ -2370,77 +2370,82 @@
A serial connection is represented by a process object which can be
used similar to a subprocess or network process. You can send and
receive data and configure the serial port. A serial process object
-has no process ID, and you can't send signals to it.
+has no process ID, you can't send signals to it, and the status codes
+are different from other types of processes.
@code{delete-process} on the process object or @code{kill-buffer} on
the process buffer close the connection, but this does not affect the
device connected to the serial port.
The function @code{process-type} returns the symbol @code{serial}
-for a process object representing a serial port.
+for a process object representing a serial port connection.
Serial ports are available on GNU/Linux, Unix, and Windows systems.
address@hidden serial-term port speed
address@hidden Command serial-term port speed
Start a terminal-emulator for a serial port in a new buffer.
address@hidden is the path or name of the serial port. For example, this
-could be @file{/dev/ttyS0} on Unix. On Windows, this could be
address@hidden, or @file{\\.\COM10} (double the backslashes in strings).
address@hidden is the name of the serial port to which to connect. For
+example, this could be @file{/dev/ttyS0} on Unix. On Windows, this
+could be @file{COM1}, or @file{\\.\COM10} (double the backslashes in
+Lisp strings).
@var{speed} is the speed of the serial port in bits per second. 9600
-is a common value. The buffer is in Term mode; see @code{term-mode}
-for the commands to use in that buffer. You can change the speed and
-the configuration in the mode line menu. @end defun
+is a common value. The buffer is in Term mode; see @ref{Term Mode,,,
+emacs, The GNU Emacs Manual}, for the commands to use in that buffer.
+You can change the speed and the configuration in the mode line menu.
address@hidden deffn
@defun make-serial-process &rest args
address@hidden creates a process and a buffer. Arguments
-are specified as keyword/argument pairs. The following arguments are
-defined:
+This function creates a process and a buffer. Arguments are specified
+as keyword/argument pairs. Here's the list of the meaningful keywords:
@table @code
address@hidden :port port
address@hidden (mandatory) is the path or name of the serial port.
-For example, this could be @file{/dev/ttyS0} on Unix. On Windows,
-this could be @file{COM1}, or @file{\\.\COM10} for ports higher than
address@hidden (double the backslashes in strings).
-
address@hidden :speed speed
address@hidden (mandatory) is handled by @code{serial-process-configure},
-which is called by @code{make-serial-process}.
-
address@hidden :name name
address@hidden is the name of the process. If @var{name} is not given, the
-value of @var{port} is used.
-
address@hidden :buffer buffer
address@hidden is the buffer (or buffer-name) to associate with the
-process. Process output goes at the end of that buffer, unless you
-specify an output stream or filter function to handle the output. If
address@hidden is not given, the value of @var{name} is used.
address@hidden :port @address@hidden (mandatory)}
+This is the name of the serial port. On Unix and GNU systems, this is
+a file name such as @file{/dev/ttyS0}. On Windows, this could be
address@hidden, or @file{\\.\COM10} for ports higher than @file{COM9}
+(double the backslashes in Lisp strings).
+
address@hidden :speed @address@hidden (mandatory)}
+The speed of the serial port in bits per second. This function calls
address@hidden to handle the speed.
+
address@hidden :name @var{name}
+The name of the process. If @var{name} is not given, @var{port} will
+serve as the process name as well.
+
address@hidden :buffer @var{buffer}
+The buffer to associate with the process. The value could be either a
+buffer or a string that names a buffer. Process output goes at the
+end of that buffer, unless you specify an output stream or filter
+function to handle the output. If @var{buffer} is not given, the
+process buffer's name is taken from the value of the @code{:name}
+keyword.
address@hidden :coding coding
address@hidden :coding @var{coding}
If @var{coding} is a symbol, it specifies the coding system used for
both reading and writing for this process. If @var{coding} is a cons
@code{(decoding . encoding)}, @var{decoding} is used for reading, and
address@hidden is used for writing.
address@hidden is used for writing. If not specified, the default is
+to determine the coding systems from data itself.
address@hidden :noquery bool
-When exiting Emacs, query the user if @var{bool} is @code{nil} and the
-process is running. If @var{bool} is not given, query before exiting.
address@hidden :noquery @var{query-flag}
+Initialize the process query flag to @var{query-flag}. @xref{Query
+Before Exit}. The flags defaults to @code{nil} if unspecified.
address@hidden :stop bool
address@hidden :stop @var{bool}
Start process in the @code{stopped} state if @var{bool} is
address@hidden In the stopped state, a serial process does not
accept incoming data, but you can send outgoing data. The stopped
state is cleared by @code{continue-process} and set by
@code{stop-process}.
address@hidden :filter filter
address@hidden :filter @var{filter}
Install @var{filter} as the process filter.
address@hidden :sentinel sentinel
address@hidden :sentinel @var{sentinel}
Install @var{sentinel} as the process sentinel.
address@hidden :plist plist
address@hidden :plist @var{plist}
Install @var{plist} as the initial plist of the process.
@item :speed
@@ -2462,66 +2467,67 @@
(make-serial-process :port "COM1" :speed 115200 :stopbits 2)
-(make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity 'odd)
+(make-serial-process :port "\\\\.\\COM13" :speed 1200
+ :bytesize 7 :parity 'odd)
(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil)
@end example
@end defun
@defun serial-process-configure &rest args
address@hidden baud
address@hidden bytesize
address@hidden parity
address@hidden stopbits
address@hidden flowcontrol
-
-Configure a serial port. Arguments are specified as keyword/argument
-pairs. Attributes that are not given are re-initialized from the
-process's current configuration (available via the function
address@hidden) or set to reasonable default values. The
-following arguments are defined:
address@hidden baud, in serial connections
address@hidden bytesize, in serial connections
address@hidden parity, in serial connections
address@hidden stopbits, in serial connections
address@hidden flowcontrol, in serial connections
+
+This functions configures a serial port connection. Arguments are
+specified as keyword/argument pairs. Attributes that are not given
+are re-initialized from the process's current configuration (available
+via the function @code{process-contact}) or set to reasonable default
+values. The following arguments are defined:
@table @code
address@hidden :process process
address@hidden :name name
address@hidden :buffer buffer
address@hidden :port port
address@hidden :process @var{process}
address@hidden :name @var{name}
address@hidden :buffer @var{buffer}
address@hidden :port @var{port}
Any of these arguments can be given to identify the process that is to
be configured. If none of these arguments is given, the current
buffer's process is used.
@item :speed @var{speed}
address@hidden is the speed of the serial port in bits per second, also
-called baud rate. Any value can be given for @var{speed}, but most
-serial ports work only at a few defined values between 1200 and
-115200, with 9600 being the most common value. If @var{speed} is
address@hidden, the serial port is not configured any further, i.e., all
-other arguments are ignored. This may be useful for special serial
-ports such as Bluetooth-to-serial converters which can only be
-configured through AT commands. A value of @code{nil} for @var{speed}
-can be used only when passed through @code{make-serial-process} or
address@hidden
+The speed of the serial port in bits per second, also called @dfn{baud
+rate}. Any value can be given for @var{speed}, but most serial ports
+work only at a few defined values between 1200 and 115200, with 9600
+being the most common value. If @var{speed} is @code{nil}, the serial
+port is not configured any further, i.e., all other arguments are
+ignored. This may be useful for special serial ports such as
+Bluetooth-to-serial converters which can only be configured through AT
+commands sent through the connection. A value of @code{nil} for
address@hidden can be used only for connections already opened by
address@hidden or @code{serial-term}.
@item :bytesize @var{bytesize}
address@hidden is the number of bits per byte, which can be 7 or 8.
-If @var{bytesize} is not given or @code{nil}, a value of 8 is used.
+The number of bits per byte, which can be 7 or 8. If @var{bytesize}
+is not given or @code{nil}, it defaults to 8.
@item :parity @var{parity}
address@hidden can be @code{nil} (don't use parity), the symbol
+The value can be @code{nil} (don't use parity), the symbol
@code{odd} (use odd parity), or the symbol @code{even} (use even
-parity). If @var{parity} is not given, no parity is used.
+parity). If @var{parity} is not given, it defaults to no parity.
@item :stopbits @var{stopbits}
address@hidden is the number of stopbits used to terminate a byte
-transmission. @var{stopbits} can be 1 or 2. If @var{stopbits} is not
-given or @code{nil}, 1 stopbit is used.
+The number of stopbits used to terminate a transmission
+of each byte. @var{stopbits} can be 1 or 2. If @var{stopbits} is not
+given or @code{nil}, it defaults to 1.
@item :flowcontrol @var{flowcontrol}
address@hidden determines the type of flowcontrol to be used, which
-is either @code{nil} (don't use flowcontrol), the symbol @code{hw}
-(use RTS/CTS hardware flowcontrol), or the symbol @code{sw} (use
-XON/XOFF software flowcontrol). If @var{flowcontrol} is not given, no
-flowcontrol is used.
+The type of flow control to use for this connection, which is either
address@hidden (don't use flow control), the symbol @code{hw} (use RTS/CTS
+hardware flow control), or the symbol @code{sw} (use XON/XOFF software
+flow control). If @var{flowcontrol} is not given, it defaults to no
+flow control.
@end table
@code{serial-process-configure} is called by @code{make-serial-process} for the
- [Emacs-diffs] Changes to emacs/doc/lispref/processes.texi,v, Eli Zaretskii, 2008/10/14
- [Emacs-diffs] Changes to emacs/doc/lispref/processes.texi,v, Eli Zaretskii, 2008/10/14
- [Emacs-diffs] Changes to emacs/doc/lispref/processes.texi,v, Eli Zaretskii, 2008/10/19
- [Emacs-diffs] Changes to emacs/doc/lispref/processes.texi,v, Eli Zaretskii, 2008/10/20
- [Emacs-diffs] Changes to emacs/doc/lispref/processes.texi,v,
Eli Zaretskii <=
- [Emacs-diffs] Changes to emacs/doc/lispref/processes.texi,v, Eli Zaretskii, 2008/10/21
- [Emacs-diffs] Changes to emacs/doc/lispref/processes.texi,v, Chong Yidong, 2008/10/28