Skip to content

Commit d7a1f58

Browse files
committed
SPI: improve performance of CsHigh() and CsLow()
#10
1 parent 4cb31bc commit d7a1f58

File tree

1 file changed

+58
-1
lines changed

1 file changed

+58
-1
lines changed

src/FtdiSharp/Protocols/SPI.cs

+58-1
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,38 @@ private void FTDI_ConfigureMpsse(int slowDownFactor = 1)
8484
Thread.Sleep(50);
8585
}
8686

87+
public bool UseFastCsMethods { get; set; } = true;
88+
8789
/// <summary>
8890
/// CS pin is D3
8991
/// </summary>
9092
public void CsHigh()
93+
{
94+
if (UseFastCsMethods)
95+
{
96+
CsFast(high: true);
97+
}
98+
else
99+
{
100+
CsHighSlow();
101+
}
102+
}
103+
/// <summary>
104+
/// CS pin is D3
105+
/// </summary>
106+
public void CsLow()
107+
{
108+
if (UseFastCsMethods)
109+
{
110+
CsFast(high: false);
111+
}
112+
else
113+
{
114+
CsLowSlow();
115+
}
116+
}
117+
118+
private void CsHighSlow()
91119
{
92120
// bit3:CS, bit2:MISO, bit1:MOSI, bit0:SCK
93121
byte[] bytes = new byte[]
@@ -107,7 +135,7 @@ public void CsHigh()
107135
/// <summary>
108136
/// CS pin is D3
109137
/// </summary>
110-
public void CsLow()
138+
private void CsLowSlow()
111139
{
112140
// bit3:CS, bit2:MISO, bit1:MOSI, bit0:SCK
113141
byte[] bytes = new byte[]
@@ -124,6 +152,35 @@ public void CsLow()
124152
FtdiDevice.Write(bytes);
125153
}
126154

155+
private void CsFast(bool high)
156+
{
157+
// see discussion in https://github.com/swharden/FtdiSharp/issues/10
158+
159+
byte byte1 = 0x80; // GPIO command for ADBUS
160+
byte byte2 = high ? (byte)0b00001000 : (byte)0b00000000; // value
161+
byte byte3 = 0b00001011; // direction
162+
163+
byte[] bytes = new byte[]
164+
{
165+
byte1, byte2, byte3, // cycle 1
166+
byte1, byte2, byte3, // cycle 2
167+
byte1, byte2, byte3, // cycle 3
168+
byte1, byte2, byte3, // cycle 4
169+
byte1, byte2, byte3, // cycle 5
170+
};
171+
172+
if (!ClockIdlesLow)
173+
{
174+
bytes[1] |= 0b00000001;
175+
bytes[4] |= 0b00000001;
176+
bytes[7] |= 0b00000001;
177+
bytes[10] |= 0b00000001;
178+
bytes[13] |= 0b00000001;
179+
}
180+
181+
FtdiDevice.Write(bytes);
182+
}
183+
127184
/// <summary>
128185
/// Return a byte representing the voltage of the first 8 pins
129186
/// </summary>

0 commit comments

Comments
 (0)