Using fprintf and instrument control toolbox with serial connection
3 次查看(过去 30 天)
显示 更早的评论
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: <16> D <High Byte> <Low Byte> [*The D denotes decimal value of the byte is being used)
From CM110/112: <Status Byte>
CM110/112 Action: If valid, move to position ( 256 * <High Byte> ) + <Low Byte> [units].
From CM110/112: <24> D
For example, the command to instruct the monochromator to GOTO the wavelength 250 nm could be sent as the three bytes <16> D <0> D <250> D (if the current units are in nm). Here, <16> D specifies the
0 个评论
采纳的回答
Walter Roberson
2013-9-30
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]) );
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Instrument Control Toolbox Supported Hardware 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!