internal static extern FtdiStatus I2C_InitChannel(IntPtr handle, ref I2C.ChannelConfig config);
/// <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)); }