/// <summary> /// 6.11 Clock For n x 8 bits with no data transfer or Until GPIOL1 is High /// 0x9C /// 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 or until /// GPIOL1 is high. /// </summary> /// <param name="len"></param> public void ClockForNx8BitsWithNoDataTransferOrUntilGPIOL1isHigh(uint len) { write(MpsseCommand.ClockForNx8BitsWithNoDataTransferOrUntilGPIOL1isHigh(len)); }