Beispiel #1
0
 /// <summary>
 /// 3.3.1 Clock Data Bytes Out on +ve clock edge MSB first (no read)
 /// Use if CLK starts at '1'
 /// 0x10,
 /// 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/D0 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 BytesOutOnPlusEdgeWithMsbFirst(byte[] data)
 {
     write(MpsseCommand.BytesOutOnPlusEdgeWithMsbFirst(data));
 }