Ejemplo n.º 1
0
 /// <summary>
 ///     7.1 Set I/O to only drive on a ‘0’ and tristate on a ‘1’
 ///     0x9E
 ///     LowByteEnablesForOnlyDrive0
 ///     HighByteEnablesForOnlyDrive0
 ///     This will make the I/Os only drive when the data is ‘0’ and tristate on the data
 ///     being ‘1’ when the appropriate bit is set. Use this op-code when configuring the
 ///     MPSSE for I2C use.
 /// </summary>
 /// <param name="low"></param>
 /// <param name="high"></param>
 public void SetIoToOnlyDriveOn0andTristateOn1(FtdiPin low, FtdiPin high)
 {
     write(MpsseCommand.SetIoToOnlyDriveOn0andTristateOn1(low, high));
 }