Ejemplo n.º 1
0
 /// <summary>
 /// 3.6.2 Set Data bits High Byte
 /// 0x82,
 /// 0xValue,
 /// 0xDirection
 /// This will setup the direction of the high 8 lines and force a value on the bits
 /// that are set as output. A 1 in the Direction byte will make that bit an output.
 /// </summary>
 /// <param name="value"></param>
 /// <param name="direction"></param>
 public void SetDataBitsHighByte(FtdiPin value, FtdiPin direction)
 {
     write(MpsseCommand.SetDataBitsHighByte(value, direction));
 }