Exemple #1
0
 /// <summary>
 ///     3.4.1 Clock Data Bytes Out on +ve clock edge LSB first (no read)
 ///     Use if CLK starts at '1'
 ///     0x18,
 ///     LengthL,
 ///     LengthH,
 ///     Byte1
 ///     ..
 ///     Byte65536 (max)
 ///     This will clock out bytes on TDI/DO from 1 to 65536 depending on the Length bytes.
 ///     A length of 0x0000 will do 1 byte and a length of 0xffff will do 65536 bytes. The
 ///     data is sent LSB first. Bit 0 of the first byte is placed on TDI/DO then the CLK
 ///     pin is clocked. The data will change to the next bit on the rising edge of the CLK
 ///     pin. No data is clocked into the device on TDO/DI.
 /// </summary>
 /// <param name="data"></param>
 public void BytesOutOnPlusEdgeWithLsbFirst(byte[] data)
 {
     write(MpsseCommand.BytesOutOnPlusEdgeWithLsbFirst(data));
 }