Exemplo n.º 1
0
 internal static extern FtdiStatus I2C_InitChannel(IntPtr handle, ref I2C.ChannelConfig config);
Exemplo n.º 2
0
 /// <summary>
 /// Initializes the channel with a provided configuration.
 /// </summary>
 /// <param name="config">The configuration for this channel.</param>
 /// <returns>The status after calling this method.</returns>
 public FtdiStatus Initialize(ref ChannelConfig config)
 {
     return(NativeMethods.I2C_InitChannel(handle, ref config));
 }