/// <summary> /// 6.12 Clock For n x 8 bits with no data transfer or Until GPIOL1 is Low /// 0x9D /// 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 low. /// </summary> /// <param name="len"></param> public void ClockForNx8BitsWithNoDataTransferOrUntilGPIOL1isLow(uint len) { write(MpsseCommand.ClockForNx8BitsWithNoDataTransferOrUntilGPIOL1isLow(len)); }