We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e39ccb4 commit 46e07beCopy full SHA for 46e07be
System.Device.Spi/SpiConnectionSettings.cs
@@ -23,7 +23,8 @@ public sealed class SpiConnectionSettings
23
private SpiSharingMode _spiSharingMode;
24
private DataFlow _dataFlow = DataFlow.MsbFirst;
25
private int _busId;
26
- private int _chipSelectLineActiveState = PinValue.Low == true ? 0 : 1;
+ // Default is active low
27
+ private int _chipSelectLineActiveState = 0;
28
29
/// <summary>
30
/// Initializes new instance of SpiConnectionSettings.
0 commit comments