| Contents | Index |
You configure BytesAvailableFcn to execute a callback function when a bytes-available event occurs. A bytes-available event occurs when the number of bytes specified by the BytesAvailableFcnCount property is available in the input buffer, or after a terminator is read, as determined by the BytesAvailableFcnMode property.
If the RecordStatus property value is on, and a bytes-available event occurs, the record file records this information:
The event type as BytesAvailable
The time the event occurred using the format day-month-year hour:minute:second:millisecond
To learn how to create a callback function, refer to Creating and Executing Callback Functions.
Usage | Any instrument object |
Read only | Never |
Data type | Callback function |
The default value is an empty string.
Create the serial port object s on a Windows machine for a Tektronix TDS 210 two-channel oscilloscope connected to the serial port COM1.
s = serial('COM1');Configure s to execute the callback function instrcallback when 40 bytes are available in the input buffer.
s.BytesAvailableFcnCount = 40; s.BytesAvailableFcnMode = 'byte'; s.BytesAvailableFcn = @instrcallback;
Connect s to the oscilloscope.
fopen(s)
Write the *IDN? command, which instructs the scope to return identification information. Because the default value for the ReadAsyncMode property is continuous, data is read as soon as it is available from the instrument.
fprintf(s,'*IDN?')
The resulting output from instrcallback is shown below.
BytesAvailable event occurred at 18:33:35 for the object: Serial-COM1.
56 bytes are read and instrcallback is called once. The resulting display is shown above.
s.BytesAvailable
ans =
56Suppose you remove 25 bytes from the input buffer and issue the MEASUREMENT? command, which instructs the scope to return its measurement settings.
out = fscanf(s,'%c',25); fprintf(s,'MEASUREMENT?')
The resulting output from instrcallback is shown below.
BytesAvailable event occurred at 18:33:48 for the object: Serial-COM1. BytesAvailable event occurred at 18:33:48 for the object: Serial-COM1.
There are now 102 bytes in the input buffer, 31 of which are left over from the *IDN? command. instrcallback is called twice; once when 40 bytes are available and once when 80 bytes are available.
s.BytesAvailable
ans =
102BytesAvailableFcnCount, BytesAvailableFcnMode, EOSCharCode, RecordStatus, Terminator, TransferStatus

Includes the most popular MATLAB recorded presentations with Q&A sessions led by MATLAB experts.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |