Using fprintf and instrument control toolbox with serial connection

2 views (last 30 days)
Hi,
I'm trying to send commands to a monochromator (CM110/112) connected to a cpu (RS232). I've successfully connected to the instrument using serial() and also by using the instrument toolbox but I'm having trouble understanding how to send commands to it. The manual gives the following example:
<pre class="language-matlab">GOTO
This command moves the monochromator to a selected position.
To CM110/112: &lt;16> D &lt;High Byte> &lt;Low Byte> [*The D denotes decimal value of the byte is being used)
From CM110/112: &lt;Status Byte>
CM110/112 Action: If valid, move to position ( 256 * &lt;High Byte> ) + &lt;Low Byte> [units].
From CM110/112: &lt;24> D
For example, the command to instruct the monochromator to GOTO the wavelength 250 nm could be sent as the three bytes &lt;16> D &lt;0> D &lt;250> D (if the current units are in nm). Here, &lt;16> D specifies the

Accepted Answer

Walter Roberson
Walter Roberson on 30 Sep 2013
I would advise you not to attempt to use fprintf() for communicating with that device. fprintf() has the undocumented limitation that if it encounters a null byte (value 0) in the string, it will consider the string to have finished and will not send anything beyond that point. There are ways to get around that but they are a pain, and the alternative is not difficult.
The sample command shown could be coded as
fwrite( fid, uint8([16 0 250]) );

More Answers (0)

Categories

Find more on Instrument Control Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!