Esempio n. 1
0
 /// <summary>
 ///     3.5.1 Clock Data to TMS pin (no read)
 ///     0x4B
 ///     Length,
 ///     Byte1
 ///     This will send data bits 6 down to 0 to the TMS pin using the LSB or MSB and -ve
 ///     or +ve clk , depending on which of the lower bits have been set.
 ///     0x4B : TMS with LSB first on -ve clk edge - use if clk is set to '0'
 ///     Bit 7 of the Byte1 is passed on to TDI/DO before the first clk of TMS and is held
 ///     static for the duration of TMS clocking. No read operation will take place.
 /// </summary>
 /// <param name="data"></param>
 /// <param name="len"></param>
 public void TmsOutOnMinusEdge(byte data, byte len)
 {
     write(MpsseCommand.TmsOutOnMinusEdge(data, len));
 }