4 packet = raw, Packet = raw – Teledyne LeCroy PETrainer Scripting Language Reference Manual User Manual
Page 34

Teledyne LeCroy
PETrainer Scripting Language
29
3.4 Packet = Raw
This command initiates transmission of raw data on the bus.
Parameter
Values
Default Comment
RawData
(X,X,X…)
Specifies the array of bytes or 10-bit
symbols to send.
Count
1: 65535
1
Repeats packet specified number of
times.
Note: This command is supported by the PETrainers ML and EML.
The elements of data can be specified in the following formats:
1) Symbols:
Packet = Raw
{
RawData = ( K28.5, D21.5, K28.5, D10.2 )
}
2) Bytes in hexadecimal format with preceding K/D modifier:
Packet = Raw
{
RawData = ( KBC, DB5, KBC, D4A )
}
3) In addition, to generate fully qualified 10 bit symbols, you can specify running disparity sign for each
symbol:
Packet = Raw
{
RawData = ( K28.5+, D21.5-, K28.5-, D10.2- )
}
4) Specify 10 bit symbols in binary, hex, or decimal format:
Packet = Raw
{
RawData = ( 0b0011111010, 0b1100111001, 0b0011111010, 0b1110000110 )
}