@@ -84,10 +84,38 @@ private void FTDI_ConfigureMpsse(int slowDownFactor = 1)
84
84
Thread . Sleep ( 50 ) ;
85
85
}
86
86
87
+ public bool UseFastCsMethods { get ; set ; } = true ;
88
+
87
89
/// <summary>
88
90
/// CS pin is D3
89
91
/// </summary>
90
92
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 ( )
91
119
{
92
120
// bit3:CS, bit2:MISO, bit1:MOSI, bit0:SCK
93
121
byte [ ] bytes = new byte [ ]
@@ -107,7 +135,7 @@ public void CsHigh()
107
135
/// <summary>
108
136
/// CS pin is D3
109
137
/// </summary>
110
- public void CsLow ( )
138
+ private void CsLowSlow ( )
111
139
{
112
140
// bit3:CS, bit2:MISO, bit1:MOSI, bit0:SCK
113
141
byte [ ] bytes = new byte [ ]
@@ -124,6 +152,35 @@ public void CsLow()
124
152
FtdiDevice . Write ( bytes ) ;
125
153
}
126
154
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
+
127
184
/// <summary>
128
185
/// Return a byte representing the voltage of the first 8 pins
129
186
/// </summary>
0 commit comments