Пример #1
0
 /// <summary>
 ///     3.3.4 Clock Data Bits Out on -ve clock edge MSB first (no read)
 ///     Use if CLK starts at '0'
 ///     0x13,
 ///     Length,
 ///     Byte1
 ///     This will clock out bits on TDI/DO from 1 to 8 depending on the Length byte. A
 ///     length of 0x00 will do 1 bit and a length of 0x07 will do 8 bits. The data is sent
 ///     MSB first. Bit 7 of the data 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 on TDO/DI.
 /// </summary>
 /// <param name="data"></param>
 /// <param name="len"></param>
 public void BitsOutOnMinusEdgeWithMsbFirst(byte data, byte len)
 {
     write(MpsseCommand.BitsOutOnMinusEdgeWithMsbFirst(data, len));
 }