Experimental GPU overclock

This commit is contained in:
Serge
2023-05-06 14:40:52 +02:00
parent 8e1099545a
commit c61f4d1608
497 changed files with 46937 additions and 232 deletions

View File

@@ -0,0 +1,50 @@
using NvAPIWrapper.Native.GPU;
namespace NvAPIWrapper.Native.Interfaces.GPU
{
/// <summary>
/// Contains an I2C packet transmitted or to be transmitted
/// </summary>
public interface II2CInfo
{
/// <summary>
/// Gets the payload data
/// </summary>
byte[] Data { get; }
/// <summary>
/// Gets the device I2C slave address
/// </summary>
byte DeviceAddress { get; }
/// <summary>
/// Gets a boolean value indicating that this instance contents information about a read operation
/// </summary>
bool IsReadOperation { get; }
/// <summary>
/// Gets the target display output mask
/// </summary>
OutputId OutputMask { get; }
/// <summary>
/// Gets the port id on which device is connected
/// </summary>
byte? PortId { get; }
/// <summary>
/// Gets the target I2C register address
/// </summary>
byte[] RegisterAddress { get; }
/// <summary>
/// Gets the target speed of the transaction in kHz
/// </summary>
I2CSpeed Speed { get; }
/// <summary>
/// Gets a boolean value indicating that the DDC port should be used instead of the communication port
/// </summary>
bool UseDDCPort { get; }
}
}