Beispiel #1
0
 /// <summary>
 ///     3.3.2 Clock Data Bytes Out on -ve clock edge MSB first (no read)
 ///     Use if CLK starts at '0'
 ///     0x11,
 ///     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 MSB first. Bit 7 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 falling edge of the
 ///     CLK pin. No data is clocked into the device TDO/DI.
 /// </summary>
 /// <param name="data"></param>
 public void BytesOutOnMinusEdgeWithMsbFirst(byte[] data)
 {
     write(MpsseCommand.BytesOutOnMinusEdgeWithMsbFirst(data));
 }