Beispiel #1
0
 /// <summary>
 /// 6.6 Clock For n x 8 bits with no data transfer
 /// 0x8F
 /// LengthL,
 /// LengthH,
 /// This will pulse the clock for 8 to (8 x $10000) times given by length. A length of
 /// 0x0000 will do 8 clocks and a length of 0xFFFF will do 524288 clocks
 /// </summary>
 /// <param name="len"></param>
 public void ClockForNx8bitswithNoDataTransfer(uint len)
 {
     write(MpsseCommand.ClockForNx8bitswithNoDataTransfer(len));
 }