| MATLAB® | ![]() |
You configure Tag to be a string value that uniquely identifies a serial port object.
Tag is particularly useful when constructing programs that would otherwise need to define the serial port object as a global variable, or pass the object as an argument between callback routines.
You can return the serial port object with the instrfind function by specifying the Tag property value.
Read only | Never |
Data type | String |
The default value is an empty string.
Suppose you create a serial port object associated with the serial port COM1.
s = serial('COM1');
fopen(s)You can assign s a unique label using Tag.
set(s,'Tag','MySerialObj')
You can access s in the MATLAB workspace or in an M-file using the instrfind function and the Tag property value.
s1 = instrfind('Tag','MySerialObj');![]() | StopBits | Terminator | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |