From be1121483494dbce561dfb31fc366ca6cc0fbc4e Mon Sep 17 00:00:00 2001 From: gstellenberg Date: Fri, 30 Apr 2010 20:42:06 -0500 Subject: [PATCH] Removed extra param in call to PRDriverAuxPrepareOutput --- examples/pinproctest/pinproctest.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/examples/pinproctest/pinproctest.cpp b/examples/pinproctest/pinproctest.cpp index 600889f..cb94865 100644 --- a/examples/pinproctest/pinproctest.cpp +++ b/examples/pinproctest/pinproctest.cpp @@ -226,7 +226,6 @@ int main(int argc, const char **argv) //Pulsed Patter for coil 48: on 5ms, off 10ms, repeat for 45ms. //PRDriverPulsedPatter(proc, 48, 5, 10, 45); // Coil 48: on 5ms, off 10ms, repeat for 45ms. - /* PRDriverAuxCommand auxCommands[256]; @@ -234,7 +233,7 @@ int main(int argc, const char **argv) PRDriverAuxPrepareDisable(&auxCommands[0]); // Set up a sequence of outputs. for (i=0; i<16; i++) { - PRDriverAuxPrepareOutput(&(auxCommands[i+1]), i, 0, false, 8, false); + PRDriverAuxPrepareOutput(&(auxCommands[i+1]), i, 0, 8, false); } // Disable the last command so the sequence stops. // PRDriverAuxPrepareDisable(&auxCommands[17]); @@ -248,9 +247,9 @@ int main(int argc, const char **argv) // Jump from addr 0 to 1 to begin. PRDriverAuxPrepareJump(&auxCommands[0],1); PRDriverAuxSendCommands(proc, auxCommands, 1, 0); - - PRFlushWriteData(proc); */ + PRFlushWriteData(proc); + printf("Running. Hit Ctrl-C to exit.\n");