attempted to implement waitTime() properly - not really sure

This commit is contained in:
Michael Ossmann
2013-02-14 17:43:28 -07:00
parent 907325aa12
commit 415c364db1

View File

@ -132,7 +132,9 @@ void setPort(short p,short val)
void pulseClock() void pulseClock()
{ {
setPort(TCK,0); /* set the TCK port to low */ setPort(TCK,0); /* set the TCK port to low */
delay(200);
setPort(TCK,1); /* set the TCK port to high */ setPort(TCK,1); /* set the TCK port to high */
delay(200);
} }