EasyManua.ls Logo

Sutter Instrument MPC-200 - Page 48

Sutter Instrument MPC-200
73 pages
Print Icon
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
46
MPC-385 SERIES OPERATION MANUAL REV. 3.21K (20201120)
Speed
Setting
mm/sec
or
µm/ms
µm/sec
or
nm/ms
nm/sec
in/sec
or
mil/ms
% of
Max.
10
0.89375
893.75
893750
0.035187008
68.75%
9
0.81250
812.50
812500
0.031988189
62.50%
8
0.73125
731.25
731250
0.028789370
56.25%
7
0.65000
650.00
650000
0.025590551
50.00%
6
0.56875
568.75
568750
0.022391732
43.75%
5
0.48750
487.50
487500
0.019192913
37.50%
4
0.40625
406.25
406250
0.015994094
31.25%
3
0.32500
325.00
325000
0.012795276
25.00%
2
0.24375
243.75
243750
0.009596457
18.75%
1
0.16250
162.50
162500
0.006397638
12.50%
0
0.08125
81.25
81250
0.003198819
6.25%
13. Multi Axis Movement Speed Increase: Specified travel speeds are for single-axis
movements. When travel traverses a 45° diagonal within a dual-axis square, speed is
increased by 40% (x 1.4), and by 70% (x 1.7) within a triple-axis cube.
14. Move Interruption: A command should be sent to the controller only after the task of any
previous command is complete (i.e., the task-completion terminator (CR) is returned). One
exception is the “Interrupt Move” (^C) command, which can be issued while a command-
initiated move is still in progress.
15. Extracting the MPC-200 Firmware Version Number: The firmware version number
returned by the ‘K’ command is encoded in BCD (Binary Coded Decimal) in two bytes,
with minor version byte first, followed by major version byte, each of which contains two
digits , the first of which is in the upper nibble and the next in the lower nibble. For
example, if the complete version is 3.15, then the bytes at offsets 1 and 2 will show (in
hexadecimal) as 0x15 0x03 (ret[1] and ret[2] as shown in the following code snippets). The
following code shows how to extract and convert the 4 BCD digits into usable forms for
later comparison without altering the original command return data (written in C/C++
and is easily portable to Python, Java, C#, MATLAB script, etc.).
/*ret” is the array of bytes containing
the ‘K’ command’s return data */
/* define variables */
unsigned char verbyte; /* temp work byte */
int minver, majver, majminver;
float version;
Minor version number as an integer (e.g., 15):
verbyte = ret[1]; /* get minor ver. digits */
/* get 1’s digit & then get & add 10’s digit */
minver = (verbyte & 0x0F) +
((verbyte >>4 & 0x0F) * 10);
Major version number as an integer (e.g., 3):
verbyte = ret[2]; /* get major ver. digits */
majver = (verbyte & 0x0F) +
((verbyte >>4 & 0x0F) * 10);
Complete (thousands) version as an integer (e.g., 315):
majminver = majver * 100 + minver;
Complete version as a floating-point number (e.g., 3.15):
version = majminver * .01;

Table of Contents

Related product manuals