External Interfaces Reference Previous page   Next Page
serial

Create a serial port object

Syntax

Arguments

'port'
The serial port name.
'PropertyName'
A serial port property name.
PropertyValue
A property value supported by PropertyName.
obj
The serial port object.

Description

obj = serial('port') creates a serial port object associated with the serial port specified by port. If port does not exist, or if it is in use, you will not be able to connect the serial port object to the device.

obj = serial('port','PropertyName',PropertyValue,...) creates a serial port object with the specified property names and property values. If an invalid property name or property value is specified, an error is returned and the serial port object is not created.

Remarks

When you create a serial port object, these property values are automatically configured:

You can specify the property names and property values using any format supported by the set function. For example, you can use property name/property value cell array pairs. Additionally, you can specify property names without regard to case, and you can make use of property name completion. For example, the following commands are all valid.

Refer to Configuring Property Values for a list of serial port object properties that you can use with serial.

Before you can communicate with the device, it must be connected to obj with the fopen function. A connected serial port object has a Status property value of open. An error is returned if you attempt a read or write operation while the object is not connected to the device. You can connect only one serial port object to a given serial port.

Example

This example creates the serial port object s1 associated with the serial port COM1.

The Type, Name, and Port properties are automatically configured.

To specify properties during object creation

See Also

Functions

fclose, fopen

Properties

Name, Port, Status, Type


Previous page  save (serial) serialbreak Next page

© 1994-2005 The MathWorks, Inc.