Skip to content

Commit 1670a01

Browse files
authored
Adding I2C Fast Mode Plus (#52)
1 parent d6c181e commit 1670a01

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

System.Device.I2c/I2cBusSpeed.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ public enum I2cBusSpeed
1919
/// <summary>
2020
/// A fast speed of 400 kHz.
2121
/// </summary>
22-
FastMode
22+
FastMode,
23+
24+
/// <summary>
25+
/// A super fast speed of 1 MHz.
26+
/// </summary>
27+
FastModePlus
2328
}
2429
}

System.Device.I2c/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
////////////////////////////////////////////////////////////////
1919
// update this whenever the native assembly signature changes //
20-
[assembly: AssemblyNativeVersion("100.0.0.1")]
20+
[assembly: AssemblyNativeVersion("100.0.0.2")]
2121
////////////////////////////////////////////////////////////////
2222

2323
// Setting ComVisible to false makes the types in this assembly not visible

0 commit comments

Comments
 (0)