Language Reference
MDS | Specify binary data as one byte (B) or two bytes (W). Also specify number of |
| signicant gures. |
Item | Description |
|
|
0 { 16 | |
Preset State | MDS W |
Example Send trace data to computer as binary words (two
5 | CLEAR 723 | Initialize analyzer . |
7OUTPUT 723;"IP;"
10 | INTEGER Z(1:800) | Declare integer array . | |
20 | ASSIGN @Sa TO 723 | Assign fast I/O path to 723. | |
30 | ASSIGN @Sa_fast TO 723;FORMAT OFF |
| |
40 | OUTPUT | @Sa;"MDS W;" | Dene word as data size. |
50 | OUTPUT | @Sa;"TDF B;" | Activate binary data format. |
60 | OUTPUT | @Sa;"TRA?;" | Query amplitude of all trace elements |
|
|
| in measurement units . |
70 | ENTER @Sa_fast USING "#,W";Z(*) | Terminate queried data. \W" species | |
|
|
| that items stored in Z(*) are words (two |
|
|
| bytes). |
80 | PRINT Z(*) |
|