From 415c364db18b87f75cdac1a8044032a3ace1edb5 Mon Sep 17 00:00:00 2001 From: Michael Ossmann Date: Thu, 14 Feb 2013 17:43:28 -0700 Subject: [PATCH] attempted to implement waitTime() properly - not really sure --- firmware/common/xapp058/ports.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/firmware/common/xapp058/ports.c b/firmware/common/xapp058/ports.c index c054c74c..c605a5ec 100644 --- a/firmware/common/xapp058/ports.c +++ b/firmware/common/xapp058/ports.c @@ -132,7 +132,9 @@ void setPort(short p,short val) void pulseClock() { setPort(TCK,0); /* set the TCK port to low */ + delay(200); setPort(TCK,1); /* set the TCK port to high */ + delay(200); }